How to Format Comments & Posts
This site uses Markdown Extra. Description from Markdown's creator:
Markdown is a text-to-HTML conversion tool for web writers. Markdown allows you to write using an easy-to-read, easy-to-write plain text format, then convert it to structurally valid XHTML
This article demonstrates the most commonly used features of Markdown Extra. For a full reference, see Markdown syntax and Markdown Extra syntax. The markdown code that was used to write this article is displayed at the bottom.
emphasized text
strongly emphasized text
inline code
#include <iostream>
int main()
{
// use tabs or 4 spaces for code blocks
std::cout << "Hello, WSoft!";
return 0;
}
| Column 1 | Column 2 | Column 3 |
|---|---|---|
| Left | Centered | Right |
- unordered
- list
- items
- ordered
- list
- items
Top level header
Second level header
Markdown code:
This site uses [Markdown Extra][1].
Description from Markdown's creator:
>Markdown is a text-to-HTML conversion
tool for web writers. Markdown allows you
to write using an easy-to-read,
easy-to-write plain text format,
then convert it to structurally valid XHTML
This article demonstrates the most
commonly used features of Markdown Extra.
For a full reference, see [Markdown syntax][2]
and [Markdown Extra syntax][1]. The markdown
code that was used to write this article is
displayed at the bottom.
* * *
*emphasized text*
**strongly emphasized text**
[link with title][3]
`inline code`
#include
int main()
{
// use tabs or 4 spaces for code blocks
std::cout << "Hello, WSoft!";
return 0;
}
| Column 1 | Column 2 | Column 3 |
| :------- | :------: | -------: |
| Left | Centered | Right |
* unordered
* list
* items
1. ordered
2. list
3. items
# Top level header #
## Second level header ##
[1]: http://michelf.com/projects/php-markdown/extra/
[2]: http://daringfireball.net/projects/markdown/syntax
[3]: http://wolverinesoft.org "Wolverine Soft"
*[HTML]: Hypertext Markup Language
*[XHTML]: Extensible Hypertext Markup Language
Note: views and opinions expressed in this article are the author's and are not necessarily those of Wolverine Soft.
