khoulihan / gopher-render

Render HTML and Markdown to plain text or gophermap files.
MIT License
4 stars 0 forks source link

List support #3

Closed khoulihan closed 4 years ago

khoulihan commented 4 years ago

ul and ol tags and their children need to be supported.

khoulihan commented 4 years ago

I have implemented these, but there are a few issues still. In order to properly nest lists, a renderer directive for 'li > ol > li:first-child, li > ul > li:first-child' is required in order to add a margin to the first nested list item. I believe this is because the parent ListItemRenderer is removing the margin added by the nested list.