mirror of
https://github.com/ueberdosis/tiptap.git
synced 2024-12-05 12:29:03 +08:00
67 lines
1.4 KiB
Vue
67 lines
1.4 KiB
Vue
<template>
|
|
<div>
|
|
<editor class="editor" :extensions="extensions">
|
|
|
|
<div class="editor__content" slot="content" slot-scope="props">
|
|
<h2>
|
|
Markdown Shortcuts
|
|
</h2>
|
|
<p>
|
|
Start a new line and type <code>#</code> followed by a <code>space</code> and you will get an H1 headline.
|
|
</p>
|
|
<p>
|
|
This feature is called <strong>input rules</strong>. There are some of these shortcuts for the most basic nodes enabled by default. Try <code>#, ##, ###, …</code> for headlines, <code>></code> for blockquotes, <code>- or +</code> for bullet lists. And of course you can add your own input rules.
|
|
</p>
|
|
</div>
|
|
|
|
</editor>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import Icon from 'Components/Icon'
|
|
import { Editor } from 'tiptap'
|
|
import {
|
|
BlockquoteNode,
|
|
BulletListNode,
|
|
CodeBlockNode,
|
|
HardBreakNode,
|
|
HeadingNode,
|
|
ListItemNode,
|
|
OrderedListNode,
|
|
TodoItemNode,
|
|
TodoListNode,
|
|
BoldMark,
|
|
CodeMark,
|
|
ItalicMark,
|
|
LinkMark,
|
|
HistoryExtension,
|
|
} from 'tiptap-extensions'
|
|
|
|
export default {
|
|
components: {
|
|
Editor,
|
|
Icon,
|
|
},
|
|
data() {
|
|
return {
|
|
extensions: [
|
|
new BlockquoteNode(),
|
|
new BulletListNode(),
|
|
new CodeBlockNode(),
|
|
new HardBreakNode(),
|
|
new HeadingNode({ maxLevel: 3 }),
|
|
new ListItemNode(),
|
|
new OrderedListNode(),
|
|
new TodoItemNode(),
|
|
new TodoListNode(),
|
|
new BoldMark(),
|
|
new CodeMark(),
|
|
new ItalicMark(),
|
|
new LinkMark(),
|
|
new HistoryExtension(),
|
|
],
|
|
}
|
|
},
|
|
}
|
|
</script> |