summaryrefslogtreecommitdiff
path: root/sphinx/addnodes.py
Commit message (Collapse)AuthorAgeFilesLines
...
| * mypy: Enable disallow_incomplete_defs flag for type checkingTakeshi KOMIYA2019-12-301-1/+3
| |
* | Merge branch '2.0'Takeshi KOMIYA2019-12-251-22/+12
|\ \ | |/
| * Migrate to py3 style type annotation: sphinx.cmdlineTakeshi KOMIYA2019-12-251-22/+12
| |
* | Merge branch '2.0'Takeshi KOMIYA2019-11-171-3/+21
|\ \ | |/
| * Close #4683: i18n: make explicit titles in toctree translatableTakeshi KOMIYA2019-11-011-3/+21
| |
* | Drop features and APIs deprecated in 1.8Takeshi KOMIYA2019-03-301-55/+1
|/
* Merge branch '1.8'Takeshi KOMIYA2019-01-021-1/+1
|\
| * A happy new year!Takeshi KOMIYA2019-01-021-1/+1
| |
* | Merge branch '1.8'jfbu2018-12-281-2/+2
|\ \ | |/ | | | | | | | | | | resolved Conflicts: doc/development/tutorials/todo.rst sphinx/locale/__init__.py sphinx/search/zh.py
| * Fix various spelling typosjfbu2018-12-271-2/+2
| |
* | Remove unnecessary encoding cookie from Python source filesJon Dufresne2018-12-161-1/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | In Python 3, the default encoding of source files is utf-8. The encoding cookie is now unnecessary and redundant so remove it. For more details, see the docs: https://docs.python.org/3/howto/unicode.html#the-string-type > The default encoding for Python source code is UTF-8, so you can > simply include a Unicode character in a string literal ... Includes a fix for the flake8 header checks to stop expecting an encoding cookie.
* | Use Python 3 super() argument-less syntaxJon Dufresne2018-12-151-5/+5
| | | | | | | | | | | | The form is less verbose and more idiomatic for Python 3 only code. https://docs.python.org/3/library/functions.html#super
* | Replace all "unicode" type by "str"Takeshi KOMIYA2018-12-151-8/+7
| |
* | Deprecate abbreviation node (refs: #5720)Takeshi KOMIYA2018-12-151-4/+13
| |
* | Install abbreviation node forcedlyTakeshi KOMIYA2018-12-051-1/+1
| |
* | refactor: Use app.add_node() to register Sphinx own nodesTakeshi KOMIYA2018-12-051-5/+47
| |
* | Fix annotations (minor fixes)Takeshi KOMIYA2018-12-031-0/+1
| |
* | Fix annotations for Directives (Replace N_co with nodes.Node)Takeshi KOMIYA2018-12-011-0/+1
| |
* | Fix annotations for i18nTakeshi KOMIYA2018-12-011-1/+1
| |
* | refactor: Use super() to call methods of superclassTakeshi KOMIYA2018-11-281-4/+4
| |
* | Add sphinx.util.typing:unicode to help mypy-3 migrationTakeshi KOMIYA2018-11-241-0/+1
| |
* | Merge branch '1.8'Takeshi KOMIYA2018-11-011-2/+2
|\ \ | |/
| * Fix #5471: Show appropriate warning for deprecated APIsTakeshi KOMIYA2018-10-171-2/+2
| |
* | Remove unnecessary object from class definitionsJon Dufresne2018-09-111-2/+2
|/ | | | | In Python 3, all classes are new-style classes. The object in the definition is redundant and unnecessary.
* refactor: Move math_reference node to sphinx.builders.latex.nodesTakeshi KOMIYA2018-05-201-5/+0
| | | | | The node is only used in latex builder. So this makes it builder- specific node.
* Add warning to docstring of math nodesTakeshi KOMIYA2018-05-191-0/+9
|
* Enable eq role by defaultTakeshi KOMIYA2018-05-171-0/+5
|
* Enable math_block node rendering by default (without HTML builders)Takeshi KOMIYA2018-05-171-1/+24
|
* Enable math node rendering by default (without HTML builders)Takeshi KOMIYA2018-05-151-0/+25
| | | | | | | | | | | Nowadays, math elements (inline and block level equations) are integrated into reST spec by default. But, in Sphinx, they are not enabled by default. For this reason, users have to enable one of math extensions even if target builder supports math elements directly. This change starts to enable them by default. As a first step, this replaces math node and its structure by docutils based one.
* Revert "Use typing.TYPE_CHECKING for typehints"Takeshi KOMIYA2018-03-131-3/+2
| | | | This reverts commit a073e17537c2aacaac305feadea58d4473ec97f4.
* Use typing.TYPE_CHECKING for typehintsTakeshi KOMIYA2018-02-141-2/+3
|
* A happy new year!Takeshi KOMIYA2018-01-011-1/+1
|
* Fix :manpage: role is smarty-quoted (refs: #3286)Takeshi KOMIYA2017-07-011-1/+1
|
* Refactor smart-quotes detectorTakeshi KOMIYA2017-06-241-9/+9
|
* fixTakeshi KOMIYA2017-06-181-2/+7
|
* Merge branch 'stable'Takeshi KOMIYA2017-03-261-1/+1
|\
| * Year++Takeshi KOMIYA2017-03-261-1/+1
| |
* | Upgrade to mypy-0.5Takeshi KOMIYA2017-03-031-1/+1
| |
* | Fix mypy violationsTakeshi KOMIYA2017-02-081-0/+12
| |
* | Drop deprecated termsep nodeTakeshi KOMIYA2017-01-051-16/+0
|/
* Fix #3253: In Py2 environment, building another locale with a non-captioned ↵shimizukawa2016-12-171-1/+1
| | | | toctree produces `None` captions
* Emit several warnings that will be deprecated in Sphinx 1.6. There is no way ↵shimizukawa2016-12-041-3/+4
| | | | to hide the warnings.
* Merge branch 'stable' into 1.5-releaseTakeshi KOMIYA2016-11-161-0/+2
|\
| * insert blank line(s) to adapt latest flake8/pycodestyleshimizukawa2016-11-161-0/+2
| |
* | Make rendering of multiline signatures better in html.Jakob Lykke Andersen2016-10-201-1/+13
| |
* | Use new style python classesTakeshi KOMIYA2016-09-101-1/+1
| |
* | Fix #1734: Could not translate the caption of toctree directiveTakeshi KOMIYA2016-09-011-1/+45
|/
* Fix docstring; wrong directive nameTakeshi KOMIYA2016-05-271-1/+1
|
* add docstring to write more detail of 'key' of index nodeshimizukawa2016-05-251-0/+4
|
* Fix docstring; structure of index node has changed since Sphinx-1.4Takeshi KOMIYA2016-05-241-2/+2
|