Conforme apontado por @AlexDupuy nos comentários, listas de definições podem ser usadas para isso.
Isso não é suportado por todos os processadores de descontos, mas está amplamente disponível: Guia de descontos - Listas de definições
Term 1
: definition 1
: definition 2
Term 2
: definition 1
: definition 2
Renderiza 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, o DT
é renderizado em um formato de cabeçalho e cada um DD
é renderizado como texto recuado abaixo dele.
Se você não deseja um título / termo, use um espaço sem interrupção no lugar do termo de definição:
: 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
Você pode ver isso em ação, copiando e colando os exemplos acima neste site: Stack Edit Markdown Editor