This page is part of a static HTML representation of the TiddlyWiki at https://tiddlywiki.com/

Description Lists in WikiText

29th December 2025 at 11:09am

HTML description lists (AKA definition lists) are created with this syntax:

; Term being described
: Description / Definition of that term
; Another term
: Another description / definition

That renders as:

Term being described
Description / Definition of that term
Another term
Another description / definition

... and the underlying HTML is:

<dl><dt>Term being described</dt><dd>Description / Definition of that term</dd><dt>Another term</dt><dd>Another description / definition</dd></dl>