Skip to content

Commit

Permalink
Minor fixes and raise plugin version.
Browse files Browse the repository at this point in the history
  • Loading branch information
damianavila committed Jun 20, 2015
1 parent 0481d40 commit 57d4bf6
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
8 changes: 4 additions & 4 deletions docs/manual.txt
Expand Up @@ -841,11 +841,11 @@ config option:
IPython Notebook/Jupyter
````````````````````````

To use IPython Notebooks (a.k.a. Jupyter) as posts/pages, make sure ``ipynb``
is in your ``COMPILERS`` and that the ``.ipynb`` extension is defined in ``POSTS``
and ``PAGES``.
To use Jupyter notebooks (previously known as IPython notebooks) as posts/pages,
make sure ``ipynb`` is in your ``COMPILERS`` and that the ``.ipynb`` extension
is defined in ``POSTS`` and ``PAGES``.

The ``-f`` argument to ``new_post`` should be in the ``ipynb@KERNEL`` format.
The ``-f`` argument to ``new_post`` should be used in the ``ipynb@KERNEL`` format.
It defaults to Python in the version used by Nikola if not specified.

HTML
Expand Down
2 changes: 1 addition & 1 deletion nikola/plugins/command/new_post.py
Expand Up @@ -271,7 +271,7 @@ def _execute(self, options, args):
content_subformat = None

if "@" in content_format:
content_format, content_subformat = tuple(content_format.split("@"))
content_format, content_subformat = content_format.split("@")

if not content_format: # Issue #400
content_format = get_default_compiler(
Expand Down
8 changes: 4 additions & 4 deletions nikola/plugins/compile/ipynb.plugin
Expand Up @@ -3,8 +3,8 @@ Name = ipynb
Module = ipynb

[Documentation]
Author = Damian Avila
Version = 1.0
Website = http://www.oquanta.info
Description = Compile IPython notebooks into HTML
Author = Damian Avila and others
Version = 1.1
Website = http://www.damian.oquanta.info
Description = Compile IPython notebooks into Nikola posts

0 comments on commit 57d4bf6

Please sign in to comment.