We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I'm not yet sure when this problem arose, but I can no longer have continuation lines if I have a :dir header set.
:dir
This works:
#+BEGIN_SRC jupyter-python :exports both import pandas as pd import numpy as np df = pd.DataFrame(np.random.random((3,3))) df = df\ .mean() # contine line df #+END_SRC
But if I add :dir ~/ it fails:
:dir ~/
#+BEGIN_SRC jupyter-python :exports both :dir ~/ import pandas as pd import numpy as np df = pd.DataFrame(np.random.random((3,3))) df = df\ .mean() # contine line df #+END_SRC #+RESULTS: :RESULTS: # [goto error] Cell In[13], line 4 df = df\ ^ SyntaxError: unexpected character after line continuation character :END:
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I'm not yet sure when this problem arose, but I can no longer have continuation lines if I have a
:dir
header set.This works:
But if I add
:dir ~/
it fails:The text was updated successfully, but these errors were encountered: