orgmode emacs 无法导出为 html
当我评估代码块时(参见下面的示例),它起作用了。然而;当我尝试导出到 html 时,出现下一个错误: 错误的类型参数: stringp, nil
如果我从 -- #+begin_src C -- 获取C,它将毫无问题地导出。我该如何解决这个问题?
谢谢
#+begin_src C :includes <stdio.h> :exports both
int main(void){
printf("hello world");
return 0;
}
#+end_src
#+results:
: hello world
When I evaluate a code block (see example below), it works. However; when I tried to export to html I got the next error:
Wrong type argument: stringp, nil
If I take the C from -- #+begin_src C -- , it will export without any problem. How I can solve the problem?
Thanks
#+begin_src C :includes <stdio.h> :exports both
int main(void){
printf("hello world");
return 0;
}
#+end_src
#+results:
: hello world
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
.emacs 中的更改
这里
是更多 inf 的链接,但其想法是替换 buffer-file-name 的所有实例。
org-mode 无法编辑 C 源代码
Change in .emacs
for
Here is the link for more inf, but the idea is to replace all the instances of buffer-file-name.
org-mode can't edit C source code