Skip to content

Commit

Permalink
minor bug fix
Browse files Browse the repository at this point in the history
remove blank line between:

    .. nboutput:: rst
        :class: rendered_html
  • Loading branch information
chrisjsewell committed Feb 24, 2019
1 parent a14d2b7 commit 5f3573a
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions docs/source/releases.rst
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ Releases
Version 0.9
-----------

v0.9.1
~~~~~~
v0.9.1 & 0.9.2
~~~~~~~~~~~~~~

Minor big fix.
Minor big fix to fix blank line between directives and options in RST

v0.9.0
~~~~~~
Expand Down
2 changes: 1 addition & 1 deletion ipypublish/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
from ipypublish.scripts import nb_setup # noqa: F401

__version__ = '0.9.1'
__version__ = '0.9.2'
4 changes: 2 additions & 2 deletions ipypublish/templates/segments/ipy-sphinx.yaml.j2
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,7 @@
:class: stderr
{%- endif %}

{# output plain text type outputs #}
{#- output plain text type outputs #}
{%- if datatype == 'text/plain' and ipub.get('text', False) -%}
{{ insert_empty_lines(output.data[datatype]) }}

Expand Down Expand Up @@ -270,7 +270,7 @@

{{ output.metadata.filenames[datatype] | posix_path | basename }}
{% endif %}
{# output markdown type outputs #}
{#- output markdown type outputs #}
{%- elif datatype in ['text/markdown'] and ipub.get('mkdown', False) %}

{{ output.data['text/markdown'] | ipypandoc('rst', nb.metadata, cell.metadata) | indent }}
Expand Down

0 comments on commit 5f3573a

Please sign in to comment.