Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Odd list tightness #45

Open
hellux opened this issue Feb 8, 2023 · 1 comment
Open

Odd list tightness #45

hellux opened this issue Feb 8, 2023 · 1 comment

Comments

@hellux
Copy link
Contributor

hellux commented Feb 8, 2023

I would guess these should be loose, but they are tight:

- a

-

yields

<ul>
<li>
a
</li>
<li>
</li>
</ul>

instead of

<ul>
<li>
<p>a</p>
</li>
<li>
</li>
</ul>
- a

- - b

yields

<ul>
<li>
a
</li>
<li>
<ul>
<li>
b
</li>
</ul>
</li>
</ul>

instead of

<ul>
<li>
<p>a</p>
</li>
<li>
<ul>
<li>
a
</li>
</ul>
</li>
</ul>
@jgm
Copy link
Owner

jgm commented Feb 8, 2023

Yes, that seems like a bug. djot.lua gives the desired output.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants