Commit Graph

1752 Commits

Author SHA1 Message Date
Takeshi KOMIYA
f2c93b3175 Remove deprecated feature: epub2 builder 2017-04-27 21:49:19 +09:00
Takeshi KOMIYA
a252954ea3 Fix #3638: Allow to change a label of reference to equation 2017-04-27 21:47:20 +09:00
Takeshi KOMIYA
8462d4bcda doc: Update 2017-04-27 21:24:33 +09:00
Aaron Carlisle
458d1487b2 From Review: Fix typos 2017-04-26 12:59:49 -04:00
Aaron Carlisle
f92523751e Docs: Add seealso message to config page leading to api docs
While hanging around IRC in both #sphinx-doc and #readthedocs
I have found that a lot of people do not know about these options
even though a lot of theme are pretty common. For example,
adding a simple theme overide, most people will edit layout.html
instead of Sphinx.add_stylesheet.
2017-04-26 11:53:08 -04:00
Mark Hillebrand
a7c8795d07 doc/invocation.rst: document missing options for sphinx-apidoc 2017-04-26 16:17:11 +02:00
Dmitry Shachnev
9236beb9ee Deprecate the html_use_smartypants option 2017-04-25 14:17:30 +03:00
Takeshi KOMIYA
c50321d3ca Merge branch 'master' into drop_websupport 2017-04-23 19:18:01 +09:00
Takeshi KOMIYA
5da74f463b Merge pull request #3649 from tk0miya/deprecate_sphinx_theme_entry_point
Fix #3628: Rename sphinx_themes entry point to sphinx.html_themes
2017-04-23 16:40:02 +09:00
Takeshi KOMIYA
55818b7419 Update docs 2017-04-23 16:03:46 +09:00
Takeshi KOMIYA
ca618b2998 Update docs 2017-04-22 19:04:00 +09:00
Takeshi KOMIYA
621a4e6f61 Fix #3628: Rename sphinx_themes entry point to sphinx.html_themes 2017-04-22 14:59:10 +09:00
Takeshi KOMIYA
2b9b4f92a5 Add image_converter_args confval 2017-04-22 13:29:17 +09:00
Takeshi KOMIYA
c525723807 Add sphinx.ext.imgconverter 2017-04-22 13:29:16 +09:00
Takeshi KOMIYA
241c0db7bc Merge branch 'master' into support_remote_images 2017-04-22 09:45:05 +09:00
Yoshiki Shibukawa
fb48f5a921 Merge pull request #3505 from shibukawa/feature/refactoring_epub_builder
Refactoring EPUB builders: split common codes from EPUB2 builder
2017-04-21 00:25:16 +09:00
Takeshi KOMIYA
f21ce2f03f Fix markup 2017-04-20 02:02:27 +09:00
Yoshiki Shibukawa
7bbf749bd1 Refactoring EPUB builders: split common codes from EPUB2 builder 2017-04-20 00:48:00 +09:00
Takeshi KOMIYA
806dff0e94 Merge branch 'master' into support_remote_images 2017-04-19 21:45:24 +09:00
shimizukawa
de2cd652ab update CHANGES refs #2961 2017-04-19 16:28:56 +09:00
Takeshi KOMIYA
ebdec70dfc Support images in Data URI on non-HTML builders 2017-04-19 01:40:49 +09:00
Takeshi KOMIYA
a5d77a8f06 Drop warning for nonlocal image URI 2017-04-19 01:40:17 +09:00
Robin Jarry
ececc4dcfe ext: enhance autodoc_mock_imports
The autodoc_mock_imports option requires to explicitly declare *every*
external module and sub-module that are imported by the documented code.
This is not practical as the list can become very large and must be
maintained as the code changes.

Also, the mocking is minimal which causes errors when compiling the
docs. For example, if you declare:

    autodoc_mock_imports = ['django.template']

And try to document a module:

    .. automodule:: my.lib.util

Which contains this code:

    from django.template import Library
    register = Library()

The following error occurs:

    File ".../my/lib/util.py" line 2
        register = Library()
    TypeError: 'object' object is not callable

Other similar errors can occur such as "TypeError: 'object' object has
no len".

To address these limitations, only require to declare the top-level
module that should be mocked:

    autodoc_mock_imports = ['django']

Will mock "django" but also any sub-module: "django.template",
"django.contrib", etc.

Also, make the mocked modules yield more complete dummy objects to avoid
these TypeError problems.

Behind the scenes, it uses the python import hooks mechanism specified
in PEP 302.

Signed-off-by: Robin Jarry <robin@jarry.cc>
2017-04-18 17:08:17 +02:00
Takeshi KOMIYA
618ef6492c Merge pull request #1767 from Jellby/master
Allow setting 'rel' and 'title' attributes for stylesheets.
2017-04-19 00:04:43 +09:00
Takeshi KOMIYA
690f07fa3c Merge pull request #3388 from smheidrich/autosectionlabel_prefix_document1
Added autosectionlabel_prefix_document config option
2017-04-18 01:16:00 +09:00
Takeshi KOMIYA
f6d9c7d1d1 Merge branch 'master' into 3558_emit_warnings_for_unreferenced_footnotes 2017-04-18 01:08:50 +09:00
smheidrich
231976ff14 Added autosectionlabel_prefix_document config option. 2017-04-17 14:51:39 +02:00
Jellby
e59a8028d7 Rewrite and simplify stylesheet handling
Thanks to tk0miya's comment, I learnt one can add stuff to template
blocks, that allows a much simpler stylesheet configuration, considering
that changes at the template level will be more... well, low-level.
Hopefully this is now acceptable.
2017-04-15 17:07:33 +02:00
Jellby
1cfed262d2 Merge remote-tracking branch 'upstream/master'
Conflicts:
	tests/test_build_html.py
2017-04-15 15:54:06 +02:00
Brecht Machiels
3dd256fe7d Do not include the builder class in the entry point
- use the entry point to load the extension module in the usual way
- update the documentation to reflect this change
2017-04-14 11:01:09 +02:00
Brecht Machiels
405ef96d2a Find third-party builders by entry point
A builder is uniquely identified by its name, which can be used as an
entry point in the 'sphinx.builders' entry point group. This obviates
the need to register the builder as an extension.

The built-in builders are still loaded as before. New third-party builders
should provide an entry point in their setup.py:

    entry_points={
        'sphinx.builders': [
            'mybuilder = mypackage.mymodule:MyBuilder',
        ],
    }

Like before, builders should define a setup(app) function in the
'mypackage.module' module to define configuration variables etc. It is
no longer necessary to register the builder using Sphinx.add_builder().

