From 51af4b696bc8b45a87aefda33bfd07a4f6dbd38c Mon Sep 17 00:00:00 2001 From: Hans Pagel Date: Tue, 22 Sep 2020 16:52:20 +0200 Subject: [PATCH] fix markup typo --- docs/src/demos/Extensions/CodeBlock/index.vue | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/docs/src/demos/Extensions/CodeBlock/index.vue b/docs/src/demos/Extensions/CodeBlock/index.vue index 84eefdf4..a8dc55d8 100644 --- a/docs/src/demos/Extensions/CodeBlock/index.vue +++ b/docs/src/demos/Extensions/CodeBlock/index.vue @@ -36,7 +36,9 @@ export default { CodeBlock(), ], content: ` -

That’s a boring paragraph followed by a fenced code block:

+

+ That’s a boring paragraph followed by a fenced code block: +

for (var i=1; i <= 20; i++)
 {
   if (i % 15 == 0)
@@ -48,7 +50,9 @@ export default {
   else
     console.log(i);
 }
-

Press Command/Ctrl + Enter to leave the fenced code block and continue typing in boring paragraphs. +

+ Press Command/Ctrl + Enter to leave the fenced code block and continue typing in boring paragraphs. +

`, }) },