Como señaló @AlexDupuy en los comentarios, se pueden usar listas de definiciones para esto.
Esto no es compatible con todos los procesadores de rebajas, pero está ampliamente disponible: Guía de rebajas - Listas de definiciones
Term 1
: definition 1
: definition 2
Term 2
: definition 1
: definition 2
Representa como (html):
<dl>
<dt>Term 1</dt>
<dd>definition 1</dd>
<dd>definition 2</dd>
<dt>Term 2</dt>
<dd>definition 1</dd>
<dd>definition 2</dd>
</dl>
Normalmente, DT
se representa en un formato de encabezado, y cada uno DD
se representa como texto sangrado debajo de este.
Si no desea un encabezado / término, simplemente use un espacio que no se rompa en lugar del término de definición:
: This is the text that I want indented. All text on the same line as the preceding colon will be included in this definition.
: If you include a second definition you'll get a new line; potentially separated by a space. <br />Some inline HTML may be supported within this too, allowing you to create new lines without spaces.
: Support for other markdown syntax varies; e.g. we can add a bullet list, but each one's wrapped in a separate definition term, so the spacing may be out.
: - item 1
: - item 2
: - item 3
Puede ver esto en acción copiando y pegando los ejemplos anteriores en este sitio: Editor de rebajas de edición de pila