UnmarkdownDocs

Text Formatting

Inline formatting options for emphasizing, annotating, and styling your text.

Emphasis

Use asterisks or underscores for italic and bold text. Combine them for bold italic.

markdown
*italic* or _italic_
**bold** or __bold__
***bold italic*** or ___bold italic___

Strikethrough

Wrap text in double tildes to apply strikethrough formatting.

markdown
~~This text is struck through~~

Highlights and Marks

Use the ==text== syntax to highlight text with a colored background. This is useful for drawing attention to key terms or phrases.

markdown
This is ==highlighted text== in your document.
Note
Highlight rendering varies by template. Some templates use a yellow background, while others use the template accent color.

Superscript and Subscript

Superscript and subscript are supported using caret and tilde syntax. This is useful for mathematical notation, chemical formulas, and annotations.

markdown
H~2~O (subscript with single tilde)
E = mc^2^ (superscript with carets)
CO~2~ emissions
x^n^ + y^n^ = z^n^
Important
Single tilde ~text~ renders as subscript. Double tilde ~~text~~ renders as strikethrough. These are different features, so be careful with tilde count.

Inline Code

Wrap text in single backticks to display inline code. This applies a monospaced font and a subtle background, useful for referencing variable names, commands, or short code snippets.

markdown
Use the `npm install` command to add dependencies.
The `template_id` parameter accepts any valid template ID.

Footnotes

Add footnotes with a reference marker in the text and a definition at the bottom of the document. Footnotes are rendered as numbered superscripts with links to the definitions.

markdown
Unmarkdown supports GitHub Flavored Markdown[^1] with several extensions[^extensions].

Content continues here as normal.

[^1]: GFM is a superset of CommonMark maintained by GitHub.
[^extensions]: Including math, diagrams, callouts, and more.

Footnote labels can be numbers or text. The rendered output always uses sequential numbers regardless of the label used in the source.

Keyboard Keys

Display keyboard shortcuts with the <kbd> HTML element, which renders as styled key caps.

markdown
Press <kbd>Ctrl</kbd> + <kbd>S</kbd> to save.
Use <kbd>Cmd</kbd> + <kbd>Shift</kbd> + <kbd>P</kbd> to publish.