Sha256: 4c2d02f9a5a04aa33b3d6e9736ac4898dd93628e3df478c500b4ad691926aa90
Contents?: true
Size: 1.14 KB
Versions: 2
Compression:
Stored size: 1.14 KB
Contents
# README ## Name Jekyll Jupyter Notebook plugin ## Description Jekyll Jupyter Notebook plugin adds [Jupyter](http://jupyter.org/) Notebook support to Jekyll. You can embed Jupyter Notebooks into your texts. ## Install Add the following line to your site's `Gemfile`: ```ruby gem "jekyll-jupyter-notebook" ``` Add the following line to your site's `_config.yml`: ```yaml gems: - jekyll-jupyter-notebook ``` ## Usage Put a Jupyter Notebook (`sample.ipynb`) to the directory that has the target text (`my-text.md`) like the following: ```text . |-- my-text.md `-- sample.ipynb ``` Put the following tag into the target text: ```markdown {% jupyter_notebook sample.ipynb %} ``` If you use kramdown as Markdown parser and get strange result, try to surround `{% jupyter_notebook ...%}` with `{::nomarkdown}` and `{:/nomarkdown}` like the following: ```markdown {::nomarkdown} {% jupyter_notebook sample.ipynb %} {:/nomarkdown} ``` ## Authors * Kouhei Sutou \<kou@clear-code.com\> ## License Apache License 2.0. See doc/text/apache-2.0.txt and NOTICE.txt for details. (Kouhei Sutou has a right to change the license including contributed patches.)
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
jekyll-jupyter-notebook-0.0.2 | README.md |
jekyll-jupyter-notebook-0.0.1 | README.md |