mirror of
https://github.com/jgm/pandoc.git
synced 2026-07-11 11:57:16 +00:00
5d66166088
This improves support for notebook-like org files that are intended to be used with emacs-jupyter package. Closes: #8236
404 B
404 B
% pandoc -f org -t native
#+begin_src jupyter-python :session py :display plain
import pandas as pd
df = pd.read_csv('weight.csv', parse_dates=['Date'], index_col=0)
#+end_src
^D
[ CodeBlock
( ""
, [ "python" , "code" ]
, [ ( "session" , "py" ) , ( "display" , "plain" ) ]
)
"import pandas as pd\ndf = pd.read_csv('weight.csv', parse_dates=['Date'], index_col=0)\n"
]