sphinx-lint
sphinx-lint copied to clipboard
Check for stylistic and formal issues in .rst and .py files included in the documentation
Hi, First of all, thank you for this great project — we’ve been using sphinx-lint in several projects and it has helped us maintain high-quality rst pages consistently. One thing...
Closes #140
In sphinx you can make a numbered list by using ``` 1. first item 2. second item ``` or by ``` #. first item #. second item ``` A rule...
sphinx-lint does not detect `missing-underscore-after-hyperlink` when the link contains a newline: ``` `Link text ` ``` This seems to be because the `check_missing_underscore_after_hyperlink` function checks each line; it should (like...