Skip to content

Commit

Permalink
Merge pull request #87 from chrisjsewell/develop
Browse files Browse the repository at this point in the history
- remove `sphinx.ext.imgconverter` from sphinx auto-builds
- add additional known sphinx roles
  • Loading branch information
chrisjsewell committed Jul 8, 2019
2 parents 16007b9 + ebf01aa commit db99c84
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .vscode/settings.json
Expand Up @@ -21,7 +21,7 @@
"restructuredtext.updateDelay": 100000,
"python.testing.unittestEnabled": false,
"python.testing.nosetestsEnabled": false,
"python.testing.pyTestEnabled": true,
"python.testing.pytestEnabled": true,
"python.linting.pylintEnabled": false,
"python.linting.pylamaEnabled": false,
"python.linting.enabled": true,
Expand Down
2 changes: 1 addition & 1 deletion ipypublish/__init__.py
@@ -1,3 +1,3 @@
from ipypublish.scripts import nb_setup # noqa: F401

__version__ = '0.10.2'
__version__ = '0.10.3'
4 changes: 3 additions & 1 deletion ipypublish/filters_pandoc/definitions.py
Expand Up @@ -65,4 +65,6 @@
)

RST_KNOWN_ROLES = (
"py:attr", "py:meth", "py:class", "py:func", "py:mod")
"py:attr", "py:meth", "py:class", "py:func", "py:mod",
"attr", "meth", "class", "func", "mod",
"download", "doc", "file", "program")
1 change: 0 additions & 1 deletion ipypublish/sphinx/config.yaml
Expand Up @@ -24,7 +24,6 @@ extensions: [
'sphinx.ext.mathjax', # convert latex math to html
'sphinxcontrib.bibtex', # allows for :cite: and .. bibligraphy::
'sphinx.ext.todo', # allows for .. todo:: directive
'sphinx.ext.imgconverter' # converts svg to pdf in latex output
]
# If true, `todo` and `todoList` produce output, else they produce nothing.
todo_include_todos: false
Expand Down

0 comments on commit db99c84

Please sign in to comment.