Skip to content

Commit

Permalink
[ci] update-templates
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed May 9, 2024
1 parent 6931d4f commit ac2759f
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions templates/blog/src/content/blog/markdown-style-guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down Expand Up @@ -77,23 +77,23 @@ The blockquote element represents content that is quoted from another source, op

## Tables

#### Syntax
### Syntax

```markdown
| Italics | Bold | Code |
| --------- | -------- | ------ |
| _italics_ | **bold** | `code` |
```

#### Output
### Output

| Italics | Bold | Code |
| --------- | -------- | ------ |
| _italics_ | **bold** | `code` |

## 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

Expand All @@ -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>
Expand Down Expand Up @@ -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.
Expand All @@ -196,19 +196,19 @@ 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.

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.

0 comments on commit ac2759f

Please sign in to comment.