summaryrefslogtreecommitdiff
path: root/sphinx/writers/text.py
Commit message (Collapse)AuthorAgeFilesLines
...
* | Add mypy annotationsTakeshi KOMIYA2017-02-101-0/+1
| |
* | Merge branch 'stable'Takeshi KOMIYA2017-01-121-6/+6
|\ \ | |/
| * Fix flake8 violationsTakeshi KOMIYA2017-01-121-6/+6
| |
* | Drop deprecated termsep nodeTakeshi KOMIYA2017-01-051-11/+0
| |
* | Use loggersTakeshi KOMIYA2017-01-021-4/+7
| |
* | Merge branch '1.5-release' into mastershimizukawa2016-12-051-2/+5
|\ \ | |/
| * Emit several warnings that will be deprecated in Sphinx 1.6. There is no way ↵shimizukawa2016-12-041-2/+5
| | | | | | | | to hide the warnings.
* | Add type-check annotations to sphinx.writersTakeshi KOMIYA2016-11-161-20/+228
|/
* Make rendering of multiline signatures better in html.Jakob Lykke Andersen2016-10-201-0/+6
|
* Fix #1797: text builder inserts blank line on topTakeshi KOMIYA2016-08-191-2/+5
|
* Remove `termset` node. It is not used anywhere. Restore `termsep` node and ↵shimizukawa2016-02-141-5/+6
| | | | set as Deprecation. refs #2251
* Now term nodes in a glossary directive are wrapped with termset node to ↵shimizukawa2016-02-141-3/+5
| | | | | | handle multiple term correctly. Fix #2251; Line breaks in .rst files are transferred to .pot files in a wrong way.
* Fix #2060: ``:manpage:`` role uses incorrect style (node)Takeshi KOMIYA2016-01-171-0/+6
| | | | | It should be use bold style to reference man pages in man format. On other formats, it is still represented as emphasis.
* Obligatory copyright update.Georg Brandl2016-01-141-1/+1
|
* Fix #2168: raw directive does not work for text writerTakeshi KOMIYA2015-12-191-1/+3
|
* Fix: ``make text`` will crush if a definition list item has more than 1 ↵shimizukawa2015-07-251-4/+5
| | | | classifiers as: ``term : classifier1 : classifier2``.
* Merge pull request #1866 from pjxiao/feature-1780Takayuki SHIMIZUKAWA2015-07-111-2/+0
|\ | | | | Fix #1780: Text builder outputs "class" and "exception" keywords once
| * Fix #1780: Remove duplicated "class" and "exception" keywords from text builderTakayuki Hirai2015-04-281-2/+0
| |
* | Fix #1793: Add new line before first item of listTakayuki Hirai2015-03-301-0/+3
|/
* writers: pep8 fixesGeorg Brandl2015-03-081-10/+94
|
* Fix generating emphasis nodes without semantic reasonGeorg Brandl2015-02-251-2/+4
| | | | | Roles ``ref``, ``term`` and ``menusel`` now don't generate :durole:`emphasis` nodes anymore. If you want to keep italic style, adapt your stylesheet.
* Merge branch 'stable'Georg Brandl2015-01-031-1/+1
|\
| * all: update copyrightGeorg Brandl2015-01-031-1/+1
| |
| * Now sphinx.ext.autodoc work with python-2.5 again, again.Takayuki Shimizukawa2014-09-261-2/+3
| |
* | Support :numref: in other writerstk0miya2014-10-021-0/+5
| |
* | fix for py3 supportTakayuki Shimizukawa2014-08-301-2/+4
| |
* | Merge with stableTakayuki Shimizukawa2014-08-301-2/+2
|\ \ | |/
| * `make text` generate wrong table when it has empty table cells. Closes #1544Takayuki Shimizukawa2014-08-261-2/+2
| |
* | Add app.set_translator() API to register or override a Docutils translator ↵Takayuki Shimizukawa2014-08-051-1/+2
| | | | | | | | class like :confval:`html_translator_class`.
* | wrap py3 iterators with list() for each places that expect a list object. ↵Takayuki Shimizukawa2014-04-301-1/+1
| | | | | | | | refs #1350.
* | merge with stableGeorg Brandl2014-03-021-0/+3
|\ \ | |/
| * Closes #1370: Ignore "toctree" nodes in text writer, instead of raising.Georg Brandl2014-03-011-0/+3
| |
* | Update copyright year.Georg Brandl2014-03-011-1/+1
|\ \ | |/
| * Update copyright year.Georg Brandl2014-03-011-1/+1
| |
* | Modernize the code now that Python 2.5 is no longer supportedDmitry Shachnev2014-01-191-1/+1
| | | | | | | | | | | | | | | | | | | | | | - Use print function instead of print statement; - Use new exception handling; - Use in operator instead of has_key(); - Do not use tuple arguments in functions; - Other miscellaneous improvements. This is based on output of `futurize --stage1`, with some manual corrections.
* | Closes #1174: Fix smart quotes being applied inside roles like ↵Georg Brandl2014-01-121-0/+5
|/ | | | :rst:role:`program` or :rst:role:`makevar`.
* Closes #901: Emit a warning when using docutils' new "math" markup without a ↵Georg Brandl2014-01-111-0/+10
| | | | Sphinx math extension active.
* Remove handlers for the "refcount" node.Georg Brandl2013-10-121-5/+0
|
* Avoid some pyflakes false positives.Georg Brandl2013-09-161-1/+2
|
* text writer: docstring proofreadingGeorg Brandl2013-03-291-2/+2
|
* versionlabels are handled entirely in the versionmodified directive, instead ↵Nozomu Kaneko2013-01-061-5/+1
| | | | | | of the writers. Now it returns a versionmodified node with the versionlabel already inserted.
* Fix: text builder breach max-witdh specificatoin if paragraph have prefixed ↵Takayuki Shimizukawa2013-03-091-4/+9
| | | | text. ex: 'See also:'
* Closes #1108: [text] Correctly number enumerated lists with non-default ↵Jonathan Waltman2013-02-201-1/+1
| | | | start values (based on patch by Ewan Edwards).
* Fix text builder did not respect wide/fullwidth characters for textwrap.Takayuki Shimizukawa2013-02-071-0/+93
|
* Fix text builder did not respect wide/fullwidth charactors for table layout.Takayuki Shimizukawa2013-02-061-2/+4
|
* Fix text builder did not respect wide/fullwidth charactors for title line.Takayuki Shimizukawa2013-02-051-1/+3
|
* Remove duplicate visitor method.Robert Lehmann2013-01-061-5/+0
|
* merge birkenfeld/sphinxRobert Lehmann2013-01-061-0/+5
|\
| * Fix text writer can not handle visit_legend for figure directive contents.Takayuki Shimizukawa2013-01-041-0/+5
| |
* | merge with birkenfeld/sphinxRobert Lehmann2013-01-021-1/+1
|\ \ | |/