bgamari / trac-to-remarkup

Moved to GitLab: https://gitlab.haskell.org/bgamari/trac-to-remarkup
https://gitlab.haskell.org
BSD 3-Clause "New" or "Revised" License
2 stars 0 forks source link

Parse of alphabetical list failed #34

Closed bgamari closed 5 years ago

bgamari commented 5 years ago

Not sure whether it's worth fixing this one.

https://gitlab.staging.haskell.org/ghc/ghc/issues/13615#note_285809

https://ghc.haskell.org/trac/ghc/ticket/13615#comment:12

tdammers commented 5 years ago

The parser currently only supports *-delimited bullet lists; we could add numbered and lettered lists, and render both as numbered lists (since Markdown only supports numbered lists AFAIK), but it would involve adding more stuff to the parser.

Unless more cases of numbered / lettered lists arise, I'd say we put this one on the "fix manually" list.

tdammers commented 5 years ago

OK, so adding numbered lists turned out to be straightforward; I had to fix the list parser anyway, so I included numbered lists.

Not sure if we should cater for letter lists and other styles as well though.

bgamari commented 5 years ago

Alright, I think this is as good as this will get. Let's close this.