diff options
author | 2024-05-08 09:03:25 -0300 | |
---|---|---|
committer | 2024-05-08 20:03:25 +0800 | |
commit | fa240ff2f2ed8d2a9929aec0103be235aecc04c3 (patch) | |
tree | 8cceed4dc2cedd096aa8d1dfe1786065e0c05d0c | |
parent | 87066c648a424700dc5131716b8f9ff4e8d22a36 (diff) | |
download | astro-fa240ff2f2ed8d2a9929aec0103be235aecc04c3.tar.gz astro-fa240ff2f2ed8d2a9929aec0103be235aecc04c3.tar.zst astro-fa240ff2f2ed8d2a9929aec0103be235aecc04c3.zip |
Fix markdown of `markdown-style-guide.md` in the blog example (#10962)
-rw-r--r-- | examples/blog/src/content/blog/markdown-style-guide.md | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/examples/blog/src/content/blog/markdown-style-guide.md b/examples/blog/src/content/blog/markdown-style-guide.md index a72853438..cf02c4198 100644 --- a/examples/blog/src/content/blog/markdown-style-guide.md +++ b/examples/blog/src/content/blog/markdown-style-guide.md @@ -31,13 +31,13 @@ Itatur? Quiatae cullecum rem ent aut odis in re eossequodi nonsequ idebis ne sap ## Images -#### Syntax +### Syntax ```markdown  ``` -#### Output +### Output  @@ -77,7 +77,7 @@ The blockquote element represents content that is quoted from another source, op ## Tables -#### Syntax +### Syntax ```markdown | Italics | Bold | Code | @@ -85,7 +85,7 @@ The blockquote element represents content that is quoted from another source, op | _italics_ | **bold** | `code` | ``` -#### Output +### Output | Italics | Bold | Code | | --------- | -------- | ------ | @@ -93,7 +93,7 @@ The blockquote element represents content that is quoted from another source, op ## Code Blocks -#### Syntax +### Syntax we can use 3 backticks ``` in new line and write snippet and close with 3 backticks on new line and to highlight language specific syntax, write one word of language name after first 3 backticks, for eg. html, javascript, css, markdown, typescript, txt, bash @@ -112,7 +112,7 @@ we can use 3 backticks ``` in new line and write snippet and close with 3 backti ``` ```` -Output +### Output ```html <!doctype html> @@ -187,7 +187,7 @@ Output ## Other Elements — abbr, sub, sup, kbd, mark -#### Syntax +### Syntax ```markdown <abbr title="Graphics Interchange Format">GIF</abbr> is a bitmap image format. @@ -196,12 +196,12 @@ H<sub>2</sub>O X<sup>n</sup> + Y<sup>n</sup> = Z<sup>n</sup> -Press <kbd><kbd>CTRL</kbd>+<kbd>ALT</kbd>+<kbd>Delete</kbd></kbd> to end the session. +Press <kbd>CTRL</kbd> + <kbd>ALT</kbd> + <kbd>Delete</kbd> to end the session. Most <mark>salamanders</mark> are nocturnal, and hunt for insects, worms, and other small creatures. ``` -#### Output +### Output <abbr title="Graphics Interchange Format">GIF</abbr> is a bitmap image format. @@ -209,6 +209,6 @@ H<sub>2</sub>O X<sup>n</sup> + Y<sup>n</sup> = Z<sup>n</sup> -Press <kbd><kbd>CTRL</kbd>+<kbd>ALT</kbd>+<kbd>Delete</kbd></kbd> to end the session. +Press <kbd>CTRL</kbd> + <kbd>ALT</kbd> + <kbd>Delete</kbd> to end the session. Most <mark>salamanders</mark> are nocturnal, and hunt for insects, worms, and other small creatures. |