Skip to content

Commit db99c84

Browse files
authored
Merge pull request #87 from chrisjsewell/develop
- remove `sphinx.ext.imgconverter` from sphinx auto-builds - add additional known sphinx roles
2 parents 16007b9 + ebf01aa commit db99c84

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

.vscode/settings.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
"restructuredtext.updateDelay": 100000,
2222
"python.testing.unittestEnabled": false,
2323
"python.testing.nosetestsEnabled": false,
24-
"python.testing.pyTestEnabled": true,
24+
"python.testing.pytestEnabled": true,
2525
"python.linting.pylintEnabled": false,
2626
"python.linting.pylamaEnabled": false,
2727
"python.linting.enabled": true,

ipypublish/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
from ipypublish.scripts import nb_setup # noqa: F401
22

3-
__version__ = '0.10.2'
3+
__version__ = '0.10.3'

ipypublish/filters_pandoc/definitions.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,4 +65,6 @@
6565
)
6666

6767
RST_KNOWN_ROLES = (
68-
"py:attr", "py:meth", "py:class", "py:func", "py:mod")
68+
"py:attr", "py:meth", "py:class", "py:func", "py:mod",
69+
"attr", "meth", "class", "func", "mod",
70+
"download", "doc", "file", "program")

ipypublish/sphinx/config.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ extensions: [
2424
'sphinx.ext.mathjax', # convert latex math to html
2525
'sphinxcontrib.bibtex', # allows for :cite: and .. bibligraphy::
2626
'sphinx.ext.todo', # allows for .. todo:: directive
27-
'sphinx.ext.imgconverter' # converts svg to pdf in latex output
2827
]
2928
# If true, `todo` and `todoList` produce output, else they produce nothing.
3029
todo_include_todos: false

0 commit comments

Comments
 (0)