Directory
- Hyperlink
- list
- emphasize
- Title
- sheet
- code block
- picture
- Anchor
- Inline Attribute
- Emoji
- Footnotes
- mermaid
- sequence
- flowchart
- mathjax
- mindmap
Hyperlink
[Reliable-ing](https://mazhuang.org)
<https://mazhuang.org>
list
1. Ordered list items 1
2. Ordered list items 2
3. Ordered list items 3
Ordered list items 1
Ordered list items 2
Ordered list items 3
* unordered list entry 1
* unordered list entry 2
* unordered list entry 3
unordered list entry 1
unordered list entry 2
unordered list entry 3
- [x] Task List 1
- [ ] Task List 2
- Task List 1
- Task List 2
emphasize
~~strike out~~
**With black**
*italic*
strike out
With black
italic
Title
# first level title
## Secondary title
### Level 3 heading
#### Level 4 heading
##### Level 5 heading
###### Level 6 heading
Tips: Add a space between #
and the title.
sheet
| HEADER1 | HEADER2 | HEADER3 | HEADER4 |
| ------- | :------ | :-----: | ------: |
| content | content | content | content |
HEADER1 | HEADER2 | HEADER3 | HEADER4 |
---|---|---|---|
content | content | content | content |
- :—– means left-aligned
- :—-: means center alignment
- —–: means right-aligned
code block
print 'Hello, World!'
list item1
-
list item2
print 'hello'
picture
![This site favicon](/favicon.ico)
Anchor
* [Directory](#Directory)
Inline Attribute
Span Inline Attribute details reference https://kramdown.gettalong.org/syntax.html#span-ials
Block Inline Attribute details refer to https://kramdown.gettalong.org/syntax.html#block-ials
Add classes, ids, inline styles, etc. to blocks/elements:
![This site favicon](/favicon.ico){:.center}
Hello, *world*{:#world}
Hello, *world*{: style="color:red"}
Hello, world
Hello, world
Combined with custom styles, some scenarios are more useful.
Emoji
Footnotes
This is a text with footnote1.
mermaid
sequenceDiagram Alice-->>John: Hello John, how are you? John-->>Alice: Great!
sequence
Andrew->China: Says Hello
Note right of China: China thinks\nabout it
China-->Andrew: How are you?
Andrew->>China: I am good thanks!
flowchart
st=>start: Start
e=>end
op1=>operation: My Operation
sub1=>subroutine: My Subroutine
cond=>condition: Yes
or No?
io=>inputoutput: catch something...
st->op1->cond
cond(yes)->io->e
cond(no)->sub1(right)->op1
mathjax
When \((a \ne 0)\), there are two solutions to \((ax^2 + bx + c = 0)\) and they are
\[x = {-b \pm \sqrt{b^2-4ac} \over 2a}.\]mindmap
#topic
## topic2
### topic2.1
### topic2.2
## topic3
<!--Note-->
This is a remark
<!--/Note-->
### topic3.1
### topic3.2
#### topic3.2.1
#### topic3.2.2
#### topic3.2.3
#### topic3.2.4
#### topic3.2.5
### topic3.4
### topic3.5
### topic3.6
Here is the footnote 1 definition. ↩
Information
- Author:Kim Phu
- Link to this article:/wiki/markdown/