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

rendering markdown works except lists #219

Closed
Reissner opened this issue Apr 20, 2020 · 2 comments
Closed

rendering markdown works except lists #219

Reissner opened this issue Apr 20, 2020 · 2 comments
Labels
Behavior follows specs It looks wrong, but that's how it's supposed to work

Comments

@Reissner
Copy link

SUMMARY
rendering markdown works except lists

STEPS TO REPRODUCE

  1. open a md file with content
    normal line
  • first item
  • second item

NOTE: the problem disappears if a blank line is left prior to first item.

OBSERVED RESULT
the - is displayed litteraly

EXPECTED RESULT

there should be an itemization.
Note that the result is ok if there is a blank line preceeding the itemization

SOFTWARE/OS VERSIONS
2.2.4

@Orc
Copy link
Owner

Orc commented Apr 20, 2020

So what you're saying is the markdown fragment

text text text
- One
- Two

Generates

<p>text text text
- One
- Two</p>

And you expect it should generate

<p>text text text</p>
<ul>
<li>One</li>
<li>Two</li>
</ul>

Yes?

kdesysadmin pushed a commit to KDE/kookbook that referenced this issue Jun 11, 2020
@Orc
Copy link
Owner

Orc commented Nov 28, 2020

Revisiting; the reference implementation of markdown requires a blank line before a list, so there's nothing for me to fix here.

@Orc Orc closed this as completed Nov 28, 2020
@Orc Orc added Behavior follows specs It looks wrong, but that's how it's supposed to work feature request and removed feature request labels Nov 28, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Behavior follows specs It looks wrong, but that's how it's supposed to work
Projects
None yet
Development

No branches or pull requests

2 participants