Emacs 降价模式实时预览不起作用 - 错误的类型参数字符串 nil



我在执行降价模式插件的实时预览命令之一(模式、导出、重新导出......markdown-live-preview-mode 只通过一次,当我启动新的 emacs 并立即执行命令时。但是当我更改降价源中的任何内容时,它仍然没有更新。

我使用 pandoc 生成 mardown html:

(custom-set-variables
  '(markdown-command "/usr/bin/pandoc"))

以下是调试日志:

(1( 用于降价-实时-预览-导出

Debugger entered--Lisp error: (wrong-type-argument stringp nil)
expand-file-name(nil)
eww-open-file(nil)
markdown-live-preview-window-eww(nil)
markdown-live-preview-export()
call-interactively(markdown-live-preview-export record nil)
command-execute(markdown-live-preview-export record)
helm-M-x(nil #("markdown-live-preview-export" 0 28 (match-part "markdown-live-preview-export")))
call-interactively(helm-M-x nil nil)
command-execute(helm-M-x)

(2( 用于降价实时预览模式

Debugger entered--Lisp error: (wrong-type-argument stringp nil)
expand-file-name(nil)
eww-open-file(nil)
markdown-live-preview-window-eww(nil)
markdown-live-preview-export()
markdown-live-preview-mode(toggle)
call-interactively(markdown-live-preview-mode record nil)
command-execute(markdown-live-preview-mode record)
helm-M-x(nil #("markdown-live-preview-mode" 0 26 (match-part "markdown-live-preview-mode")))
call-interactively(helm-M-x nil nil)
command-execute(helm-M-x)

似乎它没有将生成的 html 文件的正确路径传递给 eww。相反,它是零。

谢谢!

我正在使用 pandoc,事实证明,我缺少 LaTeX 的软件包(在我的降价文件中使用(。安装 texlive-base 后,texlive-fonts-推荐和 texlive-latex 推荐一切正常!

相关内容

  • 没有找到相关文章

最新更新