PluginProbe
Extendify / trunk
Extendify vtrunk
3.2.1 3.2.0 3.1.6 3.1.5 3.1.4 3.1.3 3.1.2 3.1.1 3.1.0 3.0.6 3.0.5 3.0.4 trunk 0.1.0 0.10.0 0.10.1 0.10.2 0.11.0 0.11.1 0.2.0 0.3.0 0.3.1 0.4.0 0.5.0 0.6.0 All 127 releases
← All changes | src/Agent/lib/block-schema.js +4 -0 3.2.0 → trunk View file →
@@ -156,8 +156,12 @@
156 156
157 157 const properties = prune({
158 158 ...simple,
159 159 align: attributes.align ? alignSchema(supports.align) : null,
160 + // Quote and pullquote align text with an attribute, not a typography support.
161 + textAlign: attributes.textAlign
162 + ? { type: 'string', enum: ['left', 'center', 'right'] }
163 + : null,
160 164 layout: attributes.layout ? layoutSchema(supports) : null,
161 165 // Model-facing name; block-patch maps it back to the real home.
162 166 text:
163 167 RICH_TEXT_ATTRIBUTES.some((name) => attributes[name]) ||