mirror of
https://github.com/withastro/astro.git
synced 2024-12-16 21:46:22 -05:00
Fix markdown of markdown-style-guide.md
in the blog example (#10962)
This commit is contained in:
parent
87066c648a
commit
fa240ff2f2
1 changed files with 10 additions and 10 deletions
|
@ -31,13 +31,13 @@ Itatur? Quiatae cullecum rem ent aut odis in re eossequodi nonsequ idebis ne sap
|
|||
|
||||
## Images
|
||||
|
||||
#### Syntax
|
||||
### Syntax
|
||||
|
||||
```markdown
|
||||
![Alt text](./full/or/relative/path/of/image)
|
||||
```
|
||||
|
||||
#### Output
|
||||
### Output
|
||||
|
||||
![blog placeholder](/blog-placeholder-about.jpg)
|
||||
|
||||
|
@ -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.
|
||||
|
|
Loading…
Reference in a new issue