diff --git a/docs/src/docPages/api/extensions/blockquote.md b/docs/src/docPages/api/extensions/blockquote.md new file mode 100644 index 00000000..f759b145 --- /dev/null +++ b/docs/src/docPages/api/extensions/blockquote.md @@ -0,0 +1,58 @@ +# Blockquote +Allows you to use the `
` HTML tag in the editor. + +#### Options +*None* + +#### Commands +| command | options | description | +| ------ | ---- | ---------------- | +| blockquote | none | Wrap content in a blockquote. | + +#### Keybindings +* `Control` + `→` + +#### Example +```markup + +++ + + +``` \ No newline at end of file diff --git a/docs/src/docPages/api/extensions/bold.md b/docs/src/docPages/api/extensions/bold.md new file mode 100644 index 00000000..c70f9ee4 --- /dev/null +++ b/docs/src/docPages/api/extensions/bold.md @@ -0,0 +1,66 @@ +# Bold +Renders text in **bold** text weight. If you pass ``, or `` tags, or text with inline `style` attributes setting the `font-weight` CSS rule in the editor's initial content, they will be rendered accordingly. + +::: warning Restrictions +The extension will generate the corresponding `` HTML tags when reading contents of the `Editor` instance. All text marked as bold, regardless of method will be normalized to `` HTML tags. +::: + +#### Options +*None* + +#### Commands +| command | options | description | +| ------ | ---- | ---------------- | +| bold | none | Mark text as bold. | + +#### Keybindings +* Windows & Linux: `Control` + `B` +* macOS: `Command` + `B` + +#### Example + +```markup + ++ + + ++ ++ + + +``` \ No newline at end of file diff --git a/docs/src/docPages/api/extensions/bulletlist.md b/docs/src/docPages/api/extensions/bulletlist.md new file mode 100644 index 00000000..e7223f44 --- /dev/null +++ b/docs/src/docPages/api/extensions/bulletlist.md @@ -0,0 +1,63 @@ +# BulletList +Allows you to use the `+ + + ++ ` HTML tag in the editor. + +::: warning Restrictions +This extensions is intended to be used with the `ListItem` extension. +::: + +#### Options +*None* + +#### Commands +| command | options | description | +| ------ | ---- | ---------------- | +| bullet_list | none | Toggle a bullet list. | + +#### Keybindings +* `Control` + `Shift` + `8` + +#### Example + +```markup + +
++ + + +``` \ No newline at end of file diff --git a/docs/src/docPages/api/extensions/code.md b/docs/src/docPages/api/extensions/code.md new file mode 100644 index 00000000..20f555df --- /dev/null +++ b/docs/src/docPages/api/extensions/code.md @@ -0,0 +1,55 @@ +# Code +Allows you to use the `+ + + ++ ` HTML tag in the editor. + +#### Options +*None* + +#### Commands +| command | options | description | +| ------ | ---- | ---------------- | +| code | none | Mark text as code. | + +#### Keybindings +* `Alt` + ` + +#### Example +```markup + +++ + + +``` \ No newline at end of file diff --git a/docs/src/docPages/api/extensions/codeblock.md b/docs/src/docPages/api/extensions/codeblock.md new file mode 100644 index 00000000..2f00e808 --- /dev/null +++ b/docs/src/docPages/api/extensions/codeblock.md @@ -0,0 +1,18 @@ +# CodeBlock +Allows you to use the `+ + + ++ ` HTML tag in the editor. + +## CodeBlockHighlight +Allows you to use the `` HTML tag with auto-detected syntax highlighting in the editor. + +## Collaboration +Allows you to collaborate with others on one document. + +## HardBreak +Allows you to use the `
` HTML tag in the editor. + +#### Options +*None* + +#### Keybindings +* New CodeBlock: `Shift` + `Enter` + ` +* Leave CodeBlock: `Command` + `Enter` diff --git a/docs/src/docPages/api/extensions/heading.md b/docs/src/docPages/api/extensions/heading.md new file mode 100644 index 00000000..e643bb08 --- /dev/null +++ b/docs/src/docPages/api/extensions/heading.md @@ -0,0 +1,71 @@ +# Heading +Allows you to use the headline HTML tags in the editor. + +#### Options +| option | type | default | description | +| ------ | ---- | ---- | ----- | +| levels | Array | [1, 2, 3, 4, 5, 6] | Specifies which headlines are to be supported. | + +#### Commands +| command | options | description | +| ------ | ---- | ---------------- | +| heading | level | Creates a heading node. | + +#### Keybindings +* `Control` + `Shift` + `1` → H1 +* `Control` + `Shift` + `2` → H2 +* `Control` + `Shift` + `3` → H3 +* `Control` + `Shift` + `4` → H4 +* `Control` + `Shift` + `5` → H5 +* `Control` + `Shift` + `6` → H6 + +#### Example +```markup + +++ + + +``` \ No newline at end of file diff --git a/docs/src/docPages/api/extensions/history.md b/docs/src/docPages/api/extensions/history.md new file mode 100644 index 00000000..58e3f866 --- /dev/null +++ b/docs/src/docPages/api/extensions/history.md @@ -0,0 +1,58 @@ +# History +Enables history support. + +#### Commands +| command | options | description | +| ------ | ---- | ---------------- | +| undo | none | Undo the latest change. | +| redo | none | Redo the latest change. | + +#### Keybindings +* Windows & Linux: `Control` + `Z` → Undo +* Windows & Linux: `Shift` + `Control` + `Z` → Redo +* macOS: `Command` + `Z` → Undo +* macOS: `Shift` + `Command` + `Z` → Redo + +#### Example +```markup + ++ + ++ + +++ ++ + + +``` \ No newline at end of file diff --git a/docs/src/docPages/api/extensions/horizontalrule.md b/docs/src/docPages/api/extensions/horizontalrule.md new file mode 100644 index 00000000..eb009086 --- /dev/null +++ b/docs/src/docPages/api/extensions/horizontalrule.md @@ -0,0 +1,57 @@ +# HorizontalRule +Allows you to use the `+ + ++ + +++
` HTML tag in the editor. + +#### Options +*None* + +#### Commands +| command | options | description | +| ------ | ---- | ---------------- | +| horizontal_rule | none | Create a horizontal rule. | + +#### Keybindings +*None* + +#### Example +```markup + +++ + + +``` \ No newline at end of file diff --git a/docs/src/docPages/api/extensions/italic.md b/docs/src/docPages/api/extensions/italic.md new file mode 100644 index 00000000..5265ef00 --- /dev/null +++ b/docs/src/docPages/api/extensions/italic.md @@ -0,0 +1,58 @@ +# Italic +Allows you to use the `` HTML tag in the editor. + +#### Options +*None* + +#### Commands +| command | options | description | +| ------ | ---- | ---------------- | +| italic | none | Mark text as italic. | + +#### Keybindings +* Windows & Linux: `Control` + `I` +* macOS: `Command` + `I` + +#### Example +```markup + ++ + + ++ ++ + + +``` \ No newline at end of file diff --git a/docs/src/docPages/api/extensions/link.md b/docs/src/docPages/api/extensions/link.md new file mode 100644 index 00000000..9f8e9bfc --- /dev/null +++ b/docs/src/docPages/api/extensions/link.md @@ -0,0 +1,7 @@ +# Link +Allows you to use the `` HTML tag in the editor. + +#### Options +| option | type | default | description | +| ------ | ---- | ---- | ----- | +| openOnClick | Boolean | true | Specifies if links will be opened on click. | \ No newline at end of file diff --git a/docs/src/docPages/api/extensions/listitem.md b/docs/src/docPages/api/extensions/listitem.md new file mode 100644 index 00000000..2535087d --- /dev/null +++ b/docs/src/docPages/api/extensions/listitem.md @@ -0,0 +1,6 @@ +# ListItem +Allows you to use the `+ + + ++ - ` HTML tag in the editor. + +::: warning Restrictions +This extensions is intended to be used with the `BulletList` or `OrderedList` extension. +::: \ No newline at end of file diff --git a/docs/src/docPages/api/extensions/mention.md b/docs/src/docPages/api/extensions/mention.md new file mode 100644 index 00000000..2a0c7935 --- /dev/null +++ b/docs/src/docPages/api/extensions/mention.md @@ -0,0 +1,2 @@ +## Mention +Allows you to use mentions in the editor. \ No newline at end of file diff --git a/docs/src/docPages/api/extensions/orderedlist.md b/docs/src/docPages/api/extensions/orderedlist.md new file mode 100644 index 00000000..a8fb9131 --- /dev/null +++ b/docs/src/docPages/api/extensions/orderedlist.md @@ -0,0 +1,65 @@ +# OrderedList +Allows you to use the `
` HTML tag in the editor. + +::: warning Restrictions +This extensions is intended to be used with the `ListItem` extension. +::: + +#### Options +*None* + +#### Commands +| command | options | description | +| ------ | ---- | ---------------- | +| ordered_list | none | Toggle an ordered list. | + +#### Keybindings +* `Control` + `Shift` + `9` + +#### Example +```markup + +
++ + + +``` \ No newline at end of file diff --git a/docs/src/docPages/api/extensions/placeholder.md b/docs/src/docPages/api/extensions/placeholder.md new file mode 100644 index 00000000..53a05b96 --- /dev/null +++ b/docs/src/docPages/api/extensions/placeholder.md @@ -0,0 +1,83 @@ +# Placeholder +Allows you to show placeholders on empty paragraphs. + +## Table +This enables support for tables in your editor. +Tables can be nested and allow all blocks to be used inside. +Each `+ + + ++ ` includes a single ` `. + +#### Options +| option | type | default | description | +| ------ | ---- | ---- | ----- | +| resizable | Boolean | false | Enables the resizing of columns | + +#### Keybindings +* `Tab` → Next Cell +* `Shift` + `Tab` + ` → Previous Cell + +#### Commands +| command | options | description | +| ------ | ---- | ---------------- | +| createTable | ```{ rowsCount, colsCount, withHeaderRow }``` | Returns a table node of a given size. `withHeaderRow` defines whether the first row of the table will be a header row. | +| deleteTable | none | Deletes the complete table which is active | +| addColumnBefore | none | Add a column before the selection. | +| addColumnAfter | none | Add a column after the selection. | +| deleteColumn | none | Removes the selected columns. | +| addRowBefore | none | Add a table row before the selection. | +| addRowAfter | none | Add a table row after the selection. | +| toggleCellMerge | none | See mergeCells and splitCells | +| mergeCells | none | Merge the selected cells into a single cell. Only available when the selected cells' outline forms a rectangle. | +| splitCell | none | Split a selected cell, whose rowspan or colspan is greater than one into smaller cells. | +| toggleHeaderColumn | none | Toggles whether the selected column contains header cells. | +| toggleHeaderRow | none | Toggles whether the selected row contains header cells. | +| toggleHeaderCell | none | Toggles whether the selected column contains header cells. | +| setCellAttr | none | Returns a command that sets the given attribute to the given value, and is only available when the currently selected cell doesn't already have that attribute set to that value. | +| fixTables | none | Inspect all tables in the given state's document and return a transaction that fixes them, if necessary. | + +#### Example +::: warning +You have to include all table extensions (`TableHeader`, `TableCell` & `TableRow`) +::: + +```markup + + ++ + + +``` \ No newline at end of file diff --git a/docs/src/docPages/api/extensions/strike.md b/docs/src/docPages/api/extensions/strike.md new file mode 100644 index 00000000..535d7fbd --- /dev/null +++ b/docs/src/docPages/api/extensions/strike.md @@ -0,0 +1,60 @@ +# Strike +Allows you to use the `+ + + ++ ` HTML tag in the editor. + +#### Options +*None* + +#### Commands +| command | options | description | +| ------ | ---- | ---------------- | +| strike | none | Mark text as strikethrough. | + +#### Keybindings +* Windows & Linux: `Control` + `D` +* macOS: `Command` + `D` + +#### Example + +```markup + +++ + + +``` \ No newline at end of file diff --git a/docs/src/docPages/api/extensions/tablecell.md b/docs/src/docPages/api/extensions/tablecell.md new file mode 100644 index 00000000..bb6fa262 --- /dev/null +++ b/docs/src/docPages/api/extensions/tablecell.md @@ -0,0 +1,6 @@ +# TableCell +Allows you to use the `+ + + ++ ` HTML tag in the editor. + +::: warning Restrictions +This extensions is intended to be used with the `Table` extension. +::: diff --git a/docs/src/docPages/api/extensions/tableheader.md b/docs/src/docPages/api/extensions/tableheader.md new file mode 100644 index 00000000..fed33494 --- /dev/null +++ b/docs/src/docPages/api/extensions/tableheader.md @@ -0,0 +1,6 @@ +# TableHeader +Allows you to use the ` ` HTML tag in the editor. + +::: warning Restrictions +This extensions is intended to be used with the `Table` extension. +::: \ No newline at end of file diff --git a/docs/src/docPages/api/extensions/tablerow.md b/docs/src/docPages/api/extensions/tablerow.md new file mode 100644 index 00000000..d40381f2 --- /dev/null +++ b/docs/src/docPages/api/extensions/tablerow.md @@ -0,0 +1,6 @@ +# TableRow +Allows you to use the ` ` HTML tag in the editor. + +::: warning Restrictions +This extensions is intended to be used with the `Table` extension. +::: \ No newline at end of file diff --git a/docs/src/docPages/api/extensions/todoitem.md b/docs/src/docPages/api/extensions/todoitem.md new file mode 100644 index 00000000..42fdb33f --- /dev/null +++ b/docs/src/docPages/api/extensions/todoitem.md @@ -0,0 +1,17 @@ +# TodoItem +It renders a single toggleable item of a list. + +::: warning Restrictions +This extensions is intended to be used with the `TodoList` extension. +::: + +#### Options +| option | type | default | description | +| ------ | ---- | ---- | ----- | +| nested | Boolean | false | Specifies if you can nest todo lists. | + +#### Commands +*None* + +#### Keybindings +*None* \ No newline at end of file diff --git a/docs/src/docPages/api/extensions/todolist.md b/docs/src/docPages/api/extensions/todolist.md new file mode 100644 index 00000000..dd7a57d1 --- /dev/null +++ b/docs/src/docPages/api/extensions/todolist.md @@ -0,0 +1,69 @@ +# TodoList +Renders a toggleable list of items. + +::: warning Restrictions +This extensions is intended to be used with the `TodoItem` extension. +::: + +#### Options +*None* + +#### Commands +| command | options | description | +| ------ | ---- | ---------------- | +| todo_list | none | Toggle todo list. | + +#### Keybindings +*None* + +#### Example +```markup + + ++ + + +``` \ No newline at end of file diff --git a/docs/src/docPages/api/extensions/underline.md b/docs/src/docPages/api/extensions/underline.md new file mode 100644 index 00000000..ebfeb336 --- /dev/null +++ b/docs/src/docPages/api/extensions/underline.md @@ -0,0 +1,58 @@ +# Underline +Allows you to use the `` HTML tag in the editor. + +#### Options +*None* + +#### Commands +| command | options | description | +| ------ | ---- | ---------------- | +| underline | none | Mark text as underlined. | + +#### Keybindings +* Windows & Linux: `Control` + `U` +* macOS: `Command` + `U` + +#### Example + +```markup + ++ + + ++ ++ + + +``` \ No newline at end of file diff --git a/docs/src/docPages/extensions.md b/docs/src/docPages/extensions.md index f830e254..af5d2a96 100644 --- a/docs/src/docPages/extensions.md +++ b/docs/src/docPages/extensions.md @@ -7,913 +7,4 @@ install `tiptap-extensions` package separately so that you can use basic Nodes, usually tied to a Command. The official set of commands are part of the [`tiptap-commands`][@npmjs-tiptap-commands] package. -## Blockquote -Allows you to use the `+ + + ++ ` HTML tag in the editor. - -#### Options -*None* - -#### Commands -| command | options | description | -| ------ | ---- | ---------------- | -| blockquote | none | Wrap content in a blockquote. | - -#### Keybindings -* `Control` + `→` - -#### Example -```markup - --- - - -``` - -## Bold -Renders text in **bold** text weight. If you pass ``, or `` tags, or text with inline `style` attributes setting the `font-weight` CSS rule in the editor's initial content, they will be rendered accordingly. - -::: warning Restrictions -The extension will generate the corresponding `` HTML tags when reading contents of the `Editor` instance. All text marked as bold, regardless of method will be normalized to `` HTML tags. -::: - -#### Options -*None* - -#### Commands -| command | options | description | -| ------ | ---- | ---------------- | -| bold | none | Mark text as bold. | - -#### Keybindings -* Windows & Linux: `Control` + `B` -* macOS: `Command` + `B` - -#### Example - -```markup - -- - - -- -- - - -``` - -## BulletList -Allows you to use the `- - - -- ` HTML tag in the editor. - -::: warning Restrictions -This extensions is intended to be used with the `ListItem` extension. -::: - -#### Options -*None* - -#### Commands -| command | options | description | -| ------ | ---- | ---------------- | -| bullet_list | none | Toggle a bullet list. | - -#### Keybindings -* `Control` + `Shift` + `8` - -#### Example - -```markup - -
-- - - -``` - -## Code -Allows you to use the `- - - -- ` HTML tag in the editor. - -#### Options -*None* - -#### Commands -| command | options | description | -| ------ | ---- | ---------------- | -| code | none | Mark text as code. | - -#### Keybindings -* `Alt` + ` - -#### Example -```markup - --- - - -``` - -## CodeBlock -Allows you to use the `- - - -- ` HTML tag in the editor. - -## CodeBlockHighlight -Allows you to use the `` HTML tag with auto-detected syntax highlighting in the editor. - -## Collaboration -Allows you to collaborate with others on one document. - -## HardBreak -Allows you to use the `
` HTML tag in the editor. - -#### Options -*None* - -#### Keybindings -* New CodeBlock: `Shift` + `Enter` + ` -* Leave CodeBlock: `Command` + `Enter` - -## Heading -Allows you to use the headline HTML tags in the editor. - -#### Options -| option | type | default | description | -| ------ | ---- | ---- | ----- | -| levels | Array | [1, 2, 3, 4, 5, 6] | Specifies which headlines are to be supported. | - -#### Commands -| command | options | description | -| ------ | ---- | ---------------- | -| heading | level | Creates a heading node. | - -#### Keybindings -* `Control` + `Shift` + `1` → H1 -* `Control` + `Shift` + `2` → H2 -* `Control` + `Shift` + `3` → H3 -* `Control` + `Shift` + `4` → H4 -* `Control` + `Shift` + `5` → H5 -* `Control` + `Shift` + `6` → H6 - -#### Example -```markup - --- - - -``` - -## History -Enables history support. - -#### Commands -| command | options | description | -| ------ | ---- | ---------------- | -| undo | none | Undo the latest change. | -| redo | none | Redo the latest change. | - -#### Keybindings -* Windows & Linux: `Control` + `Z` → Undo -* Windows & Linux: `Shift` + `Control` + `Z` → Redo -* macOS: `Command` + `Z` → Undo -* macOS: `Shift` + `Command` + `Z` → Redo - -#### Example -```markup - -- - -- - --- -- - - -``` - -## HorizontalRule -Allows you to use the `- - -- - ---
` HTML tag in the editor. - -#### Options -*None* - -#### Commands -| command | options | description | -| ------ | ---- | ---------------- | -| horizontal_rule | none | Create a horizontal rule. | - -#### Keybindings -*None* - -#### Example -```markup - --- - - -``` - -## Italic -Allows you to use the `` HTML tag in the editor. - -#### Options -*None* - -#### Commands -| command | options | description | -| ------ | ---- | ---------------- | -| italic | none | Mark text as italic. | - -#### Keybindings -* Windows & Linux: `Control` + `I` -* macOS: `Command` + `I` - -#### Example -```markup - -- - - -- -- - - -``` - -## Link -Allows you to use the `` HTML tag in the editor. -#### Options -| option | type | default | description | -| ------ | ---- | ---- | ----- | -| openOnClick | Boolean | true | Specifies if links will be opened on click. | - -## ListItem -Allows you to use the `- - - -- - ` HTML tag in the editor. - -::: warning Restrictions -This extensions is intended to be used with the `BulletList` or `OrderedList` extension. -::: - -## Mention -Allows you to use mentions in the editor. - -## OrderedList -Allows you to use the `
` HTML tag in the editor. - -::: warning Restrictions -This extensions is intended to be used with the `ListItem` extension. -::: - -#### Options -*None* - -#### Commands -| command | options | description | -| ------ | ---- | ---------------- | -| ordered_list | none | Toggle an ordered list. | - -#### Keybindings -* `Control` + `Shift` + `9` - -#### Example -```markup - -
-- - - -``` - -## Placeholder -Allows you to show placeholders on empty paragraphs. - -## Table -This enables support for tables in your editor. -Tables can be nested and allow all blocks to be used inside. -Each `- - - -- ` includes a single ` `. - -#### Options -| option | type | default | description | -| ------ | ---- | ---- | ----- | -| resizable | Boolean | false | Enables the resizing of columns | - -#### Keybindings -* `Tab` → Next Cell -* `Shift` + `Tab` + ` → Previous Cell - -#### Commands -| command | options | description | -| ------ | ---- | ---------------- | -| createTable | ```{ rowsCount, colsCount, withHeaderRow }``` | Returns a table node of a given size. `withHeaderRow` defines whether the first row of the table will be a header row. | -| deleteTable | none | Deletes the complete table which is active | -| addColumnBefore | none | Add a column before the selection. | -| addColumnAfter | none | Add a column after the selection. | -| deleteColumn | none | Removes the selected columns. | -| addRowBefore | none | Add a table row before the selection. | -| addRowAfter | none | Add a table row after the selection. | -| toggleCellMerge | none | See mergeCells and splitCells | -| mergeCells | none | Merge the selected cells into a single cell. Only available when the selected cells' outline forms a rectangle. | -| splitCell | none | Split a selected cell, whose rowspan or colspan is greater than one into smaller cells. | -| toggleHeaderColumn | none | Toggles whether the selected column contains header cells. | -| toggleHeaderRow | none | Toggles whether the selected row contains header cells. | -| toggleHeaderCell | none | Toggles whether the selected column contains header cells. | -| setCellAttr | none | Returns a command that sets the given attribute to the given value, and is only available when the currently selected cell doesn't already have that attribute set to that value. | -| fixTables | none | Inspect all tables in the given state's document and return a transaction that fixes them, if necessary. | - -#### Example -::: warning -You have to include all table extensions (`TableHeader`, `TableCell` & `TableRow`) -::: - -```markup - - -- - - -``` - -## TableHeader -Allows you to use the `- - - -- ` HTML tag in the editor. - -::: warning Restrictions -This extensions is intended to be used with the `Table` extension. -::: - -## TableCell -Allows you to use the ` ` HTML tag in the editor. - -::: warning Restrictions -This extensions is intended to be used with the `Table` extension. -::: - -## TableRow -Allows you to use the ` ` HTML tag in the editor. - -::: warning Restrictions -This extensions is intended to be used with the `Table` extension. -::: - -## TodoItem -It renders a single toggleable item of a list. - -::: warning Restrictions -This extensions is intended to be used with the `TodoList` extension. -::: - -#### Options -| option | type | default | description | -| ------ | ---- | ---- | ----- | -| nested | Boolean | false | Specifies if you can nest todo lists. | - -#### Commands -*None* - -#### Keybindings -*None* - -## TodoList -Renders a toggleable list of items. - -::: warning Restrictions -This extensions is intended to be used with the `TodoItem` extension. -::: - -#### Options -*None* - -#### Commands -| command | options | description | -| ------ | ---- | ---------------- | -| todo_list | none | Toggle todo list. | - -#### Keybindings -*None* - -#### Example -```markup - - -- - - -``` - -## Strike -Allows you to use the `- - - -- ` HTML tag in the editor. - -#### Options -*None* - -#### Commands -| command | options | description | -| ------ | ---- | ---------------- | -| strike | none | Mark text as strikethrough. | - -#### Keybindings -* Windows & Linux: `Control` + `D` -* macOS: `Command` + `D` - -#### Example - -```markup - --- - - -``` - -## Underline -Allows you to use the `` HTML tag in the editor. - -#### Options -*None* - -#### Commands -| command | options | description | -| ------ | ---- | ---------------- | -| underline | none | Mark text as underlined. | - -#### Keybindings -* Windows & Linux: `Control` + `U` -* macOS: `Command` + `U` - -#### Example - -```markup - -- - - -- -- - - -``` - [@npmjs-tiptap-commands]: https://npmjs.org/package/tiptap-commands diff --git a/docs/src/layouts/App/index.vue b/docs/src/layouts/App/index.vue index 6e6bc3f4..69077e3c 100644 --- a/docs/src/layouts/App/index.vue +++ b/docs/src/layouts/App/index.vue @@ -48,6 +48,14 @@- - - -- {{ item.title }} + ++
diff --git a/docs/src/links.yaml b/docs/src/links.yaml index 2596dbb9..ad82dddf 100644 --- a/docs/src/links.yaml +++ b/docs/src/links.yaml @@ -93,6 +93,49 @@ link: /editor/ - title: Extensions 🚧 link: /extensions/ + items: + - title: Blockquote + link: /api/extensions/blockquote + - title: Bold + link: /api/extensions/bold + - title: BulletList + link: /api/extensions/bulletlist + - title: Code + link: /api/extensions/code + - title: CodeBlock + link: /api/extensions/codeblock + - title: Heading + link: /api/extensions/heading + - title: History + link: /api/extensions/history + - title: HorizontalRule + link: /api/extensions/horizontalrule + - title: Italic + link: /api/extensions/italic + - title: Link + link: /api/extensions/link + - title: ListItem + link: /api/extensions/listitem + - title: Mention + link: /api/extensions/mention + - title: OrderedList + link: /api/extensions/orderedlist + - title: Placeholder + link: /api/extensions/placeholder + - title: Strike + link: /api/extensions/strike + - title: TableCell + link: /api/extensions/tablecell + - title: TableHeader + link: /api/extensions/tableheader + - title: TableRow + link: /api/extensions/tablerow + - title: TodoItem + link: /api/extensions/todoitem + - title: TodoList + link: /api/extensions/todolist + - title: Underline + link: /api/extensions/underline - title: Commands link: /commands/ - title: Events- +
++ ‒ {{ item.title }} + +