16 lines
364 B
EmacsLisp
16 lines
364 B
EmacsLisp
;; -*- lexical-binding: t; -*-
|
|
|
|
(use-package nxml-mode
|
|
:straight (:type built-in)
|
|
:defer t
|
|
:config
|
|
(add-to-list 'hs-special-modes-alist
|
|
'(nxml-mode
|
|
"<!--\\|<[^/>]*[^/]>" ;; regexp for start block
|
|
"-->\\|</[^/>]*[^/]>" ;; regexp for end block
|
|
"<!--"
|
|
nxml-forward-element
|
|
nil)))
|
|
|
|
(provide 'init-xml)
|