[ci] format

This commit is contained in:
ElianCodes 2023-08-09 18:52:48 +00:00 committed by astrobot-houston
parent e2b1b4fa6e
commit e65b5b5495

View file

@ -36,7 +36,7 @@ Itatur? Quiatae cullecum rem ent aut odis in re eossequodi nonsequ idebis ne sap
```markdown ```markdown
![Alt text](./full/or/relative/path/of/image) ![Alt text](./full/or/relative/path/of/image)
``` ```
#### Output #### Output
![blog placeholder](../../../public/blog-placeholder-about.jpg) ![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 |
| --------- | -------- | ------ | | --------- | -------- | ------ |
| _italics_ | **bold** | `code` | | _italics_ | **bold** | `code` |
``` ```
#### Output #### 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 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 ````markdown
```html ```html
<!DOCTYPE html> <!DOCTYPE html>
<html lang="en"> <html lang="en">
<head> <head>
<meta charset="utf-8" /> <meta charset="utf-8" />
<title>Example HTML5 Document</title> <title>Example HTML5 Document</title>
</head> </head>
<body> <body>
<p>Test</p> <p>Test</p>
</body> </body>
</html> </html>
``` ```
```` ````
Output Output
```html ```html