Markdown Syntax Help

Write formatted notes with supported Markdown, mana icons, and card references.

Markdown Syntax


Use Markdown in deck descriptions and private deck notes to format text, show mana icons, and reference cards.

Quick Examples

Write

Cast [[Llanowar Elves]] for {G}.

Result

Cast Llanowar Elves for G.

Mana Icons

Wrap a supported mana symbol in braces. Symbols are case-insensitive, so {g} and {G} both work.

Colorless and generic

  • {0}0
  • {1}1
  • {2}2
  • {3}3
  • {4}4
  • {5}5
  • {6}6
  • {7}7
  • {8}8
  • {9}9
  • {10}10
  • {11}11
  • {12}12
  • {13}13
  • {14}14
  • {15}15
  • {16}16
  • {17}17
  • {18}18
  • {19}19
  • {20}20
  • {100}100-1100-2
  • {1000000}1000000-11000000-21000000-31000000-4
  • {X}X
  • {Y}Y
  • {Z}Z
  • {C}C

Colors

  • {W}W
  • {U}U
  • {B}B
  • {R}R
  • {G}G

Hybrid

  • {W/U}WU
  • {W/B}WB
  • {U/B}UB
  • {U/R}UR
  • {B/R}BR
  • {B/G}BG
  • {R/G}RG
  • {R/W}RW
  • {G/W}GW
  • {G/U}GU

Two-brid

  • {2/W}2W
  • {2/U}2U
  • {2/B}2B
  • {2/R}2R
  • {2/G}2G

Phyrexian

  • {W/P}WP
  • {U/P}UP
  • {B/P}BP
  • {R/P}RP
  • {G/P}GP
  • {W/U/P}WUP
  • {W/B/P}WBP
  • {U/B/P}UBP
  • {U/R/P}URP
  • {B/R/P}BRP
  • {B/G/P}BGP
  • {R/G/P}RGP
  • {R/W/P}RWP
  • {G/W/P}GWP
  • {G/U/P}GUP

Actions and counters

  • {T}T
  • {Q}Q
  • {E}E
  • {S}S
  • {PW}PW

Special

  • {A}A
  • {CHAOS}CHAOS
  • {H}H
  • {HALF}HALF
  • {HR}HR
  • {HW}HW
  • {INFINITY}INFINITY
  • {∞}∞
  • {M}M
  • {P}P
  • {TK}TK
  • {CB}CB
  • {CG}CG
  • {CR}CR
  • {CU}CU
  • {CW}CW

Card References

Wrap a card name in double square brackets. Resolved references render as clickable card names with the same tooltip used in deck notes.

Write

- Lowercase canonical name: [[lightning bolt]]
- Normal canonical name: [[Sol Ring]]
- Front-face name: [[Commit]]
- Full split or double-faced name: [[Commit // Memory]]
- Flavor-name alias: [[Hawkins National Laboratory]]
- Printed-name alias: [[Doric, Nature's Warden]]

Result

  • Lowercase canonical name: lightning bolt
  • Normal canonical name: Sol Ring
  • Front-face name: Commit
  • Full split or double-faced name: Commit // Memory
  • Flavor-name alias: Hawkins National Laboratory
  • Printed-name alias: Doric, Nature's Warden

How card references are matched

  • Matching is case-insensitive.
  • Canonical card names and front-face names are checked first.
  • Printed names, face printed names, flavor names, and face flavor names are also supported.
  • Canonical matches win before printed-name or flavor-name aliases.
  • Side-B-only face names do not resolve in Markdown card references.
  • Art-series, outdated, and non-card records are not used.
  • There is no syntax for forcing a specific printing.
  • Card references do not resolve inside links or inline code.

Highlight Legend

Use highlight color markers to build a legend for your deck. Type {highlight:yellow} to insert a small yellow square, then explain what that highlight color means.

Write

Highlight legend:
{highlight:yellow} Combo pieces
{highlight:blue} Interaction
{highlight:green} Ramp

Result

Highlight legend:
Combo pieces
Interaction
Ramp

  • {highlight:red}
  • {highlight:yellow}
  • {highlight:blue}
  • {highlight:green}
  • {highlight:purple}

Markdown Basics

FeatureSyntaxNotes
Heading# HeadingUse one to six # characters.
Bold**important text**Makes text bold.
Italic*emphasized text*Makes text italic.
Link[label](https://example.com)Also supports internal paths, anchors, and mailto links.
Inline code`exact text`Card references and mana icons do not render inside code.
Quote> Keep this handCreates a blockquote.
List- Ramp spellUse - or * for bullets, or 1. for ordered lists.
Line breakFirst line Second linePlain line breaks are preserved.

Not Supported

  • Raw HTML
  • Images
  • Tables
  • Task lists
  • Strikethrough
  • Fenced code blocks as rich code blocks