summaryrefslogtreecommitdiff
path: root/doc
Commit message (Collapse)AuthorAgeFilesLines
* Fix markup issue in our docsjfbu2019-11-261-1/+1
|
* Fix typo in docsjfbu2019-11-261-1/+1
|
* Add latexpdf support for Greek as main language (via xelatex use)jfbu2019-10-012-1/+16
| | | | Closes: #6710
* Update our docs for imgmath_latex (refs: #6610)jfbu2019-08-031-0/+8
|
* Fix version changed info in our document for imgmathjfbu2019-08-011-1/+1
|
* Reorganize documentation of the imgmath configuration variablesjfbu2019-08-011-48/+57
|
* More robust code for getting saved "depth" of svg inline math snippetjfbu2019-08-011-13/+9
|
* Make imgmath_use_preview work also for svg outputjfbu2019-08-011-2/+3
|
* docs: Update FAQ for github pagesTakeshi KOMIYA2019-07-071-4/+3
|
* doc: Update document for :annotation: option (refs: #6495)Takeshi KOMIYA2019-06-291-7/+9
|
* Close #5602: apidoc: Add ``--templatedir`` optionTakeshi KOMIYA2019-06-161-0/+24
|
* Merge pull request #6467 from tk0miya/refactor_mathTakeshi KOMIYA2019-06-151-0/+10
|\ | | | | refactor: Add data accessors to MathDomain
| * refactor: Add data accessors to MathDomainTakeshi KOMIYA2019-06-151-0/+10
| |
* | Merge pull request #6433 from tk0miya/refactor_todo2Takeshi KOMIYA2019-06-151-0/+20
|\ \ | | | | | | refactor todo extension with Domain
| * \ Merge branch '2.0' into refactor_todo2Takeshi KOMIYA2019-06-151-0/+16
| |\ \ | | |/
| * | refactor: todo: Add TodoListProcessor to expand todolist nodesTakeshi KOMIYA2019-06-031-0/+5
| | |
| * | refactor: todo: Add TodoDomain to collect todo nodesTakeshi KOMIYA2019-06-021-0/+15
| | |
* | | Merge pull request #6430 from tk0miya/5124_graphviz_layout_optionTakeshi KOMIYA2019-06-151-5/+15
|\ \ \ | |_|/ |/| | Close #5124: graphviz: :graphviz_dot: option is renamed to :layout:
| * | Close #5124: graphviz: :graphviz_dot: option is renamed to :layout:Takeshi KOMIYA2019-06-021-5/+15
| |/
* | autosummary: deprecate info and warn arguments for generate_autosummary_docs()Takeshi KOMIYA2019-06-101-0/+16
|/
* docs: Use directive:option in extensions/graphvizTakeshi KOMIYA2019-06-021-15/+92
|
* Merge branch '2.0.2' into 2.0Takeshi KOMIYA2019-06-023-21/+67
|\
| * Fix a dvisvgm link in docs and add preview-latex linkjfbu2019-04-171-2/+4
| |
| * Improve documentation formatting for Sphinx LaTeX environmentsjfbu2019-04-121-9/+20
| |
| * Better format documentation of \sphinx... LaTeX macrosjfbu2019-04-121-10/+32
| |
| * Documentation of smartquotes_excludes (and smartquotes_action)jfbu2019-04-121-0/+11
| |
* | Merge pull request #6416 from tk0miya/2310_force_highlightingTakeshi KOMIYA2019-06-011-0/+17
|\ \ | | | | | | Add :force: option to code directives
| * | Add :force: option to code directivesTakeshi KOMIYA2019-06-011-0/+17
| | |
* | | doc: Change wording for contents directive (refs: #6265)Takeshi KOMIYA2019-06-011-2/+2
|/ /
* | Merge pull request #6420 from tk0miya/6405_wrong_linkTakeshi KOMIYA2019-06-011-2/+2
|\ \ | | | | | | Fix #6405: docs: wrong link
| * | Fix #6405: docs: wrong linkTakeshi KOMIYA2019-06-011-2/+2
| | |
* | | Merge pull request #6397 from tk0miya/6361_autodoc_typehintsTakeshi KOMIYA2019-06-011-0/+10
|\ \ \ | |/ / |/| | Close #6361: autodoc: Add autodoc_typehints to suppress typehints from signature
| * | Close #6361: autodoc: Add autodoc_typehints to suppress typehints from signatureTakeshi KOMIYA2019-05-261-0/+10
| | |
* | | doc: Fold lines by 80 columnsTakeshi KOMIYA2019-05-307-14/+16
| | |
* | | doclinter: restrict by 90 columnsTakeshi KOMIYA2019-05-2614-56/+69
|/ /
* | Merge pull request #6392 from tk0miya/6348_hieroglyphTakeshi KOMIYA2019-05-231-3/+0
|\ \ | | | | | | doc: Remove hieroglyph temporarily (refs: #6348)
| * | doc: Remove hieroglyph temporarily (refs: #6348)Takeshi KOMIYA2019-05-231-3/+0
| | |
* | | docs: Update URL of writethedocsTakeshi KOMIYA2019-05-211-2/+2
|/ /
* | doc: Update with rst:directive:option directiveTakeshi KOMIYA2019-05-201-26/+62
| |
* | Merge pull request #6365 from tk0miya/refactor_py_domainTakeshi KOMIYA2019-05-191-4/+5
|\ \ | | | | | | Add :abstractmethod: option to py:method directive and support abstractmethod by autodoc
| * | Add :abstractmethod: option to py:method directive (refs: #6138)Takeshi KOMIYA2019-05-151-4/+5
| | |
* | | Merge branch '2.0' into masterTakeshi KOMIYA2019-05-171-19/+24
|\ \ \
| * | | autosectionlabel: add type for suppress_warningsGibson Fahnestock2019-05-151-19/+24
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This sets the subtype to the filename, which means that you can suppress warnings for individual paths. For example for the following warning: ``` path/to/file.rst:5547: WARNING: duplicate label path/to/file:label, other instance in /path/to/file.rst ``` You would add this to `config.py` to suppress all warnings: ```python extensions = [ 'sphinx.ext.autosectionlabel', ] autosectionlabel_prefix_document = True suppress_warnings = [ 'autosectionlabel.*', ] ``` To suppress warnings for the individual file path you would do: ```python suppress_warnings = [ 'autosectionlabel.path/to/file', ] ``` Fixes: https://github.com/sphinx-doc/sphinx/issues/6371
* | | | Support coverage_ignore_pyobjects in the coverage builderAdrián Chaves2019-05-151-0/+12
|/ / /
* | | Merge pull request #6369 from tk0miya/refactor_apidoc_module_joinTakeshi KOMIYA2019-05-151-0/+5
|\ \ \ | | | | | | | | refactor: apidoc: Replace makename() by module_join()
| * | | refactor: apidoc: Replace makename() by module_join()Takeshi KOMIYA2019-05-151-0/+5
| |/ /
* | | Fix modname of HTMLHelpBuilderTakeshi KOMIYA2019-05-151-1/+1
|/ /
* | Add %O% option to make.bat templates; update docsBrian Skinn2019-05-131-1/+2
| | | | | | | | | | | | | | | | | | | | The make.bat_t and make.bat.new_t templates now pass %O% as well as %SPHINXOPTS% to `sphinx-build`, in parity with Makefile.new_t. The sphinx-build documentation page was updated to explicitly note $(O) and %O% as shortcut variables. Closes #6323, per the comment thread discussion.
* | Merge pull request #6356 from tk0miya/foldlinesTakeshi KOMIYA2019-05-135-16/+22
|\ \ | | | | | | Add utils/doclinter.py; a documenter linter for Sphinx
| * | docs: Fold lines by 80 charsTakeshi KOMIYA2019-05-125-16/+22
| | |