| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Rename variable to `html_assets_policy` | Manuel Kaufmann | 2021-06-14 | 1 | -1/+1 |
| | | |||||
| * | Add `Sphinx.add_html_assets_in_all_pages` | Manuel Kaufmann | 2021-05-06 | 1 | -0/+13 |
| | | | | | | | | | | | | | | This new method in the `Sphinx` object allows extensions to communicate to Sphinx that it's preferred to include HTML assets in all the pages. However, it's extensions developers' responsability to follow this config and decide whether or not include the assets required. Extensions developers' can check `Sphinx.html_assets_in_all_pages` together with any other logic they may have to decide if the assets will be included in the rendered page or not. Closes #9115 | ||||
| * | refactor: Add testcase for mathjax3_config (refs: #9094) | Takeshi KOMIYA | 2021-04-25 | 1 | -2/+14 |
| | | |||||
| * | Merge branch '3.x' | Takeshi KOMIYA | 2021-01-08 | 1 | -0/+13 |
| |\ | |||||
| | * | Close #6241: html: Allow to add JS/CSS files to the specific page | Takeshi KOMIYA | 2021-01-07 | 1 | -0/+13 |
| | | | | | | | | | | | | | Allow to add JS/CSS files to the specific page when an extension calls `app.add_js_file()` or `app.add_css_file()` on `html-page-context` event. | ||||
| * | | Merge branch '3.x' | Takeshi KOMIYA | 2021-01-01 | 1 | -1/+1 |
| |\ \ | |/ | |||||
| | * | A happy new year! | Takeshi KOMIYA | 2021-01-01 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | .. note:: $ find sphinx tests LICENSE doc/conf.py -type f -exec sed -i '' -e 's/2007\-20../2007-2021/' {} \; $ git co sphinx/locale/**/*.js sphinx/templates/epub3/mimetype | ||||
| * | | Move to MathJax 3. | Hameer Abbasi | 2020-07-15 | 1 | -2/+2 |
| |/ | |||||
| * | Update test_ext_math.py | Ryan Soklaski | 2020-05-28 | 1 | -1/+1 |
| | | | | Bump hardcoded mathjax version to 2.7.7 | ||||
| * | test: Use read_text() and read_bytes() | Takeshi KOMIYA | 2020-02-01 | 1 | -12/+12 |
| | | |||||
| * | A happy new year! | Takeshi KOMIYA | 2020-01-01 | 1 | -1/+1 |
| | | |||||
| * | Remove redundant type="text/javascript" from <script> elements | Jon Dufresne | 2019-12-15 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | In HTML5, <script> elements default to MIME type text/javascript. The HTML5 living standard and MDN recommend against including the attribute. From https://developer.mozilla.org/en-US/docs/Web/HTML/Element/script#attr-type > The HTML5 specification urges authors to omit the attribute rather > than provide a redundant MIME type. From https://html.spec.whatwg.org/#the-script-element > Authors should omit the type attribute instead of redundantly setting > it. | ||||
| * | Separate jsmath to sphinxcontrib package | Takeshi KOMIYA | 2019-01-13 | 1 | -50/+0 |
| | | |||||
| * | quickstart: Simplify generated conf.py (for latex) | Takeshi KOMIYA | 2019-01-07 | 1 | -2/+2 |
| | | |||||
| * | Merge branch '1.8' | Takeshi KOMIYA | 2019-01-02 | 1 | -1/+1 |
| |\ | |||||
| | * | A happy new year! | Takeshi KOMIYA | 2019-01-02 | 1 | -1/+1 |
| | | | |||||
| * | | Merge branch '1.8' | Takeshi KOMIYA | 2018-12-18 | 1 | -1/+1 |
| |\ \ | |/ | |||||
| | * | Use mathjax CDN "latest" URL by default | Michael Goerz | 2018-12-17 | 1 | -1/+1 |
| | | | | | | | | | Closes #5725 | ||||
| * | | Remove unnecessary encoding cookie from Python source files | Jon Dufresne | 2018-12-16 | 1 | -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. | ||||
| * | | refactor: Remove u-prefix from strings | Takeshi KOMIYA | 2018-12-16 | 1 | -7/+7 |
| | | | |||||
| * | | Replace ENOENT errno checks with Python 3 FileNotFoundError | Jon Dufresne | 2018-12-15 | 1 | -6/+4 |
| |/ | | | | | | | | The error is more specific and self documenting. This removes the last use of sphinx.util.osutil.ENOENT, so it is now deprecated for removal. sphinx.util.osutil.EEXIST was already unused so that is deprecated as well. | ||||
| * | Fix #5497: Do not include MathJax.js and jsmath.js unless it is really needed | Takeshi KOMIYA | 2018-10-17 | 1 | -1/+20 |
| | | |||||
| * | Merge pull request #5250 from tk0miya/refactor_math4 | Takeshi KOMIYA | 2018-08-04 | 1 | -3/+7 |
| |\ | | | | | Add :rst:role:`math:numref` role to refer equations (Same as :rst:role:`eq`) | ||||
| | * | Add :rst:role:`math:numref` role to refer equations (Same as :rst:role:`eq`) | Takeshi KOMIYA | 2018-08-02 | 1 | -3/+7 |
| | | | |||||
| * | | WIP: #726, #969: Add mathjax_config | Takeshi KOMIYA | 2018-07-29 | 1 | -0/+12 |
| |/ | |||||
| * | Close #3784: mathjax: Add :confval:`mathjax_options` | Takeshi KOMIYA | 2018-06-13 | 1 | -0/+12 |
| | | |||||
| * | Enable math_block node rendering by default (without HTML builders) | Takeshi KOMIYA | 2018-05-17 | 1 | -0/+7 |
| | | |||||
| * | Enable math node rendering by default (without HTML builders) | Takeshi KOMIYA | 2018-05-15 | 1 | -0/+22 |
| | | | | | | | | | | | | 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. | ||||
| * | Fix #4767: html: search highlighting breaks mathjax equations | Takeshi KOMIYA | 2018-04-15 | 1 | -11/+11 |
| | | |||||
| * | Fix flake8 violations | Takeshi KOMIYA | 2018-02-19 | 1 | -4/+5 |
| | | |||||
| * | test: Don't use os.errno. Use errno directly | Takeshi KOMIYA | 2018-01-25 | 1 | -1/+2 |
| | | |||||
| * | Fix broken test | Takeshi KOMIYA | 2018-01-20 | 1 | -2/+2 |
| | | |||||
| * | Merge branch 'stable' into 1.7-release | Takeshi KOMIYA | 2018-01-20 | 1 | -3/+3 |
| |\ | |||||
| | * | Fix #4438: math: math with labels with whitespace cause html error | Takeshi KOMIYA | 2018-01-19 | 1 | -3/+3 |
| | | | |||||
| * | | Fix #4079: Add notranslate class to let Google Translate know they are not ↵ | Takeshi KOMIYA | 2018-01-13 | 1 | -9/+9 |
| | | | | | | | | | translatable | ||||
| * | | Merge branch 'happy_new_year' into master | Takeshi KOMIYA | 2018-01-01 | 1 | -1/+1 |
| |\ \ | |/ | |||||
| | * | A happy new year! | Takeshi KOMIYA | 2018-01-01 | 1 | -1/+1 |
| | | | |||||
| | * | refs #3458: add sphinx.testing that are moved from /tests directory. | shimizukawa | 2017-05-14 | 1 | -1/+1 |
| | | | |||||
| * | | Merge pull request #4166 from jahn/math_numfig | Takeshi KOMIYA | 2017-12-21 | 1 | -0/+49 |
| |\ \ | | | | | | | Number equations across pages and by section (fix #3991, #4080) | ||||
| | * | | add tests for math_numfig | Oliver Jahn | 2017-10-18 | 1 | -0/+49 |
| | | | | |||||
| * | | | tests: Skip tests with missing binaries | Stephen Finucane | 2017-12-18 | 1 | -0/+18 |
| |/ / | | | | | | | | | | | | | While there are already some skips included here, they clearly aren't doing their job and the test fail locally. Resolve this. Signed-off-by: Stephen Finucane <stephen@that.guru> | ||||
| * | | Merge branch 'master' into 3638_eqref_format | Takeshi KOMIYA | 2017-05-07 | 1 | -5/+4 |
| |\ \ | |||||
| | * | | Remove deprecated testing utilities | Takeshi KOMIYA | 2017-04-27 | 1 | -5/+4 |
| | |/ | |||||
| * | | Fix #3638: Allow to change a label of reference to equation | Takeshi KOMIYA | 2017-04-27 | 1 | -0/+23 |
| |/ | |||||
| * | Merge branch 'stable' | Takeshi KOMIYA | 2017-03-26 | 1 | -1/+1 |
| |\ | |||||
| | * | Year++ | Takeshi KOMIYA | 2017-03-26 | 1 | -1/+1 |
| | | | |||||
| * | | Reduce DeprecationWarnings for regexp | Takeshi KOMIYA | 2017-02-17 | 1 | -4/+4 |
| |/ | |||||
| * | Fix flake8 violations | Takeshi KOMIYA | 2017-01-26 | 1 | -7/+7 |
| | | |||||
| * | pytest: remove deprecated with_app decorator functions | shimizukawa | 2017-01-06 | 1 | -8/+10 |
| | | |||||
| * | Add domain support to support equation cross references (ref: #1210, #2851) | Takeshi KOMIYA | 2016-08-22 | 1 | -4/+9 |
| | | |||||
