Use markdown syntax in threads, posts, and conversations.
Use markdown syntax in threads, posts, adn conversations.
Below are the currently supported basic & custom markdown syntaxes.
Makes text BOLD.
// Syntax: **
This is **a dummy** text.
// Can be escaped using `\` to prevent parsing.
This is \**a dummy\** text
Makes text italic.
// Syntax: _
This is _a dummy_ text.
// Can be escaped using `\` to prevent parsing.
This is \_a dummy\_ text.
Strikethrough a selection of text.
// Syntax: ~~
This is ~~a dummy~~ text.
// Can be escaped using `\` to prevent parsing.
This is \~~a dummy\~~ text.
Place text in monospace code font.
// Syntax: `
This is `a dummy` text.
// Can be escaped using `\` to prevent parsing.
This is \`a dummy\` text.
You can use headings only up to level 3 (###).
// Syntax: #
# Level 1
## Level 2
### Level 3
Create a link to a URL
// Syntax: [<text to represent link>](<link to a URL>)
This is [a dummy](https://sleazyfork.org) text.
Create a generic block quote.
// Syntax: > // NOTE: ignore the backslashes `\`. \> This is a dummy text. \> Another dummy text! \> \> Hey! You saw that gap?!?
// Syntax: ```
// NOTE: ignore the backslashes `\`.
\```
This is a dummy text inside a code block.
\```
// You can also suggest a code language.
// Syntax: ```<language to use>
\```python
variable = 10
min = 20
def func(x,y):
return x + y * x
\```
Unordered & Ordered lists are supported!
// Ordered lists
// Syntax: <digits>.
1. Wake up
2. Look at a mirror
3. Shower
// Unordered lists
// Syntax: -
- Atemoya
- Avocado
- Alupag
// You can mix them and apply descendents. Each child must be 2 spaces.
1. This is a dummy text
- I'm the dummy's child
- Me too!
- I'm a parent like dummy there.
1. A number child
- I'm number's child
2. Number's lost sibling
Apply underline to a string of text.
// Syntax: __
This is __a dummy__ text.
// Can be escaped using `\` to prevent parsing.
This is \__a dummy\__ text.
Same as Block Quote except new you can quote someone or something.
// Syntax: >> <Any words can be typed here>
// NOTE: The first quote must use `>>`. Afterwards, use regular block quote, `>`.
>> Johan Capri
> Hello everyone!
> Don't forget to like, subscribe, and hit that notification bell to
> always be up to date on the latest news!
Blur out some text.
// Syntax: ||
This is ||a dummy|| text.
// Can be escaped using `\` to prevent parsing.
This is \||a dummy\|| text.
Hide a block of text behind a button.
// Syntax:
// ::: spoiler
// <text>
// :::
::: spoiler
This is a dummy text.
:::
// You can also provide a description for the spoiler button
// Syntax:
// ::: spoiler=<name of spoiler>
// <text>
// :::
::: spoiler=Please do not open this spoiler!
This is a dummy text.
:::
Align text either center or right.
// Syntax:
// <<< <right or center>
// <text>
// <<<
<<< center
This is a dummy text.
<<<
//Here's a right alignment example.
<<< right
This is a dummy text.
<<<
Apply hexidecimal color to text.
// Syntax:
// %<#six-digit hexidecimal color code>% <text> %%
This is %#ff03ff%a dummy%% text.