diff options
author | 2023-08-09 18:52:48 +0000 | |
---|---|---|
committer | 2023-08-09 18:52:48 +0000 | |
commit | e65b5b54950978957b75873ad4f493b3be26f3ea (patch) | |
tree | 2f2a9dfdd077ddba9a4615512a1bd21796632cb8 /examples/blog/src | |
parent | e2b1b4fa6ee9451cf1e3d23c1dc2ff1efb693f72 (diff) | |
download | astro-e65b5b54950978957b75873ad4f493b3be26f3ea.tar.gz astro-e65b5b54950978957b75873ad4f493b3be26f3ea.tar.zst astro-e65b5b54950978957b75873ad4f493b3be26f3ea.zip |
[ci] format
Diffstat (limited to 'examples/blog/src')
-rw-r--r-- | examples/blog/src/content/blog/markdown-style-guide.md | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/examples/blog/src/content/blog/markdown-style-guide.md b/examples/blog/src/content/blog/markdown-style-guide.md index e8ba6c03f..c0939221c 100644 --- a/examples/blog/src/content/blog/markdown-style-guide.md +++ b/examples/blog/src/content/blog/markdown-style-guide.md @@ -36,7 +36,7 @@ Itatur? Quiatae cullecum rem ent aut odis in re eossequodi nonsequ idebis ne sap ```markdown  ``` - + #### Output  @@ -83,7 +83,6 @@ The blockquote element represents content that is quoted from another source, op | Italics | Bold | Code | | --------- | -------- | ------ | | _italics_ | **bold** | `code` | - ``` #### Output @@ -99,19 +98,20 @@ The blockquote element represents content that is quoted from another source, op we can use 3 backticks ``` in new line and write snippet and close with 3 backticks on new line and to highlight language specific syntac, write one word of language name after first 3 backticks, for eg. html, javascript, css, markdown, typescript, txt, bash ````markdown - ```html - <!DOCTYPE html> - <html lang="en"> - <head> - <meta charset="utf-8" /> - <title>Example HTML5 Document</title> - </head> - <body> - <p>Test</p> - </body> - </html> - ``` +```html +<!DOCTYPE html> +<html lang="en"> + <head> + <meta charset="utf-8" /> + <title>Example HTML5 Document</title> + </head> + <body> + <p>Test</p> + </body> +</html> +``` ```` + Output ```html |