Package: markdown
Version: 1.0.2~b8-3
Severity: wishlist
File: /usr/share/doc/markdown/syntax
X-Debugs-Cc: [email protected]

Yes, even if in https://daringfireball.net/projects/markdown/syntax

```

*   Bird

*   Magic

```
will turn into:
```
<ul>
<li><p>Bird</p></li>
<li><p>Magic</p></li>
</ul>
```
however please document somewhere that the only way to get deeper `<p>`s like
```
  <ul>
    <li>
      <p>A</p>
      <ul>
        <li>
          <p>B</p>
        </li>
      </ul>
    </li>
    <li>
      <p>C</p>
      <ul>
        <li>
          <p>D</p>
        </li>
      </ul>
    </li>
  </ul>
```
is to use something like
```
*   A

    *   $

        B

*   C

    *   $

        D


```
(and run through
```
tr -d $|markdown
```
stripping the $ I added here so one can see the trailing blanks needed!

Reply via email to