Thlane|Blog

Markdown Test

TutorialsTime of publishing: 4/24/2023 • Time of updating: 3/27/2024
Markdown
Test
the article cover of "Markdown Test"

This is a test article, it will be used to display Markdown's effects.

Inline Styles

**Bold**: Bold

_Italic_: Italic

`Code`: Code

~~Deleted~~: Deleted

Subscripted:H<sub>2</sub>O(H2O)

Supscripted:x<sup>2</sup>(x2)

Emoji::+1:(👍),:smile:(😄)

Block Styles

Blockquotes

Markdown
> Blockquotes > > > Nested

Blockquotes

Nested

Lists

Markdown
- Unordered list 1 - Indented item 1 - Indented item 2 - Unordered list 2
  • Unordered lists 1
    • Indented item 1
    • Indented item 2
  • Unordered lists 2
Markdown
1. Ordered list 1 2. Ordered list 2 Customer serial number 33. Ordered list 1 34. Ordered list 2
  1. Ordered list 1
  2. Ordered list 2

Customer serial number

  1. Customer ordered list 1
  2. Customer ordered list 2
Markdown
- [x] Task list 1 - [ ] Task list 2 - [ ] Task list 3
  • Task list 1
  • Task list 2
  • Task list 3

Headings

It is recommended to start using the second-level title in the article, otherwise it may affect the SEO effect.

Markdown
# Heading level 1 ## Heading level 2 ### Heading level 3 #### Heading level 4 ##### Heading level 5 ###### Heading level 6

Code Blocks

Markdown
```text Code Blocks ```
Plain text
Code Blocks
Markdown
```js // highlight code alert("Hello, World!"); ```
JavaScript
// highlight code alert("Hello, World!");

Table page

Markdown
::::::pivot :::JavaScript ```js const variable = 10; function getLastChar(str) { return str.charAt(str.length - 1); } getLastChar(variable); // Runtime error. ``` ::: :::TypeScript ```ts const variable = 10; function getLastChar(str: string) { return str.charAt(str.length - 1); } getLastChar(variable); // Compile-time error. ``` ::: ::::::

Form

Markdown
Form | Option | Description | | ------ | ------------------------------------------------------------------------- | | data | path to data files to supply the data that will be passed into templates. | | engine | engine to be used for processing templates. Handlebars is the default. | | ext | extension to be used for dest files. |

Form

datapath to data files to supply the data that will be passed into templates.
engineengine to be used for processing templates. Handlebars is the default.
extextension to be used for dest files.
Markdown
right align: | Option | Description | | -----: | ------------------------------------------------------------------------: | | data | path to data files to supply the data that will be passed into templates. | | engine | engine to be used for processing templates. Handlebars is the default. | | ext | extension to be used for dest files. |

right align:

datapath to data files to supply the data that will be passed into templates.
engineengine to be used for processing templates. Handlebars is the default.
extextension to be used for dest files.

Notes

Markdown
:::note Content that readers should pay attention to or browse. :::
note

Content that readers should pay attention to or browse.

Markdown
:::tip Non-essential intelligence that can help readers reach their goals more easily. :::
tip

Non-essential intelligence that can help readers reach their goals more easily.

Markdown
:::important Information that the reader must know in order to achieve their goals. :::
important

Information that the reader must know in order to achieve their goals.

Markdown
:::caution Actions or intelligence that could lead to potentially negative outcomes. :::
caution

Actions or intelligence that could lead to potentially negative outcomes.

Markdown
:::warning Dangerous behavior or intelligence. :::
warning

Dangerous behavior or intelligence.

Footnote

Markdown
Footnote[^1] [^1]: Explainted content

Footnote1

Images

![Avatar](https://cravatar.cn/avatar/cec0c05a5ba5f763570d74d2670752d7)Avatar

[Test Blog](http://127.0.0.1)Test Blog

Auto link:http://127.0.0.1

Mathematical expression

Inline expression

$\sqrt{3x-1}+(1+x)^2$3x1+(1+x)2\sqrt{3x-1}+(1+x)^2

Block expression

Markdown
$$\left( \sum_{k=1}^n a_k b_k \right)^2 \leq \left( \sum_{k=1}^n a_k^2 \right) \left( \sum_{k=1}^n b_k^2 \right)$$

(k=1nakbk)2(k=1nak2)(k=1nbk2)\left( \sum_{k=1}^n a_k b_k \right)^2 \leq \left( \sum_{k=1}^n a_k^2 \right) \left( \sum_{k=1}^n b_k^2 \right)

Footnote

label

  1. Explainted content

On this page
Inline Styles
Footnote
Footnote
label