Merge branch 'main' of https://github.com/ueberdosis/tiptap-next into feature/improve-command-chaining

This commit is contained in:
Philipp Kühn
2020-09-22 20:09:22 +02:00
30 changed files with 229 additions and 113 deletions

View File

@@ -36,7 +36,9 @@ export default {
CodeBlock(),
],
content: `
<p>Thats a boring paragraph followed by a fenced code block:</p>
<p>
Thats a boring paragraph followed by a fenced code block:
</p>
<pre><code>for (var i=1; i <= 20; i++)
{
if (i % 15 == 0)
@@ -48,7 +50,9 @@ export default {
else
console.log(i);
}</code></pre>
<p>Press Command/Ctrl + Enter to leave the fenced code block and continue typing in boring paragraphs.
<p>
Press Command/Ctrl + Enter to leave the fenced code block and continue typing in boring paragraphs.
</p>
`,
})
},