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

Description Lists in WikiText

29 décembre 2025 à 11h09

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

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

Affichera ceci :

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

Code HTML correspondant :

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