Main CommonMark Markups

Back to Index

CommonMarkResult
To write on a new line, write two spaces SpaceSpaceEnter
and press Enter at the end of line
To write on a new line, write two spaces
and press Enter at the end of line
To write on a new paragraph, write two enters Enter
Enter
at the end of line
To write on a new paragraph, write two enters

at the end of line
This is **bold** textThis is bold text
This is _italic_ textThis is italic text
This is **_bold and italic_**This is bold and italic
This is ++underlined++ textThis is underlined text
This is ~~strikethrough~~ textThis is strikethrough text
This is ==highlighted== textThis is highlighted text
This text has a superscript^^2^^This text has a superscript2
This text has a piece of `code`This text has a piece of code
# Top heading

Top heading

## Heading 2

Heading 2

### heading 3

Heading 3

Use Html to make <font color="darkblue">**TEXT**</font> darkblueUse Html to make TEXT darkblue
To make a link, write a [link](http://google.com)To make a link, write a link
Or make a link this way
[link][1]
...
...
[1]: http://google.com
Or make a link this way
link
To make a link to a picture, write a link to it
![link](http://www.a.com/b.png)
To make a link to a picture, write a link to it
link
Make a numbered bullet list
1. point 1
1. point 2
Make a numbered bullet list
 1. point 1
 2. point 2
Make an unnumbered bullet list
* point 1
* point 2
Make an unnumbered bullet list
 • point 1
 • point 2
Write quotes
> To be or not to be
Write quotes
To be or not to be
A horizontal rule:

* * * *
A horizontal rule:


To draw a table, draw it
| A | B |
|---|---|
|c1 |c2 |
|c3 |c4 |
To draw a table, draw it
AB
c1c2
c3c4
<center>

Text in the center

</center>


Text in the center

Back to Index