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. +

`, }) },