Existing builders can still be loaded the traditional way, by including
their module name in the extensions list in conf.py.
2017-04-10 13:04:41 +02:00
Takeshi KOMIYA
fc41f43a70 Merge branch 'stable' 2017-04-02 19:05:50 +09:00
Takeshi KOMIYA
592b808005 Merge pull request #3585 from eric-wieser/escape-autosummary
BUG: Fix autosummary of members with a trailing underscore
2017-03-29 22:56:32 +09:00
Eric Wieser
804891c4a1 BUG: Fix autosummary of members with a trailing underscore 2017-03-26 12:54:03 +01:00
Takeshi KOMIYA
3e46f52a96 Merge pull request #3475 from agjohnson/domain-js-add-nesting
Add nesting, package directive, and method directive to JavaScript domain
2017-03-26 18:16:04 +09:00
Takeshi KOMIYA
8f9dd64992 Merge branch 'stable' 2017-03-26 11:52:15 +09:00
Takeshi KOMIYA
c57e47e042 Year++ 2017-03-26 11:49:34 +09:00
jfbu
254c04500b Merge branch 'stable' 2017-03-23 11:13:22 +01:00
jfbu
89431bf833 Fix accidental use of `language='ja'` in docs (at 41bb388) 2017-03-23 11:03:38 +01:00
Takeshi KOMIYA
6376e6053c Merge branch 'stable' 2017-03-22 09:49:48 +09:00
jfbu
a0a0e6cab0 Fix typo 2017-03-21 09:23:35 +01:00
jfbu
68ac715565 Update domains.rst 2017-03-21 08:26:11 +01:00
jfbu
41bb38877f Update docs (domains.rst) 2017-03-21 08:24:35 +01:00
Christopher Chang
9af298dcfa Update domains.rst 2017-03-20 15:42:17 -07:00
Christopher Chang
3f2c3790ce fixed a grammatical mistake 2017-03-20 14:13:49 -07:00
Takeshi KOMIYA
01cb3a75c7 Fix #3558: Emit warnings if footnotes and citations are not referenced 2017-03-18 21:03:16 +09:00
Takeshi KOMIYA
aa6dfb8b41 Merge branch 'stable' 2017-03-18 18:25:50 +09:00
jfbu
39bce2f90a Remove documentation of `\sphinxquotedblleft` from next minor release
Indeed, the macros will perhaps be removed already at 1.6, (PR #3562),
hence it is better not to document them at 1.5.4.
2017-03-16 23:01:12 +01:00
Anthony Johnson
3ba60ffd5d Add nesting, module directive, and method directive to JavaScript domain
* Adds nesting to the JavaScript domain, to allow for nesting of elements
* Adds the ``js:module`` directive, which behaves similarly to the Python
  directive
* Adds the ``js:method`` directive, an alias to ``js:function``
* Adds roles for ``js:mod`` and ``js:meth``
* Updates tests to passing cases
* Adds docs for new features
2017-03-15 22:27:48 -07:00
Rob Ruana
b7efbfe615 Fix #3174: [Napoleon] Defers autodoc-skip-member to other extensions if Napoleon doesn't care if the member is skipped 2017-03-14 18:53:27 -07:00
jfbu
bc0682af0e Merge branch 'stable'
Conflicts resolved:
	sphinx/domains/cpp.py
	sphinx/domains/python.py
	sphinx/texinputs/sphinx.sty
	sphinx/util/docfields.py
	sphinx/writers/latex.py
	tests/test_build_latex.py

Also updated:
    sphinx/domains/__init__.py
2017-03-12 13:01:47 +01:00
Takeshi KOMIYA
db6e1db5cb doc: Add warning for only directive (refs: #3539) 2017-03-12 01:47:11 +09:00
Takeshi KOMIYA
dbffb053c9 Merge pull request #3534 from tk0miya/add_post_transform
Add post transform
2017-03-11 09:28:57 +09:00
jfbu
19558c9800 Update latex builder docs (latexmk requirement) 2017-03-10 19:11:06 +01:00
Takeshi KOMIYA
eb5577bb9c Update docs 2017-03-10 16:43:27 +09:00
jfbu
990f51d680 Update latex docs 2017-03-10 08:42:37 +01:00
Takeshi KOMIYA
99ded4c8b1 Add Sphinx.add_post_transform() 2017-03-10 10:49:08 +09:00
Jellby
68cf06a2ce Update version (there's still hope) 2017-03-04 12:14:54 +01:00
Jellby
3ce6168958 Merge remote-tracking branch 'upstream/master'
Conflicts:
	tests/test_build_html.py
2017-03-04 12:03:15 +01:00
Yoshiki Shibukawa
7e178785a7 fix style check warnings 2017-03-03 22:03:16 +09:00
jfbu
fb5dd840f4 Merge branch 'stable' 2017-03-03 09:53:50 +01:00
jfbu
4119439f3a Close #3489: bullet list rendered "opened up" 2017-03-02 14:56:27 +01:00
Yoshiki Shibukawa
0ef9ac54f1 Add experimental HTML5 writer 2017-03-02 09:56:50 +09:00
jfbu
c28e1da763 Update (again) latex docs after PR##3429 2017-03-01 22:26:49 +01:00
jfbu
bc67d4298f Improve latex tables: fix #1574 and other rendering issues
- allow multi-paragraph contents in grid table merged cells
- allow code-blocks in merged cells
- allow generally speaking reST contents allowed in regular
  cells to be also allowed in merged cells, whether multirow,
  multicolumn, or both.

This is made possible by custom LaTeX macros replacing original
``\multicolumn`` and ``\multirow`` (none of the originals allows
verbatim contents as is needed for code-blocks). They are defined in
bundled LaTeX style file sphinxmulticell.sty. The multicolumn merged
cells give much better results with tabulary as it is coerced into
taking them into account in its automatic width algorithm.

This deprecates use of LaTeX packages eqparbox and multirow, which are
not needed anymore.

New config setting ``latex_use_latex_multicolumn`` (default value False,
currently) as custom Sphinx multicolumn is not fully compatible will all
types of custom table col specs which may be inserted via tabularcolumns
directive. It works best with standard ``|`` column separator.

The default tabulary column specifier has been changed from L
(flushleft) to J (justifying). Internally the column type is called T,
so ``r'\newcolumntype{T}{L}'`` in preamble key recovers the former
behaviour. A ``\Y`` column type is defined which admits one decimal
argument in place of the two integers for ``\X``.
2017-03-01 09:41:30 +01:00
Takeshi KOMIYA
a98818bf06 Merge pull request #3476 from stephenfin/feat/sphinx-setuptools-multiple-builders
setuptools: Support multiple builders
2017-03-01 15:30:33 +09:00
Takeshi KOMIYA
0b1178bff7 Merge branch 'stable' 2017-03-01 15:04:28 +09:00
Stephen Finucane
2afa0b6627 setuptools: Support multiple builders
At present, the 'builder' option for the setuptools integration only
supports a single output format, typically HTML, like so:

  [build_sphinx]
  builder = man

There is value in being able to specify multiple format, like so:

  [build_sphinx]
  builder = html man

Make this possible.

Signed-off-by: Stephen Finucane <stephen@that.guru>
2017-02-28 17:30:28 +00:00
Takeshi KOMIYA
98d0be208c Merge branch 'master' into fix/epub_dublincore_validation_error 2017-03-01 00:22:15 +09:00
jfbu
5b5398768c Make `'extraclassoptions' key of latex_elements` public 2017-02-28 12:43:36 +01:00
Yoshiki Shibukawa
229c5cfa3b Add warning messages for required EPUB3 metadata 2017-02-28 19:51:39 +09:00
jfbu
434a32d1c8 Remove unneeded `{}` in LaTeX transition code 2017-02-28 10:00:41 +01:00
jfbu
f282647e17 Update docs and CHANGES after PR#3429 2017-02-27 23:57:37 +01:00
Jean-François B
efc2d06e4f Merge pull request #3429 from jfbu/xelatexfontspecclash
deprecate config setting ``latex_keep_old_macro_names`` at 1.6
2017-02-27 22:31:01 +01:00
Jean-François B
56d446cb42 Merge pull request #3466 from jfbu/lualatexsettings
same default settings for lualatex as for xelatex
2017-02-27 12:19:32 +01:00
jfbu
b6eeb6e13e fix indentation in invocation.rst 2017-02-26 21:52:06 +01:00
jfbu
ff700ae606 again update LaTeX requirements documentation 2017-02-26 13:26:23 +01:00
jfbu
7f1b9c0e5b update docs about LaTeX builder with required TeX install version 2017-02-26 11:45:20 +01:00
jfbu
4aa2318185 Revert "update LaTeX doc about dependencies"
This reverts commit dbf960884d.
2017-02-26 11:34:18 +01:00
Mike Fiedler
a0d39222a7 Update latex.rst
typo & extra word removal

Signed-off-by: Mike Fiedler <miketheman@gmail.com>
2017-02-26 09:00:34 +01:00
Mike Fiedler
b8dd3176b8
Update latex.rst
typo & extra word removal

Signed-off-by: Mike Fiedler <miketheman@gmail.com>
2017-02-25 20:17:37 -05:00
jfbu
40d99445f8 same default settings for lualatex as for xelatex
this requires fontspec sufficiently recent (TeXLive 2013 or later)
2017-02-26 00:13:06 +01:00
jfbu
dbf960884d update LaTeX doc about dependencies 2017-02-25 14:52:26 +01:00
Takeshi KOMIYA
4941148c5d Merge branch 'stable' 2017-02-25 14:47:34 +09:00
Stephen Finucane
29da4f9444 doc: Add guide on setuptool/distutils integration
While this feature is somewhat documented in the API guide, there's
nothing about this option in the main user guide. Given the lack of
blogs and articles talking about this feature, along with the amount of
projects that are only using the same copy-paste '[build_sphinx]'
definition, I imagine this is an issue.

Make the feature a little more accessible by adding a section to the
main user guide that details (a) the fact the feature exists, (b) why
you'd want to use it, and (c) how you can use it.

Signed-off-by: Stephen Finucane <stephen@that.guru>
2017-02-24 13:41:34 -05:00
jfbu
f0df6cff9b clarify description of tabulary (no "rescaling" of contents) 2017-02-24 15:48:00 +01:00
jfbu
3a090886b0 update docs about :confval:latex_keep_old_macro_names 2017-02-18 12:07:44 +01:00
jfbu
43fd43932d deprecate :confval:latex_keep_old_macro_names 2017-02-18 11:55:42 +01:00
jfbu
651827946a Update CHANGES and docs for PR#3413 2017-02-17 23:30:01 +01:00
Jean-François B
a7becf30de Merge branch 'master' into literalincludelines 2017-02-13 19:38:22 +01:00
jfbu
3e6eba7900 Merge branch 'stable' 2017-02-13 19:21:25 +01:00
Martin Drawitsch
c76898f5a0 Fix "documenting" typo in reST primer 2017-02-13 19:15:21 +01:00
Takeshi KOMIYA
ef1f587344 Merge branch 'stable' 2017-02-12 21:52:20 +09:00
jfbu
58ea3caeac Revert "Improve docs about `:lines:̀ vs ̀:start-after:` (refs #3412)"
This reverts commit 839e924808.

Indeed, it is better not to document how to use ``lines`` with
``start-after`` now if this is to be changed at next major release (refs
2017-02-11 12:08:37 +01:00
jfbu
0a4588e7b0 Remove unneeded docs 2017-02-10 17:53:06 +01:00
jfbu
a2338e4838 If `:start-after: is used, make :lines:` relative (close: #3412) 2017-02-10 16:55:28 +01:00
jfbu
839e924808 Improve docs about `:lines:̀ vs ̀:start-after:` (refs #3412) 2017-02-10 14:35:58 +01:00
Takeshi KOMIYA
a5b8553db4 Merge pull request #3407 from cmarqu/patch-1
Fix link to Google Python Style. Small typofixes.
2017-02-10 17:07:47 +09:00
jfbu
d4bd7cba5f add again to `'pxunit'̀ docs ... 2017-02-09 14:45:43 +01:00
jfbu
870ceb992b add missing quotes in docs of pxunit 2017-02-09 14:36:01 +01:00
jfbu
2eef1d0e0d simplify docs of `'pxunit'` removing irrelevant details 2017-02-09 14:29:20 +01:00
jfbu
a9fba76829 latex's `'pxunit''s default written .75bp` for conciseness
It boils down to exact same value (`̀ 49336sp``) as formerly.
2017-02-09 14:13:09 +01:00
jfbu
4cece2dd27 Merge branch 'stable' 2017-02-09 13:57:57 +01:00
jfbu
f2111d8f8a move (latex docs) `'geometry'` to "... don't need to be overridden"
indeed, customization will generally go via the `̀ 'sphinxsetup'`` keys
for margins or can be achieved via use of ``'passoptionstopackages'``.
Thus the key primary use would now be to remove entirely use of
``geometry`` package, which should be rarely needed.
2017-02-09 13:54:31 +01:00
jfbu
c3e2d271f2 Merge branch 'stable' 2017-02-09 13:34:01 +01:00
Takeshi KOMIYA
2968ef3c26 Fix #3402: Allow to suppress "download file not readable" warnings using `suppress_warnings` 2017-02-09 12:55:07 +09:00
Colin Marquardt
c106c2f1f0 Fix link to Google Python Style. Small typofixes. 2017-02-08 11:10:37 +01:00
Takeshi KOMIYA
e785200202 Merge pull request #3403 from jwilk/spelling
Fix typos
2017-02-08 10:27:19 +09:00
Jakub Wilk
a58ebedffd Fix typos 2017-02-07 20:14:47 +01:00
jfbu
6ae8f6ba18 logging module docs 2017-02-07 20:06:28 +01:00
Jean-François B
6f3759dbab Merge branch 'stable' into japanesetextlayout 2017-02-06 14:48:38 +01:00
jfbu
64475a8d7d shorten and link latex docs 2017-02-06 14:24:19 +01:00
jfbu
101af91b80 more precise latex docs 2017-02-06 13:55:25 +01:00
jfbu
c240a90f18 improve the index appearance in Sphinx's own PDF documentation 2017-02-05 23:20:30 +01:00
jfbu
80e39e4031 Update docs about latex's `'releasename'` 2017-02-05 23:13:17 +01:00
jfbu
451115f2d1 no need to pass truedimen as class option, package option is enough 2017-02-05 20:07:41 +01:00
jfbu
9c6a071572 Fix #3356 and #3394 (latex) text layout of Japanese documents
- make text width integer multiple of zenkaku width

- fix incompatibility of ``geometry`` package with ``jsbook`` LaTeX
  class (``'manual'`` docclass)

- fix issue with shortened text area height in ``'manual'`` docclass
2017-02-05 17:25:50 +01:00
adrian5
680030b568 Update conf.py.txt
I'm not entirely sure what this line is trying to say, but is needs rewriting. Modify my commit, if necessary.
2017-02-03 16:30:26 +01:00
Timotheus Kampik
681139ee0f document markdown support: work in review comments #2303 #825 2017-02-02 14:42:48 +09:00
Timotheus Kampik
82d608ccaf document markdown support #2303 #825 2017-02-02 14:42:42 +09:00
Takeshi KOMIYA
11f2bd39d0 Merge pull request #3373 from TimKam/2303-document-markdown-support
Document markdown support #2303 #825
2017-02-02 14:40:59 +09:00
Timotheus Kampik
98a39f8a51 document markdown support: work in review comments #2303 #825 2017-02-01 19:16:05 +01:00
adrian5
7bf7b81751 Update toctree.rst 2017-01-31 01:29:18 +01:00
Timotheus Kampik
e6693b5cae document markdown support #2303 #825 2017-01-29 10:58:22 +01:00
Takeshi KOMIYA
da15090c83 Update docs for collectors API 2017-01-28 20:44:40 +09:00
Takeshi KOMIYA
e7ca01a965 Merge branch 'master' into master 2017-01-28 20:02:29 +09:00
Marco Buttu
882bebf90a From version 1.5 to 1.6. Warnings wrapped with locale. 2017-01-26 11:20:24 +01:00
Marco Buttu
ac896790a0 Merge remote-tracking branch 'upstream/master' 2017-01-24 13:20:03 +01:00
Timotheus Kampik
0b4ebbeebb Improve templating options documentation #2788
--
Move `parents`, `prev` & `next` to
*documents that are created from source files* section.
It doesnt make any sens to use them for auto-generated files like index and
search, does it?
Add documentation for `body`, `display_toc`, `metatags` and `title`.
2017-01-22 22:05:35 +01:00
jfbu
cf966d4a97 Merge branch 'stable' 2017-01-21 15:21:33 +01:00
jfbu
dc51eef605 LaTeX, pass dvipdfm option to geometry package for Japanese documents 2017-01-21 11:31:32 +01:00
jfbu
765b00fc30 Fix config.rst missing escape in `latex_documents` author example 2017-01-21 10:44:50 +01:00
Takeshi KOMIYA
d44ea97e98 Merge branch 'stable' 2017-01-17 22:37:17 +09:00
jfbu
e46887b1e9 polish latex.rst doc slightly 2017-01-16 15:15:07 +01:00
Marco Buttu
e32eb44959 Fixed flake8 style check 2017-01-16 10:53:46 +01:00
jfbu
6f0d0ede3a polish an item in latex.rst doc file 2017-01-16 09:41:37 +01:00
jfbu
8c21abeccc Fix #3308: Parsed-literals don't wrap very long lines with pdf builder 2017-01-16 00:15:29 +01:00
Marco Buttu
df1c46974d Comparison made by distutils.version.LooseVersion 2017-01-15 22:09:15 +01:00
Marco Buttu
44732c6aea compare_version() replaces proper_pyversion() 2017-01-15 21:07:44 +01:00
Takeshi KOMIYA
e6cd347f6c Merge branch 'stable' 2017-01-16 01:31:57 +09:00
Marco Buttu
960f889a2c Added pyversion option for doctest (issue 3303)
Code, tests and documentation.
2017-01-15 10:27:34 +01:00
Jakob Lykke Andersen
e3cb2bbcf1 C++, at option tparam-line-spec for templates.
Make it possible to render template parameters on separate lines.
2017-01-15 00:52:08 +09:00
Javier Eduardo Rojas Romero
5868a8f656 corrected output directory for .pot files
Sphinx's `make gettext` always creates the .pot files in
$BUILD_DIR/gettext, regardless of the paths configured in `locale_dirs`;
those only affect sphinx-intl's operation
2017-01-12 13:37:14 -05:00
Takeshi KOMIYA
1a821b89e9 Drop deprecated function: make_admonition() 2017-01-07 18:35:57 +09:00
Takeshi KOMIYA
269139ec0c Update docs 2017-01-07 15:10:53 +09:00
shimizukawa
4c22cd10ca Merge branch 'stable' 2017-01-07 02:14:29 +09:00
Takeshi KOMIYA
099daa602b Drop deprecated options for graphviz extension 2017-01-05 13:52:17 +09:00
Takeshi KOMIYA
431d865d4a Drop deprecated options for html builder 2017-01-05 13:51:55 +09:00
Takeshi KOMIYA
5d715cb148 Drop deprecated options for latex builder 2017-01-05 13:48:41 +09:00
Takeshi KOMIYA
390e5a6ec2 Drop deprecated options for epub3 builder 2017-01-05 13:48:03 +09:00