Use markdown in forum posts and replies
Markdown is a simple syntax to add formatting to your text. You can find a complete markdown cheat sheet here
Here are a few basics, I am displaying the code first and then the result:
# Title
## Sub-title
### Sub-sub-title
Title
Sub-title
Sub-sub-title
List:
* item 1
* item 2
* item 3
List:
- item 1
- item 2
- item 3
Some paragraph of text
Some other paragraph *with some text in italics*
Some other paragraph **with some text in bold**
Some paragraph of text
Some other paragraph with some text in italics
Some other paragraph with some text in bold
Note: bold characters do not look like bold for now due to a font problem ; I will make sure to fix that
A paragraph, then a code block
```
x = x+1
myFunction()
```
A paragraph, then a code block
x = x+1
myFunction()
I can also format inline code within my paragraph like this ```screen.drawText()```, how cute is that?
I can also format inline code within my paragraph like this screen.drawText()
, how cute is that?
You can make tables like this:
|column 1|column 2|
|-|-|
|whatever|something|
|something else|and whatnot|
You can make tables like this:
column 1 | column 2 |
---|---|
whatever | something |
something else | and whatnot |