```
% pandoc -f html -t mediawiki
<dl>
<dt>Case 1: Both subsets are non-empty</dt>
<dd>
In this case, …
</dd>
</dl>
^D
; Case 1<nowiki>:</nowiki> Both subsets are non-empty
: In this case, …
```
```
% pandoc -f mediawiki -t html
; term : definition
^D
<dl>
<dt>term</dt>
<dd>
definition
</dd>
</dl>
```