;;; init-html.el --- Initialize HTML mode and SGML mode -*- lexical-binding: t -*-
;;; Commentary:
;; https://git.savannah.gnu.org/cgit/emacs.git/tree/lisp/textmodes/sgml-mode.el
;;; Code:
(require 'init-misc)
(require 'sgml-mode)
(setq html-tag-face-alist nil) ; Disable styling of marked up text.
(add-hook 'html-mode-hook #'my-add-node-modules-path)
(provide 'init-html)
;;; init-html.el ends here