将OrgMode中的Python输出解析为表

时间:2015-08-10 14:08:56

标签: python parsing emacs

我现在尝试了一个小时而且我没有得到我期望的结果,所以我需要在这里问你:

  • 我安装了Emacs 24
  • 我安装了Python 3.0

实际上我尝试通过orgmode解析python输出到表:

#+begin_src python :session :results output table :exports results
print("|Example|")
print("|--------|")
print("|One example entry|")
#+end_src

当我将缓冲区导出为pdf / html时,我期待一个表。

然而,这不会发生。

任何人都可以修复我的代码并告诉我,为什么我的代码不起作用?

提前致谢!

1 个答案:

答案 0 :(得分:0)

raw添加到:results标头参数:

#+begin_src python :session :results output table raw :exports results
print("|Example|")
print("|--------|")
print("|One example entry|")
#+end_src

来自the documentation

  

raw结果被解释为原始组织模式代码并直接插入缓冲区。如果结果看起来像一个表,它们将按照Org模式对齐。