Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 emacs 中使用 ispell-buffer 命令(使用 aspell 作为后端拼写检查器)来检查 HTML 页面内容中的拼写错误,但 aspell 在每个 HTML 标记处都会抱怨。有没有办法将其配置为忽略 HTML 标签?
提前致谢。
(defun my-web-mode-hook () (setq ispell-skip-html t)) (add-hook 'web-mode-hook #'my-web-mode-hook)