How to styling posts
The ATUM forum use Markdown Tool to styling posts. This tool help us for the post styling adding Headings, Text Styles (Italic, bold, etc) and lists. With Markdown you also can add links, images, quotes or code.
We've added a Markdown Editor in our writing posts window to help you.

Clicking the icons the Markdown symbols will be added in your text area.

Markdown Cheatsheet
Headers
# H1
## H2
### H3
#### H4
##### H5
###### H6
Alternatively, for H1 and H2, an underline-ish style:
Alt-H1
======
Alt-H2
------
H1
H2
H3
H4
H5
H6
Alternatively, for H1 and H2, an underline-ish style:
Alt-H1
Alt-H2
EMPHASIS
*single asterisks*
_single underscores_
**double asterisks**
__double underscores__
\*this text is surrounded by literal asterisks\*
single asterisks
single underscores
double asterisks
double underscores
*this text is surrounded by literal asterisks*
BLOCKQUOTES
> This is a blockquote with two paragraphs. Lorem ipsum dolor sit amet,
> consectetuer adipiscing elit. Aliquam hendrerit mi posuere lectus.
> Vestibulum enim wisi, viverra nec, fringilla in, laoreet vitae, risus.
>
> Donec sit amet nisl. Aliquam semper ipsum sit amet velit. Suspendisse
> id sem consectetuer libero luctus adipiscing.
This is a blockquote with two paragraphs. Lorem ipsum dolor sit amet,
consectetuer adipiscing elit. Aliquam hendrerit mi posuere lectus.
Vestibulum enim wisi, viverra nec, fringilla in, laoreet vitae, risus.
Donec sit amet nisl. Aliquam semper ipsum sit amet velit. Suspendisse
id sem consectetuer libero luctus adipiscing.
Lists
Ordered Lists
1. Bird
2. McHale
3. Parish
- Bird
- McHale
- Parish
Unordered Lists
* Red
* Green
* Blue
+ Red
+ Green
+ Blue
- Red
- Green
- Blue
CODE BLOCKS
To produce a code span `use backtick quotes` to wrap the text.
To produce a code span use backtick quotes
to wrap the text.
····To produce a code line in Markdown, indent the line by at least 4 spaces or 1 tab.
To produce a code line in Markdown, indent the line by at least 4 spaces or 1 tab.
····To produce a code block with several lines in Markdown,
····simply indent every line of the block by at least 4 spaces or 1 tab.
To produce a code block with several lines in Markdown,
simply indent every line of the block by at least 4 spaces or 1 tab.
HORIZONTAL RULES
___
* * *
***
*****
- - -
---------------------------------------
links
This is [an example](http://example.com/ "Title") inline link.
[This link](http://example.net/) has no title attribute.
This is an example inline link.
This link has no title attribute.
images




BACKSLASH ESCAPES
\\backslash
\`backtick\`
\_underscore
\{curly braces\}
\[square brackets\]
\(parentheses\)
\#hash mark
\+plus sign
\-minus sign
\.dot
\*asterisks
\!exclamation mark
\backslash
`backtick`
_underscore
{curly braces}
[square brackets]
(parentheses)
# hash mark
+ plus sign
- minus sign
.dot
*asterisks
! exclamation mark