You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: apps/docs/document-api/reference/index.mdx
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -74,15 +74,15 @@ The tables below are grouped by namespace.
74
74
75
75
| Operation | API member path | Description |
76
76
| --- | --- | --- |
77
-
| <spanstyle={{ whiteSpace: 'nowrap', wordBreak: 'normal', overflowWrap: 'normal' }}><ahref="/document-api/reference/format/apply"><code>format.apply</code></a></span> | <spanstyle={{ whiteSpace: 'nowrap', wordBreak: 'normal', overflowWrap: 'normal' }}><code>editor.doc.format.apply(...)</code></span> | Apply explicit inline style changes (bold, italic, underline, strike) to the target range using boolean patch semantics. |
77
+
| <spanstyle={{ whiteSpace: 'nowrap', wordBreak: 'normal', overflowWrap: 'normal' }}><ahref="/document-api/reference/format/apply"><code>format.apply</code></a></span> | <spanstyle={{ whiteSpace: 'nowrap', wordBreak: 'normal', overflowWrap: 'normal' }}><code>editor.doc.format.apply(...)</code></span> | Apply explicit inline style changes (bold, italic, underline, strike) to the target range using directive semantics ('on', 'off', 'clear'). |
78
78
| <spanstyle={{ whiteSpace: 'nowrap', wordBreak: 'normal', overflowWrap: 'normal' }}><ahref="/document-api/reference/format/font-size"><code>format.fontSize</code></a></span> | <spanstyle={{ whiteSpace: 'nowrap', wordBreak: 'normal', overflowWrap: 'normal' }}><code>editor.doc.format.fontSize(...)</code></span> | Set or unset the font size on the target text range. Pass null to remove. |
79
79
| <spanstyle={{ whiteSpace: 'nowrap', wordBreak: 'normal', overflowWrap: 'normal' }}><ahref="/document-api/reference/format/font-family"><code>format.fontFamily</code></a></span> | <spanstyle={{ whiteSpace: 'nowrap', wordBreak: 'normal', overflowWrap: 'normal' }}><code>editor.doc.format.fontFamily(...)</code></span> | Set or unset the font family on the target text range. Pass null to remove. |
80
80
| <spanstyle={{ whiteSpace: 'nowrap', wordBreak: 'normal', overflowWrap: 'normal' }}><ahref="/document-api/reference/format/color"><code>format.color</code></a></span> | <spanstyle={{ whiteSpace: 'nowrap', wordBreak: 'normal', overflowWrap: 'normal' }}><code>editor.doc.format.color(...)</code></span> | Set or unset the text color on the target text range. Pass null to remove. |
81
81
| <spanstyle={{ whiteSpace: 'nowrap', wordBreak: 'normal', overflowWrap: 'normal' }}><ahref="/document-api/reference/format/align"><code>format.align</code></a></span> | <spanstyle={{ whiteSpace: 'nowrap', wordBreak: 'normal', overflowWrap: 'normal' }}><code>editor.doc.format.align(...)</code></span> | Set or unset paragraph alignment on the block containing the target. Pass null to reset to default. |
82
-
| <spanstyle={{ whiteSpace: 'nowrap', wordBreak: 'normal', overflowWrap: 'normal' }}><ahref="/document-api/reference/format/apply"><code>format.bold</code></a></span> | <spanstyle={{ whiteSpace: 'nowrap', wordBreak: 'normal', overflowWrap: 'normal' }}><code>editor.doc.format.bold(...)</code></span> | Convenience alias for `format.apply` with `inline.bold: true`. |
83
-
| <spanstyle={{ whiteSpace: 'nowrap', wordBreak: 'normal', overflowWrap: 'normal' }}><ahref="/document-api/reference/format/apply"><code>format.italic</code></a></span> | <spanstyle={{ whiteSpace: 'nowrap', wordBreak: 'normal', overflowWrap: 'normal' }}><code>editor.doc.format.italic(...)</code></span> | Convenience alias for `format.apply` with `inline.italic: true`. |
84
-
| <spanstyle={{ whiteSpace: 'nowrap', wordBreak: 'normal', overflowWrap: 'normal' }}><ahref="/document-api/reference/format/apply"><code>format.underline</code></a></span> | <spanstyle={{ whiteSpace: 'nowrap', wordBreak: 'normal', overflowWrap: 'normal' }}><code>editor.doc.format.underline(...)</code></span> | Convenience alias for `format.apply` with `inline.underline: true`. |
85
-
| <spanstyle={{ whiteSpace: 'nowrap', wordBreak: 'normal', overflowWrap: 'normal' }}><ahref="/document-api/reference/format/apply"><code>format.strikethrough</code></a></span> | <spanstyle={{ whiteSpace: 'nowrap', wordBreak: 'normal', overflowWrap: 'normal' }}><code>editor.doc.format.strikethrough(...)</code></span> | Convenience alias for `format.apply` with `inline.strike: true`. |
82
+
| <spanstyle={{ whiteSpace: 'nowrap', wordBreak: 'normal', overflowWrap: 'normal' }}><ahref="/document-api/reference/format/apply"><code>format.bold</code></a></span> | <spanstyle={{ whiteSpace: 'nowrap', wordBreak: 'normal', overflowWrap: 'normal' }}><code>editor.doc.format.bold(...)</code></span> | Convenience alias for `format.apply` with `inline.bold: 'on'`. |
83
+
| <spanstyle={{ whiteSpace: 'nowrap', wordBreak: 'normal', overflowWrap: 'normal' }}><ahref="/document-api/reference/format/apply"><code>format.italic</code></a></span> | <spanstyle={{ whiteSpace: 'nowrap', wordBreak: 'normal', overflowWrap: 'normal' }}><code>editor.doc.format.italic(...)</code></span> | Convenience alias for `format.apply` with `inline.italic: 'on'`. |
84
+
| <spanstyle={{ whiteSpace: 'nowrap', wordBreak: 'normal', overflowWrap: 'normal' }}><ahref="/document-api/reference/format/apply"><code>format.underline</code></a></span> | <spanstyle={{ whiteSpace: 'nowrap', wordBreak: 'normal', overflowWrap: 'normal' }}><code>editor.doc.format.underline(...)</code></span> | Convenience alias for `format.apply` with `inline.underline: 'on'`. |
85
+
| <spanstyle={{ whiteSpace: 'nowrap', wordBreak: 'normal', overflowWrap: 'normal' }}><ahref="/document-api/reference/format/apply"><code>format.strikethrough</code></a></span> | <spanstyle={{ whiteSpace: 'nowrap', wordBreak: 'normal', overflowWrap: 'normal' }}><code>editor.doc.format.strikethrough(...)</code></span> | Convenience alias for `format.apply` with `inline.strike: 'on'`. |
0 commit comments