Using Markdown
Viewert's editor supports full Markdown syntax. Write in Markdown and see it rendered as rich text in real time.
Supported Syntax
The editor converts Markdown to rich text as you type. Here's the full list of supported syntax:
# Heading 1
Type "# " followed by your heading text.
## Heading 2
Type "## " for a second-level heading.
### Heading 3
Type "### " for a third-level heading.
**Bold**
Wrap text in double asterisks.
*Italic*
Wrap text in single asterisks.
~~Strikethrough~~
Wrap text in double tildes.
`Code`
Wrap text in backticks for inline code.
> Blockquote
Start a line with "> " for a blockquote.
- List item
Start a line with "- " for a bullet list.
1. Numbered item
Start a line with "1. " for a numbered list.
$math$
Wrap LaTeX in single dollar signs for inline math.
$$math$$
Wrap LaTeX in double dollar signs for block math equations.
Math & Formulas
Vellum supports full LaTeX math syntax. Type $E = mc^2$ for inline math or $$\sum_{i=1}^n x_i$$ for centered display equations. Common examples include fractions (\frac{a}{b}), square roots (\sqrt{x}), Greek letters (\alpha, \beta), and integrals (\int).
Code Blocks
For multi-line code, type three backticks (```) on a new line. The editor will create a code block. You can optionally specify a language after the backticks for syntax highlighting.