Improve descriptive list org rendering

- indent to correct lvl
  - term ::
            |<- indent up to here
    |<- not here
This commit is contained in:
Niklas Fasching 2018-12-17 15:17:57 +01:00
parent 652290b857
commit c6854a40e1
5 changed files with 47 additions and 18 deletions

View file

@ -98,19 +98,32 @@ descriptive lists
<dt>
term<dd>
<p>
description
details
continued details
</p>
<dd>
<dt>
?<dd>
<p>
without term
details without a term
</p>
<dd>
<dt>
term<dd>
<p>
description
details on a new line
</p>
<dd>
<dt>
term<dd>
<p>
details on a new line (with an empty line in between)
<strong>continued</strong>
</p>
<div class="highlight">
<pre>
echo &#34;Hello World!&#34;
</pre>
</div>
<dd>
</dl>

View file

@ -24,8 +24,15 @@
descriptive lists
- term :: description
- without term
- term :: details
continued details
- details without a term
- term ::
description
details on a new line
- term ::
details on a new line (with an empty line in between)
*continued*
#+BEGIN_SRC bash
echo "Hello World!"
#+END_SRC