Essential Guide

Markdown in Cards

Decklio supports Markdown syntax in text cards, including LaTeX mathematical expressions, allowing you to create beautifully formatted content with headers, lists, formulas, and more.

Text Formatting

Editor

**Bold** *Italic* ~strikethrough~ `code`

Preview

Links

Editor

[Link to Google](https://www.google.com)

Preview

Headers

Editor

Header 1

Header 2

Header 3

Preview

Lists

Unordered Lists:

Editor
  • Item 1
  • Item 2
  • Item 3
Preview

Ordered Lists:

Editor
  1. First item
  2. Second item
  3. Third item
Preview

Code Blocks

Editor

```javascript function hello() { console.log("Hello, World!"); } ```

Preview

Blockquotes

Editor

This is a blockquote

Preview

Tables

Editor

| Column 1 | Column 2 | Column 3 | |----------|----------|----------| | Data 1 | Data 2 | Data 3 | | Data 4 | Data 5 | Data 6 |

Preview

Mathematical Formulas (LaTeX)

Text cards now support LaTeX syntax for mathematical expressions. Use single dollar signs for inline math and double dollar signs for display math.

Inline Math:

Editor

The quadratic formula is $x = \frac{-b \pm \sqrt{b^2-4ac}}{2a}$ and it solves quadratic equations.

Preview

Display Math:

Editor

Euler's identity: $$e^{i\pi} + 1 = 0$$ This is one of the most beautiful equations in mathematics.

Preview

Mixed Content:

Editor

# Physics Formulas **Newton's Second Law:** The force $F$ acting on an object is equal to its mass $m$ times its acceleration $a$: $$F = ma$$

Preview

Did this answer your question?