F95 Markdown

Use Markdown syntax in threads, posts, and conversations.

Terá de instalar uma extensão como Tampermonkey, Greasemonkey ou Violentmonkey para instalar este script.

Terá de instalar uma extensão como Tampermonkey para instalar este script.

Terá de instalar uma extensão como Tampermonkey ou Violentmonkey para instalar este script.

Terá de instalar uma extensão como Tampermonkey ou Userscripts para instalar este script.

Terá de instalar uma extensão como Tampermonkey para instalar este script.

Terá de instalar uma extensão de gestão de scripts de utilizador para instalar este script.

(Já tenho um gestor de scripts de utilizador, deixe-me instalá-lo!)

Terá de instalar uma extensão como Stylus para instalar este estilo.

Terá de instalar uma extensão como Stylus para instalar este estilo.

Terá de instalar uma extensão como Stylus para instalar este estilo.

Terá de instalar uma extensão de gestão de estilos de utilizador para instalar este estilo.

Terá de instalar uma extensão de gestão de estilos de utilizador para instalar este estilo.

Terá de instalar uma extensão de gestão de estilos de utilizador para instalar este estilo.

(Já tenho um gestor de estilos de utilizador, deixe-me instalá-lo!)

Autor
Edexal
Instalações diárias
0
Total de instalações
6
Classificações
0 0 0
Versão
1.2.8
Criado
15/02/2026
Atualizado
24/07/2026
Tamanho
20 KB
Licença
Unlicense
Aplica-se a

Description

Use markdown syntax in threads, posts, and conversations.

How to Use

  1. Type supported markdown syntax in a thread, post, or conversation.
  2. When finished, click the PARSE MD button to convert Markdown to BBCode and HTML.

Optional Steps

  1. Preview it!
    • Not all syntax will show up correctly on preview. Just make sure your syntax is transformed to a BBCODE in your textbox.
  2. If everything is to your liking, submit it!
  3. If you forget the supported markdown syntax, click on the yellow markdown button in the toolbar.

Syntax Support

Below are the currently supported basic & custom markdown syntaxes.

Basic

Bold

Makes text BOLD.

// Syntax: **<text>**
This is **a dummy** text.

// Can be escaped using `\` to prevent parsing.
This is \**a dummy\** text

Italic

Makes text italic.

// Syntax: _<text>_
This is _a dummy_ text.

// Can be escaped using `\` to prevent parsing.
This is \_a dummy\_ text.

Strikethrough

Strikethrough a selection of text.

// Syntax: ~~<text>~~
This is ~~a dummy~~ text.

// Can be escaped using `\` to prevent parsing.
This is \~~a dummy\~~ text.

Inline Code

Place text in monospace code font.

// Syntax: `<text>`
This is `a dummy` text.

// Can be escaped using `\` to prevent parsing.
This is \`a dummy\` text.

Headings

You can use headings only up to level 3 (###).

// Syntax: #<text>
# Level 1
## Level 2
### Level 3

Link

Create a link to a URL

// Syntax: [<text to represent link>](<link to a URL>)
This is [a dummy](https://sleazyfork.org) text.

Block Quote

Create a generic block quote.

// Syntax: ><text>
// NOTE: ignore the backslashes `\`.
\> This is a dummy text.
\> Another dummy text!
\> 
\> Hey! You saw that gap?!?

Code Block

// Syntax: 
// ```
// <text>
// ```
// NOTE: ignore the backslashes `\`.

\```
This is a dummy text inside a code block.
\```

// You can also specify a coding language.
// Syntax: 
// ```<language to use>
// <text>
// ```

\```python
variable = 10
min = 20

def func(x,y):
    return x + y * x
\```

Lists

Unordered & Ordered lists are supported!

// Ordered lists
// Syntax: <digits>. 
1. Wake up
2. Look at a mirror
3. Shower

// Unordered lists
// Syntax: -<text>
- Atemoya
- Avocado
- Alupag

// You can mix them and apply descendents. Each child indent level is 2 spaces.
1. This is a dummy text
  - I'm the dummy's child
  - Me too!
    1. Look! I'm a grandchild
    2. Me too, Brother!

- I'm a parent like dummy there.
  1. A number child
    - I'm number's child
  2. Number's lost sibling 

Custom

Underline

Apply underline to a string of text.

// Syntax: __<text>__
This is __a dummy__ text.

// Can be escaped using `\` to prevent parsing.
This is \__a dummy\__ text.

Named Quotes

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!

Inline Spoiler

Blur out some text.

// Syntax: ||<text>||
This is ||a dummy|| text.

// Can be escaped using `\` to prevent parsing.
This is \||a dummy\|| text.

Spoiler

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.
:::

Alignment

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.
<<<

Color

Apply hexidecimal color to text.

// Syntax: 
// %<#six-digit hexidecimal color code>% <text> %%

This is %#ff03ff%a dummy%% text.