fix markup typo

This commit is contained in:
Hans Pagel
2020-09-22 16:52:20 +02:00
parent 570091fb95
commit 51af4b696b

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>
`,
})
},