summaryrefslogtreecommitdiff
path: root/examples/blog/src
diff options
context:
space:
mode:
authorGravatar ElianCodes <ElianCodes@users.noreply.github.com> 2023-08-09 18:52:48 +0000
committerGravatar astrobot-houston <fred+astrobot@astro.build> 2023-08-09 18:52:48 +0000
commite65b5b54950978957b75873ad4f493b3be26f3ea (patch)
tree2f2a9dfdd077ddba9a4615512a1bd21796632cb8 /examples/blog/src
parente2b1b4fa6ee9451cf1e3d23c1dc2ff1efb693f72 (diff)
downloadastro-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.md28
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
![Alt text](./full/or/relative/path/of/image)
```
-
+
#### Output
![blog placeholder](../../../public/blog-placeholder-about.jpg)
@@ -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