Emacs HTML5 flymake?

时间:2013-11-19 02:54:58

标签: html5 emacs tidy flymake

我正在使用nxhtml-mode来编辑html文件。最近,我开始使用HTML5标记,例如<article><section>。 Flymake会为这些标签抛出错误。现在,我正在使用整洁的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吗?谢谢。

0 个答案:

没有答案