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.
pull/3233/head
Dahknee 2 years ago committed by GitHub
parent ef6d8d1e42
commit f0bce67dc6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -420,7 +420,7 @@ Note that only one space is required after `!code`, here are two to prevent proc
export default { export default {
data () { data () {
return { 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 { export default {
data () { data () {
return { return {
msg: 'Removed' // [!code --] msg: 'Removed' // [!code --]
msg: 'Added' // [!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 { export default {
data () { data () {
return { return {
msg: 'Error', // [!code error] msg: 'Error', // [!code error]
msg: 'Warning' // [!code warning] msg: 'Warning' // [!code warning]
} }
} }
} }

Loading…
Cancel
Save