From f0bce67dc64d9ae175663db46fe0cd02c9bd0b68 Mon Sep 17 00:00:00 2001 From: Dahknee Date: Wed, 22 Nov 2023 09:57:03 +0000 Subject: [PATCH] Update markdown.md Removed double spaces in some of the `[!code` tags, as when copying from the docs, it doesn't work, as there are two spaces. --- docs/guide/markdown.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/guide/markdown.md b/docs/guide/markdown.md index 3756235d..dea7d841 100644 --- a/docs/guide/markdown.md +++ b/docs/guide/markdown.md @@ -420,7 +420,7 @@ Note that only one space is required after `!code`, here are two to prevent proc export default { data () { return { - msg: 'Focused!' // [!code focus] + msg: 'Focused!' // [!code focus] } } } @@ -452,8 +452,8 @@ Note that only one space is required after `!code`, here are two to prevent proc export default { data () { return { - msg: 'Removed' // [!code --] - msg: 'Added' // [!code ++] + msg: 'Removed' // [!code --] + msg: 'Added' // [!code ++] } } } @@ -486,8 +486,8 @@ Note that only one space is required after `!code`, here are two to prevent proc export default { data () { return { - msg: 'Error', // [!code error] - msg: 'Warning' // [!code warning] + msg: 'Error', // [!code error] + msg: 'Warning' // [!code warning] } } }