improve the extensions documentation
This commit is contained in:
@@ -1,18 +1,18 @@
|
|||||||
# Blockquote
|
# Blockquote
|
||||||
Allows you to use the `<blockquote>` HTML tag in the editor.
|
The Blockquote extension enables you to use the `<blockquote>` HTML tag in the editor.
|
||||||
|
|
||||||
#### Options
|
## Options
|
||||||
*None*
|
*None*
|
||||||
|
|
||||||
#### Commands
|
## Commands
|
||||||
| command | options | description |
|
| Command | Options | Description |
|
||||||
| ------ | ---- | ---------------- |
|
| ------ | ---- | ---------------- |
|
||||||
| blockquote | none | Wrap content in a blockquote. |
|
| blockquote | none | Wrap content in a blockquote. |
|
||||||
|
|
||||||
#### Keybindings
|
## Keybindings
|
||||||
* `Control` + `→`
|
* `Control` + `→`
|
||||||
|
|
||||||
#### Example
|
## Usage
|
||||||
```markup
|
```markup
|
||||||
<template>
|
<template>
|
||||||
<div>
|
<div>
|
||||||
|
|||||||
@@ -1,23 +1,23 @@
|
|||||||
# Bold
|
# Bold
|
||||||
Renders text in **bold** text weight. If you pass `<strong>`, or `<b>` tags, or text with inline `style` attributes setting the `font-weight` CSS rule in the editor's initial content, they will be rendered accordingly.
|
Renders text in **bold** text weight. If you pass `<strong>`, `<b>` tags, or text with inline `style` attributes setting the `font-weight` CSS rule in the editor’s initial content, they all will be rendered accordingly.
|
||||||
|
|
||||||
::: warning Restrictions
|
::: warning Restrictions
|
||||||
The extension will generate the corresponding `<strong>` HTML tags when reading contents of the `Editor` instance. All text marked as bold, regardless of method will be normalized to `<strong>` HTML tags.
|
The extension will generate the corresponding `<strong>` HTML tags when reading contents of the `Editor` instance. All text marked as bold, regardless of the method will be normalized to `<strong>` HTML tags.
|
||||||
:::
|
:::
|
||||||
|
|
||||||
#### Options
|
## Options
|
||||||
*None*
|
*None*
|
||||||
|
|
||||||
#### Commands
|
## Commands
|
||||||
| command | options | description |
|
| Command | Options | Description |
|
||||||
| ------ | ---- | ---------------- |
|
| ------ | ---- | ---------------- |
|
||||||
| bold | none | Mark text as bold. |
|
| bold | none | Mark text as bold. |
|
||||||
|
|
||||||
#### Keybindings
|
## Keybindings
|
||||||
* Windows & Linux: `Control` + `B`
|
* Windows & Linux: `Control` + `B`
|
||||||
* macOS: `Command` + `B`
|
* macOS: `Command` + `B`
|
||||||
|
|
||||||
#### Example
|
## Usage
|
||||||
|
|
||||||
```markup
|
```markup
|
||||||
<template>
|
<template>
|
||||||
|
|||||||
@@ -1,22 +1,22 @@
|
|||||||
# BulletList
|
# BulletList
|
||||||
Allows you to use the `<ul>` HTML tag in the editor.
|
This extension enables you to use the `<ul>` HTML tag in the editor.
|
||||||
|
|
||||||
::: warning Restrictions
|
::: warning Restrictions
|
||||||
This extensions is intended to be used with the `ListItem` extension.
|
It’s intended to be used with the `ListItem` extension.
|
||||||
:::
|
:::
|
||||||
|
|
||||||
#### Options
|
## Options
|
||||||
*None*
|
*None*
|
||||||
|
|
||||||
#### Commands
|
## Commands
|
||||||
| command | options | description |
|
| Command | Options | Description |
|
||||||
| ------ | ---- | ---------------- |
|
| ------ | ---- | ---------------- |
|
||||||
| bullet_list | none | Toggle a bullet list. |
|
| bullet_list | none | Toggle a bullet list. |
|
||||||
|
|
||||||
#### Keybindings
|
## Keybindings
|
||||||
* `Control` + `Shift` + `8`
|
* `Control` + `Shift` + `8`
|
||||||
|
|
||||||
#### Example
|
## Usage
|
||||||
|
|
||||||
```markup
|
```markup
|
||||||
<template>
|
<template>
|
||||||
|
|||||||
@@ -1,18 +1,18 @@
|
|||||||
# Code
|
# Code
|
||||||
Allows you to use the `<code>` HTML tag in the editor.
|
The Code extensions enables you to use the `<code>` HTML tag in the editor.
|
||||||
|
|
||||||
#### Options
|
## Options
|
||||||
*None*
|
*None*
|
||||||
|
|
||||||
#### Commands
|
## Commands
|
||||||
| command | options | description |
|
| Command | Options | Description |
|
||||||
| ------ | ---- | ---------------- |
|
| ------ | ---- | ---------------- |
|
||||||
| code | none | Mark text as code. |
|
| code | none | Mark text as code. |
|
||||||
|
|
||||||
#### Keybindings
|
## Keybindings
|
||||||
* `Alt` + `
|
* `Alt` + `
|
||||||
|
|
||||||
#### Example
|
## Usage
|
||||||
```markup
|
```markup
|
||||||
<template>
|
<template>
|
||||||
<div>
|
<div>
|
||||||
|
|||||||
@@ -1,18 +1,2 @@
|
|||||||
# CodeBlock
|
# CodeBlock
|
||||||
Allows you to use the `<pre>` HTML tag in the editor.
|
Enables you to use the `<pre>` HTML tag in the editor.
|
||||||
|
|
||||||
## CodeBlockHighlight
|
|
||||||
Allows you to use the `<pre>` 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 `<br>` HTML tag in the editor.
|
|
||||||
|
|
||||||
#### Options
|
|
||||||
*None*
|
|
||||||
|
|
||||||
#### Keybindings
|
|
||||||
* New CodeBlock: `Shift` + `Enter` + `
|
|
||||||
* Leave CodeBlock: `Command` + `Enter`
|
|
||||||
|
|||||||
2
docs/src/docPages/api/extensions/codeblockheighlight.md
Normal file
2
docs/src/docPages/api/extensions/codeblockheighlight.md
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
# CodeBlockHighlight
|
||||||
|
Enables you to use the `<pre>` HTML tag with auto-detected syntax highlighting in the editor.
|
||||||
2
docs/src/docPages/api/extensions/collaboration.md
Normal file
2
docs/src/docPages/api/extensions/collaboration.md
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
# Collaboration
|
||||||
|
Enables you to collaborate with others on one document.
|
||||||
9
docs/src/docPages/api/extensions/hardbreak.md
Normal file
9
docs/src/docPages/api/extensions/hardbreak.md
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
# HardBreak
|
||||||
|
Enables you to use the `<br>` HTML tag in the editor.
|
||||||
|
|
||||||
|
## Options
|
||||||
|
*None*
|
||||||
|
|
||||||
|
## Keybindings
|
||||||
|
* New CodeBlock: `Shift` + `Enter` + `
|
||||||
|
* Leave CodeBlock: `Command` + `Enter`
|
||||||
@@ -1,17 +1,17 @@
|
|||||||
# Heading
|
# Heading
|
||||||
Allows you to use the headline HTML tags in the editor.
|
Enables you to use the headline HTML tags in the editor.
|
||||||
|
|
||||||
#### Options
|
## Options
|
||||||
| option | type | default | description |
|
| option | type | default | description |
|
||||||
| ------ | ---- | ---- | ----- |
|
| ------ | ---- | ---- | ----- |
|
||||||
| levels | Array | [1, 2, 3, 4, 5, 6] | Specifies which headlines are to be supported. |
|
| levels | Array | [1, 2, 3, 4, 5, 6] | Specifies which headlines are to be supported. |
|
||||||
|
|
||||||
#### Commands
|
## Commands
|
||||||
| command | options | description |
|
| Command | Options | Description |
|
||||||
| ------ | ---- | ---------------- |
|
| ------ | ---- | ---------------- |
|
||||||
| heading | level | Creates a heading node. |
|
| heading | level | Creates a heading node. |
|
||||||
|
|
||||||
#### Keybindings
|
## Keybindings
|
||||||
* `Control` + `Shift` + `1` → H1
|
* `Control` + `Shift` + `1` → H1
|
||||||
* `Control` + `Shift` + `2` → H2
|
* `Control` + `Shift` + `2` → H2
|
||||||
* `Control` + `Shift` + `3` → H3
|
* `Control` + `Shift` + `3` → H3
|
||||||
@@ -19,7 +19,7 @@ Allows you to use the headline HTML tags in the editor.
|
|||||||
* `Control` + `Shift` + `5` → H5
|
* `Control` + `Shift` + `5` → H5
|
||||||
* `Control` + `Shift` + `6` → H6
|
* `Control` + `Shift` + `6` → H6
|
||||||
|
|
||||||
#### Example
|
## Usage
|
||||||
```markup
|
```markup
|
||||||
<template>
|
<template>
|
||||||
<div>
|
<div>
|
||||||
|
|||||||
@@ -1,19 +1,19 @@
|
|||||||
# History
|
# History
|
||||||
Enables history support.
|
Enables history support.
|
||||||
|
|
||||||
#### Commands
|
## Commands
|
||||||
| command | options | description |
|
| Command | Options | Description |
|
||||||
| ------ | ---- | ---------------- |
|
| ------ | ---- | ---------------- |
|
||||||
| undo | none | Undo the latest change. |
|
| undo | none | Undo the latest change. |
|
||||||
| redo | none | Redo the latest change. |
|
| redo | none | Redo the latest change. |
|
||||||
|
|
||||||
#### Keybindings
|
## Keybindings
|
||||||
* Windows & Linux: `Control` + `Z` → Undo
|
* Windows & Linux: `Control` + `Z` → Undo
|
||||||
* Windows & Linux: `Shift` + `Control` + `Z` → Redo
|
* Windows & Linux: `Shift` + `Control` + `Z` → Redo
|
||||||
* macOS: `Command` + `Z` → Undo
|
* macOS: `Command` + `Z` → Undo
|
||||||
* macOS: `Shift` + `Command` + `Z` → Redo
|
* macOS: `Shift` + `Command` + `Z` → Redo
|
||||||
|
|
||||||
#### Example
|
## Usage
|
||||||
```markup
|
```markup
|
||||||
<template>
|
<template>
|
||||||
<div>
|
<div>
|
||||||
|
|||||||
@@ -1,18 +1,18 @@
|
|||||||
# HorizontalRule
|
# HorizontalRule
|
||||||
Allows you to use the `<hr>` HTML tag in the editor.
|
Enables you to use the `<hr>` HTML tag in the editor.
|
||||||
|
|
||||||
#### Options
|
## Options
|
||||||
*None*
|
*None*
|
||||||
|
|
||||||
#### Commands
|
## Commands
|
||||||
| command | options | description |
|
| Command | Options | Description |
|
||||||
| ------ | ---- | ---------------- |
|
| ------ | ---- | ---------------- |
|
||||||
| horizontal_rule | none | Create a horizontal rule. |
|
| horizontal_rule | none | Create a horizontal rule. |
|
||||||
|
|
||||||
#### Keybindings
|
## Keybindings
|
||||||
*None*
|
*None*
|
||||||
|
|
||||||
#### Example
|
## Usage
|
||||||
```markup
|
```markup
|
||||||
<template>
|
<template>
|
||||||
<div>
|
<div>
|
||||||
|
|||||||
@@ -1,19 +1,19 @@
|
|||||||
# Italic
|
# Italic
|
||||||
Allows you to use the `<em>` HTML tag in the editor.
|
Enables you to use the `<em>` HTML tag in the editor.
|
||||||
|
|
||||||
#### Options
|
## Options
|
||||||
*None*
|
*None*
|
||||||
|
|
||||||
#### Commands
|
## Commands
|
||||||
| command | options | description |
|
| Command | Options | Description |
|
||||||
| ------ | ---- | ---------------- |
|
| ------ | ---- | ---------------- |
|
||||||
| italic | none | Mark text as italic. |
|
| italic | none | Mark text as italic. |
|
||||||
|
|
||||||
#### Keybindings
|
## Keybindings
|
||||||
* Windows & Linux: `Control` + `I`
|
* Windows & Linux: `Control` + `I`
|
||||||
* macOS: `Command` + `I`
|
* macOS: `Command` + `I`
|
||||||
|
|
||||||
#### Example
|
## Usage
|
||||||
```markup
|
```markup
|
||||||
<template>
|
<template>
|
||||||
<div>
|
<div>
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
# Link
|
# Link
|
||||||
Allows you to use the `<a>` HTML tag in the editor.
|
Enables you to use the `<a>` HTML tag in the editor.
|
||||||
|
|
||||||
#### Options
|
## Options
|
||||||
| option | type | default | description |
|
| option | type | default | description |
|
||||||
| ------ | ---- | ---- | ----- |
|
| ------ | ---- | ---- | ----- |
|
||||||
| openOnClick | Boolean | true | Specifies if links will be opened on click. |
|
| openOnClick | Boolean | true | Specifies if links will be opened on click. |
|
||||||
@@ -1,5 +1,5 @@
|
|||||||
# ListItem
|
# ListItem
|
||||||
Allows you to use the `<li>` HTML tag in the editor.
|
Enables you to use the `<li>` HTML tag in the editor.
|
||||||
|
|
||||||
::: warning Restrictions
|
::: warning Restrictions
|
||||||
This extensions is intended to be used with the `BulletList` or `OrderedList` extension.
|
This extensions is intended to be used with the `BulletList` or `OrderedList` extension.
|
||||||
|
|||||||
@@ -1,2 +1,2 @@
|
|||||||
## Mention
|
## Mention
|
||||||
Allows you to use mentions in the editor.
|
Enables you to use mentions in the editor.
|
||||||
@@ -1,22 +1,22 @@
|
|||||||
# OrderedList
|
# OrderedList
|
||||||
Allows you to use the `<ol>` HTML tag in the editor.
|
Enables you to use the `<ol>` HTML tag in the editor.
|
||||||
|
|
||||||
::: warning Restrictions
|
::: warning Restrictions
|
||||||
This extensions is intended to be used with the `ListItem` extension.
|
This extensions is intended to be used with the `ListItem` extension.
|
||||||
:::
|
:::
|
||||||
|
|
||||||
#### Options
|
## Options
|
||||||
*None*
|
*None*
|
||||||
|
|
||||||
#### Commands
|
## Commands
|
||||||
| command | options | description |
|
| Command | Options | Description |
|
||||||
| ------ | ---- | ---------------- |
|
| ------ | ---- | ---------------- |
|
||||||
| ordered_list | none | Toggle an ordered list. |
|
| ordered_list | none | Toggle an ordered list. |
|
||||||
|
|
||||||
#### Keybindings
|
## Keybindings
|
||||||
* `Control` + `Shift` + `9`
|
* `Control` + `Shift` + `9`
|
||||||
|
|
||||||
#### Example
|
## Usage
|
||||||
```markup
|
```markup
|
||||||
<template>
|
<template>
|
||||||
<div>
|
<div>
|
||||||
|
|||||||
@@ -1,22 +1,22 @@
|
|||||||
# Placeholder
|
# Placeholder
|
||||||
Allows you to show placeholders on empty paragraphs.
|
Enables you to show placeholders on empty paragraphs.
|
||||||
|
|
||||||
## Table
|
## Table
|
||||||
This enables support for tables in your editor.
|
This enables support for tables in your editor.
|
||||||
Tables can be nested and allow all blocks to be used inside.
|
Tables can be nested and allow all blocks to be used inside.
|
||||||
Each `<TableCell>` includes a single `<Paragraph>`.
|
Each `<TableCell>` includes a single `<Paragraph>`.
|
||||||
|
|
||||||
#### Options
|
## Options
|
||||||
| option | type | default | description |
|
| option | type | default | description |
|
||||||
| ------ | ---- | ---- | ----- |
|
| ------ | ---- | ---- | ----- |
|
||||||
| resizable | Boolean | false | Enables the resizing of columns |
|
| resizable | Boolean | false | Enables the resizing of columns |
|
||||||
|
|
||||||
#### Keybindings
|
## Keybindings
|
||||||
* `Tab` → Next Cell
|
* `Tab` → Next Cell
|
||||||
* `Shift` + `Tab` + ` → Previous Cell
|
* `Shift` + `Tab` + ` → Previous Cell
|
||||||
|
|
||||||
#### Commands
|
## Commands
|
||||||
| command | options | description |
|
| 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. |
|
| 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 |
|
| deleteTable | none | Deletes the complete table which is active |
|
||||||
@@ -34,7 +34,7 @@ Each `<TableCell>` includes a single `<Paragraph>`.
|
|||||||
| 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. |
|
| 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. |
|
| fixTables | none | Inspect all tables in the given state's document and return a transaction that fixes them, if necessary. |
|
||||||
|
|
||||||
#### Example
|
## Usage
|
||||||
::: warning
|
::: warning
|
||||||
You have to include all table extensions (`TableHeader`, `TableCell` & `TableRow`)
|
You have to include all table extensions (`TableHeader`, `TableCell` & `TableRow`)
|
||||||
:::
|
:::
|
||||||
|
|||||||
@@ -1,19 +1,19 @@
|
|||||||
# Strike
|
# Strike
|
||||||
Allows you to use the `<s>` HTML tag in the editor.
|
Enables you to use the `<s>` HTML tag in the editor.
|
||||||
|
|
||||||
#### Options
|
## Options
|
||||||
*None*
|
*None*
|
||||||
|
|
||||||
#### Commands
|
## Commands
|
||||||
| command | options | description |
|
| Command | Options | Description |
|
||||||
| ------ | ---- | ---------------- |
|
| ------ | ---- | ---------------- |
|
||||||
| strike | none | Mark text as strikethrough. |
|
| strike | none | Mark text as strikethrough. |
|
||||||
|
|
||||||
#### Keybindings
|
## Keybindings
|
||||||
* Windows & Linux: `Control` + `D`
|
* Windows & Linux: `Control` + `D`
|
||||||
* macOS: `Command` + `D`
|
* macOS: `Command` + `D`
|
||||||
|
|
||||||
#### Example
|
## Usage
|
||||||
|
|
||||||
```markup
|
```markup
|
||||||
<template>
|
<template>
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
# TableCell
|
# TableCell
|
||||||
Allows you to use the `<td>` HTML tag in the editor.
|
Enables you to use the `<td>` HTML tag in the editor.
|
||||||
|
|
||||||
::: warning Restrictions
|
::: warning Restrictions
|
||||||
This extensions is intended to be used with the `Table` extension.
|
This extensions is intended to be used with the `Table` extension.
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
# TableHeader
|
# TableHeader
|
||||||
Allows you to use the `<th>` HTML tag in the editor.
|
Enables you to use the `<th>` HTML tag in the editor.
|
||||||
|
|
||||||
::: warning Restrictions
|
::: warning Restrictions
|
||||||
This extensions is intended to be used with the `Table` extension.
|
This extensions is intended to be used with the `Table` extension.
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
# TableRow
|
# TableRow
|
||||||
Allows you to use the `<tr>` HTML tag in the editor.
|
Enables you to use the `<tr>` HTML tag in the editor.
|
||||||
|
|
||||||
::: warning Restrictions
|
::: warning Restrictions
|
||||||
This extensions is intended to be used with the `Table` extension.
|
This extensions is intended to be used with the `Table` extension.
|
||||||
|
|||||||
@@ -5,13 +5,13 @@ It renders a single toggleable item of a list.
|
|||||||
This extensions is intended to be used with the `TodoList` extension.
|
This extensions is intended to be used with the `TodoList` extension.
|
||||||
:::
|
:::
|
||||||
|
|
||||||
#### Options
|
## Options
|
||||||
| option | type | default | description |
|
| option | type | default | description |
|
||||||
| ------ | ---- | ---- | ----- |
|
| ------ | ---- | ---- | ----- |
|
||||||
| nested | Boolean | false | Specifies if you can nest todo lists. |
|
| nested | Boolean | false | Specifies if you can nest todo lists. |
|
||||||
|
|
||||||
#### Commands
|
## Commands
|
||||||
*None*
|
*None*
|
||||||
|
|
||||||
#### Keybindings
|
## Keybindings
|
||||||
*None*
|
*None*
|
||||||
@@ -5,18 +5,18 @@ Renders a toggleable list of items.
|
|||||||
This extensions is intended to be used with the `TodoItem` extension.
|
This extensions is intended to be used with the `TodoItem` extension.
|
||||||
:::
|
:::
|
||||||
|
|
||||||
#### Options
|
## Options
|
||||||
*None*
|
*None*
|
||||||
|
|
||||||
#### Commands
|
## Commands
|
||||||
| command | options | description |
|
| Command | Options | Description |
|
||||||
| ------ | ---- | ---------------- |
|
| ------ | ---- | ---------------- |
|
||||||
| todo_list | none | Toggle todo list. |
|
| todo_list | none | Toggle todo list. |
|
||||||
|
|
||||||
#### Keybindings
|
## Keybindings
|
||||||
*None*
|
*None*
|
||||||
|
|
||||||
#### Example
|
## Usage
|
||||||
```markup
|
```markup
|
||||||
<template>
|
<template>
|
||||||
<div>
|
<div>
|
||||||
|
|||||||
@@ -1,19 +1,19 @@
|
|||||||
# Underline
|
# Underline
|
||||||
Allows you to use the `<u>` HTML tag in the editor.
|
Enables you to use the `<u>` HTML tag in the editor.
|
||||||
|
|
||||||
#### Options
|
## Options
|
||||||
*None*
|
*None*
|
||||||
|
|
||||||
#### Commands
|
## Commands
|
||||||
| command | options | description |
|
| Command | Options | Description |
|
||||||
| ------ | ---- | ---------------- |
|
| ------ | ---- | ---------------- |
|
||||||
| underline | none | Mark text as underlined. |
|
| underline | none | Mark text as underlined. |
|
||||||
|
|
||||||
#### Keybindings
|
## Keybindings
|
||||||
* Windows & Linux: `Control` + `U`
|
* Windows & Linux: `Control` + `U`
|
||||||
* macOS: `Command` + `U`
|
* macOS: `Command` + `U`
|
||||||
|
|
||||||
#### Example
|
## Usage
|
||||||
|
|
||||||
```markup
|
```markup
|
||||||
<template>
|
<template>
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
# Schema
|
# Schema
|
||||||
|
|
||||||
Unlike many other editors, tiptap is based on a [schema](https://prosemirror.net/docs/guide/#schema) that defines how your content is structured. This allows you to define the kind of nodes that may occur in the document, its attributes and the way they can be nested.
|
Unlike many other editors, tiptap is based on a [schema](https://prosemirror.net/docs/guide/#schema) that defines how your content is structured. This enables you to define the kind of nodes that may occur in the document, its attributes and the way they can be nested.
|
||||||
|
|
||||||
This schema is *very* strict. You can’t use any HTML-element or attribute that is not defined in your schema.
|
This schema is *very* strict. You can’t use any HTML-element or attribute that is not defined in your schema.
|
||||||
|
|
||||||
|
|||||||
@@ -88,6 +88,12 @@
|
|||||||
link: /api/extensions/code
|
link: /api/extensions/code
|
||||||
- title: CodeBlock
|
- title: CodeBlock
|
||||||
link: /api/extensions/codeblock
|
link: /api/extensions/codeblock
|
||||||
|
- title: CodeBlockHeighlight
|
||||||
|
link: /api/extensions/codeblockheighlight
|
||||||
|
- title: Collaboration
|
||||||
|
link: /api/extensions/collaboration
|
||||||
|
- title: Hardbreak
|
||||||
|
link: /api/extensions/hardbreak
|
||||||
- title: Heading
|
- title: Heading
|
||||||
link: /api/extensions/heading
|
link: /api/extensions/heading
|
||||||
- title: History
|
- title: History
|
||||||
|
|||||||
Reference in New Issue
Block a user