sphinx-markdown-builder
sphinx-markdown-builder copied to clipboard
Lists have too much blank space
This .rst:
Simple Lists
------------
- Item 1
- Item 2
- Item 3
is output as:
# Simple Lists
* Item 1
* Item 2
* Item 3
When rendered, this puts too much space between the list items.
It renders on GitHub like this:
If the markdown instead were this:
# Simple Lists
* Item 1
* Item 2
* Item 3
then it would render as:
This is fixed by #57. Can we get a new release?
@nedbat I created a new plugin that addresses most issues with this implementation. It also addresses the excessive line breaks. You can try it: https://github.com/liran-funaro/sphinx-markdown-builder I haven't released an official version yet, so you'll have to install it manually:
pip3 uninstall sphinx-markdown-builder
pip3 install git+https://github.com/liran-funaro/sphinx-markdown-builder@main
@liran-funaro I am happy to forward people to your fork if you don't mind giving me some credit in your README.md and making a pull request in my README.md file. I no longer use this project, so I lack the motivation to properly maintain it.
DISCONTINUED: This project is no longer maintained. The active version of this project is now being maintained at liran-funaro/sphinx-markdown-builder.