Wikigit pages are written in Markdown, a way of formatting text by typing a few plain symbols. You don’t have to memorise it — the editor previews your page as you write — but the examples below cover almost everything you’ll reach for. This is the one page where the syntax is shown as code rather than rendered; the rendered versions live on Links and references and Images and media.
# Big heading ## Smaller heading **bold**, *italic*, and `code`. - a bullet - another bullet 1. a numbered item 2. the next one > A quote.
Leave a blank line between paragraphs.
Put a page’s name in double brackets:
See [[Getting started]] for more.
Want different link text? Add it after a bar:
See our [[getting-started|quick start guide]].
A link to a page that doesn’t exist yet shows up red, and clicking it offers to create that page. To link to Wikipedia, put w: in front:
w:
The [[w:Coffee|coffee]] article on Wikipedia.
For any other site, use a normal link:
[Visit the site](https://example.com)

A picture on its own line becomes a centered captioned figure. To float one to the side so the text wraps around it, use the ::image form:
::image
::image[Coffee flowers in bloom]{src=https://example.com/coffee.jpg align=right}
The [...] is the caption. Inside {...}: src= is the image address (required); align= is right, left, center, or none; width= caps the size, like width=320 or width=50%; and upright gives a narrower default for tall pictures. See Images and media for the rendered result.
[...]
{...}
src=
align=
right
left
center
none
width=
width=320
width=50%
upright
Back up a fact with a footnote. Put a marker where the fact is, and the note anywhere on the page:
Coffee is popular worldwide.[^1] [^1]: Source: the coffee almanac, 2024.
The marker becomes a small number and the source collects at the foot of the page. For a formatted citation, use a template:
{{cite|url=https://example.com|title=All About Coffee|author=J. Bean|date=2024}}
Type @ and a contributor’s name — @some-editor — to link to them. It’s the friendly way to credit someone or point to them in a discussion.
@
@some-editor
To pull a page’s content into another (handy for a shared notice), put its name in double braces on its own line:
{{shared/free-and-yours}}
For page-level options like the summary, categories, and notices, see Page settings.