Files
Albert Krewinkel 5d66166088 Org reader: treat *emacs-jupyter* src blocks as code cells.
This improves support for notebook-like org files that are intended to be used
with emacs-jupyter package.

Closes: #8236
2022-08-21 21:53:33 +02:00

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"
]