Inline Formatting & Functions
Less than 1 minute
Inline Formatting & Functions
You've met markup signals like # and - that shape the structure of a slide. Functions handle the richer pieces β a link with a label, an image with a caption, a superscript exponent. They're how you add detail without leaving the flow of writing.
What a function looks like
A function is an identifier followed by parameters in square brackets:
identifier[parameter1, parameter2]The identifier names what you want; the parameters fill in the details. For the most common needs, the identifier is a single, memorable symbol β these are the short-functions, designed to be fast to type.
The short-functions
| Symbol | What it inserts | Status |
|---|---|---|
&[ ] | An external link (URL) | β Ready |
:[ ] | An internal link to a labelled slide | β Ready |
![ ] | An image | β Ready |
^[ ] | Superscript text | β Ready |
_[ ] | Subscript text | β Ready |
|[ ] | A table (or use the Markdown pipe syntax) | β Ready |
/fn[ ] | A footnote | π Planned |
Note for readers of older examples
Earlier drafts used >[ ] for links. That form is deprecated β use &[ ] for external links and :[ ] for internal ones.
Where to go next
Each short-function has its own page with examples:
- Links β
&[ ]and:[ ] - Images β
![ ] - Code Blocks β fenced code with highlighting
- Superscript β
^[ ] - Subscript β
_[ ] - Tables β pipe syntax with alignment
- References β internal links in depth
- Footnotes β (planned)