Emacs降价模式实时预览不';工作-错误类型参数stringp nil

Emacs降价模式实时预览不';工作-错误类型参数stringp nil,emacs,null,markdown,Emacs,Null,Markdown,当执行一个标记模式插件的实时预览命令(模式、导出、重新导出…)时,我得到错误“错误类型参数stringp nil”。 当我启动新的emacs并立即执行命令时,markdown live preview模式只经过一次。但当我在markdown source中更改任何内容时,它仍然不会更新 我使用pandoc生成mardown html: (custom-set-variables '(markdown-command "/usr/bin/pandoc")) 以下是调试日志: (1) 用于降价

当执行一个标记模式插件的实时预览命令(模式、导出、重新导出…)时,我得到错误“错误类型参数stringp nil”。 当我启动新的emacs并立即执行命令时,markdown live preview模式只经过一次。但当我在markdown source中更改任何内容时,它仍然不会更新

我使用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) 对于markdown live预览模式

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字体推荐和texlive latex推荐一切正常

听起来像个虫子。请考虑将其报告给降价的Emacs代码的维护者。