diff options
| author | John MacFarlane <jgm@berkeley.edu> | 2019-01-24 17:00:27 -0800 |
|---|---|---|
| committer | John MacFarlane <jgm@berkeley.edu> | 2019-01-25 16:12:45 -0800 |
| commit | 7012782b790906fcff318a3cb11654fca5c74f6a (patch) | |
| tree | 1479ffa0dc8a5e56fdb275504bfc0c35a5bb34f2 | |
| parent | 744442760930f98e45535548eba3897d2b1e4342 (diff) | |
| download | pandoc-7012782b790906fcff318a3cb11654fca5c74f6a.tar.gz | |
Update ipynb example in manual.
| -rw-r--r-- | MANUAL.txt | 36 |
1 files changed, 19 insertions, 17 deletions
diff --git a/MANUAL.txt b/MANUAL.txt index 4f800a409..061a52e8c 100644 --- a/MANUAL.txt +++ b/MANUAL.txt @@ -4869,27 +4869,29 @@ When creating a [Jupyter notebook], pandoc will try to infer the notebook structure. Code blocks with the class `code` will be taken as code cells, and intervening content will be taken as Markdown cells. Attachments will automatically be created for -images in Markdown cells. For example: +images in Markdown cells. Metadata will be taken from the +`jupyter` metadata field. For example: ```` --- title: My notebook -nbformat: 4 -nbformat_minor: 5 -kernelspec: - display_name: Python 2 - language: python - name: python2 -language_info: - codemirror_mode: - name: ipython - version: 2 - file_extension: ".py" - mimetype: "text/x-python" - name: "python" - nbconvert_exporter: "python" - pygments_lexer: "ipython2" - version: "2.7.15" +jupyter: + nbformat: 4 + nbformat_minor: 5 + kernelspec: + display_name: Python 2 + language: python + name: python2 + language_info: + codemirror_mode: + name: ipython + version: 2 + file_extension: ".py" + mimetype: "text/x-python" + name: "python" + nbconvert_exporter: "python" + pygments_lexer: "ipython2" + version: "2.7.15" --- # Lorem ipsum |
