curiouslychase / _goorgeous

[DEPRECATED] A go org syntax parser to html
MIT License
160 stars 28 forks source link

Not parsing nested lists correctly #75

Closed jrmiller82 closed 5 years ago

jrmiller82 commented 6 years ago

See issue in downstream:

https://github.com/go-gitea/gitea/issues/3122

- bullet 1
  - sub bullet

Should render something like:

<ul>
  <li>bullet 1</li>
  <ul>
    <li>sub bullet</li>
  </ul>
</ul>
NateScarlet commented 5 years ago

Should be duplicated with #3

curiouslychase commented 5 years ago

Sorry for the late reply, but this will be fixed in the release I'm currently working on. Here's a preview of the snapshot generated for deeply nested lists.

curiouslychase commented 5 years ago

I had a branch I was getting ready to PR into Hugo this week that fixed this, but it looks like @niklasfasching PR'ed a new org parser, so I'm closing all the issues here, deprecating and archiving goorgeous.