diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2016-02-07 12:07:24 +0100 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2016-02-07 12:13:19 +0100 |
commit | 47e5a5fd74d1f688e1d5c72ba13cee572693cdf4 (patch) | |
tree | 43e82d8eccec6c50ca849235c6c2414455c93b6c /doc/Makefile | |
parent | c512dbfe5ab554f6563d894d745d6c169da91d97 (diff) |
Enhance xml to rst converter
Fixes a number of issues:
- Headings underliners now have the correct length
- Newline+Tabs in descriptions are replaced by two newlines to make a proper paragraph
- [br] are replaced by two newlines, making a proper paragraph
- Properly parse internal hyperlinks in constants description
- Fix broken internal links due to missing newlines
- Show method header even when it has no description, to have something to reference in hyperlinks
Diffstat (limited to 'doc/Makefile')
-rw-r--r-- | doc/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/Makefile b/doc/Makefile index 286a5162af..d59c77063b 100644 --- a/doc/Makefile +++ b/doc/Makefile @@ -38,7 +38,7 @@ rst: rm -rf $(OUTPUTDIR)/rst mkdir -p $(OUTPUTDIR)/rst pushd $(OUTPUTDIR)/rst - echo "TODO" + python2 $(TOOLSDIR)/makerst.py $(CLASSES) popd textile: |