orgmode emacs 无法导出为 html

发布于 2024-12-28 14:18:24 字数 343 浏览 0 评论 0原文

当我评估代码块时(参见下面的示例),它起作用了。然而;当我尝试导出到 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

彼岸花ソ最美的依靠 2025-01-04 14:18:24

.emacs 中的更改

(let ((file (file-name-nondirectory buffer-file-name)))

这里

(let ((file  (or buffer-file-name "DEFAULT-NAME")))

是更多 inf 的链接,但其想法是替换 buffer-file-name 的所有实例。

org-mode 无法编辑 C 源代码

Change in .emacs

(let ((file (file-name-nondirectory buffer-file-name)))

for

(let ((file  (or buffer-file-name "DEFAULT-NAME")))

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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文