Yorumlarda @AlexDupuy tarafından işaret edildiği gibi, bunun için tanım listeleri kullanılabilir.
Bu, tüm etiketleme işlemcileri tarafından desteklenmez, ancak yaygın olarak kullanılabilir: İşaretleme Kılavuzu - Tanım Listeleri
Term 1
: definition 1
: definition 2
Term 2
: definition 1
: definition 2
(Html) olarak işler:
<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>
Genellikle, DT
başlık benzeri bir biçimde DD
işlenir ve her biri bunun altında girintili metin olarak işlenir.
Bir başlık / terim istemiyorsanız, tanım teriminin yerine ara vermeyen bir boşluk kullanı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
Yukarıdaki örnekleri bu siteye kopyalayarak yapıştırarak bunu görebilirsiniz: Yığın Düzenleme Markdown Editor