How to quickly start Markdown edition

Text purpose:

This text is written for those who want to use markdown to edit their posts or reports but have no idea about how to start.
Or for people knowing the basic operation of markdown but want to edit a beautiful markdown file. Even you can perceive it file as a memo!

Operation conclusion

  • Bold and Italics

markdown
1
Bold -> **Text here** and Italics -> _Text Here_

And the present effects like Bold and Italics. To give more details, you can Nest one another to create Bold and Italics word.

  • Delete Line

markdown
1
Delete line -> ~~Text Here~~

The effect is like Delete text. You can use this to emphasize the change from th original or the false it used to be.

  • Code Block

You can nest code by using:

markdown
1
"```(type) text here```"

You can insert Link or Image by:

markdown
1
2
3
4
5
# insert link 
[Visit Kimi](https://kimi.ai) -> [explain your link](https://website.link.here)

# insert image
![Example image](/public/img/rene.jpg)

And the effect is like Visit Kimi
and image is like Example image

  • Reference

markdown
1
> This is a refer text

The effect is like the referred file is below.

Referred articles.

  • Divided Line

markdown
1
'___' is a horizon line.

Text up


Text down

  • Table

col 1 col 2
content 1 content 2

The code is like

markdown
1
2
3
| col 1     | col 2     |
|-----------|-----------|
| content 1 | content 2 |

More fancy style

The most used Markdown format is all above, but you can achieve more fancy style if you want by writing html as Markdown file support this HTML grammar.

And using HTML, you can easily change fonts’ size, color, and many different style which Markdown can’t realize.

For examples

If you want change font size of specific word between a sentence like ‘This is the Large Word in a sentence.’

html
1
<span style="font-size: 24pt; color: #00c4b6; background-color: white;">Large Word</span>

Similarly, the style contain many different attributes like ‘font-size’, ‘color’, ‘background-color’ and etc.

This is an example

Latex equation

When people want to write equations or some math symbols they may get mad due to Markdown being really pool at this point. On the other side, Latex, another edition tool, is especially good at math equation edition.

For examples

If you want inset a equation to support your theory then you can write
$$a + b = c$$
by

markdown
1
$$your equation$$

Also you can write Latex symbol or command between two ‘$$’.

For an example, you can write fraction by using \frac{}{}
$$F_{s} = \frac{1}{T_{sample}}$$