2

我正在使用 nxhtml-mode 来编辑 html 文件。最近,我开始使用 HTML5 标记,例如<article><section>。Flymake 会为这些标签抛出错误。现在,我正在使用 tidy 进行 html 验证。设置如下:

(defun flymake-html-init ()
  (let* ((temp-file (flymake-init-create-temp-buffer-copy
                     'flymake-create-temp-inplace))
         (local-file (file-relative-name
                      temp-file
                      (file-name-directory buffer-file-name))))
    (list "tidy" (list local-file))))

(add-to-list 'flymake-allowed-file-name-masks
              '("\\.html$\\|\\.ctp" flymake-html-init))

(add-to-list 'flymake-err-line-patterns
             '("line \\([0-9]+\\) column \\([0-9]+\\) - \\(Warning\\|Error\\): \\(.*\\)"
               nil 1 2 4))

是否有任何支持 html5 的 tidy 替代品?谢谢你。

4

0 回答 0