Markdown

Markdown is a markup language for creating formatted text. With the purpose of creating detailed descriptions, this language is supported for deck descriptions.

Basic syntax

The following basic syntax is supported:

Element Markdown syntax HTML Effect
Heading # title1
## title2
### title3
<h1>title1</h1>
<h2>title2</h2>
<h3>title3</h3>
Bold **bold text** <strong>bold text</strong> bold text
Italic *italicized text* <em>italicized text</em> italicized text
Blockquote > quote text <blockquote>quote text</blockquote>
Ordered list 1. First
2. Second
<ol>
    <li>First</li>
    <li>Second</li>
</ol>
  1. First
  2. Second
Unordered list - First
- Second
<ul>
    <li>First</li>
    <li>Second</li>
</ul>
  • First
  • Second
Code `inline code` <code>inline code</code> inline code
Horizontal rule --- <hr>
Mark ==marked text== <mark>marked text</mark> marked text
Link [title](https://example.com) <a href="https://example.com">title</a> title
Image ![alternative text](https://example.com/image.png) <a href="https://example.com/image.png">alternative text</a> alternative text

Please note that:

Altered syntax

In order to make the deck explanation's a bit more visual and linked to the Altered TCG, the following rules have also been included:

Element Markdown syntax Effect Notes
Card reference [[ALT_CORE_B_AX_01_C]]

Sierra & Oddball

The reference will be replaced with the card's name translated to the site's settings.
It's a link that opens the card's detail page.
When the mouse is on top of the name, the card displayed on the page will change.
Mana icons [[x]] [[1]] ... [[9]]

...

All the mana numbers in between are included as well.
Region icons [[forest]] [[mountain]] [[water]]

Trigger icons [[etb]] [[hand]] [[reserve]]

Activate icons [[discard]] [[exhaust]]