diff options
author | Vaclav Haisman <vhaisman@gmail.com> | 2017-10-22 01:16:03 +0200 |
---|---|---|
committer | Vaclav Haisman <vhaisman@gmail.com> | 2017-10-22 01:16:03 +0200 |
commit | 733ccbafc6be54525ead7ed680d887c9741fb1a1 (patch) | |
tree | 90ff15cad37e6ed6bcd7694d9100fd8e0aa4fe7c | |
parent | 25590b18121bf70340f77bb904958fa12bbba677 (diff) | |
download | pandoc-733ccbafc6be54525ead7ed680d887c9741fb1a1.tar.gz |
Support comments in Pandoc templates in Emacs pandoc-template-mode.
-rw-r--r-- | tools/pandoc-template-mode.el | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tools/pandoc-template-mode.el b/tools/pandoc-template-mode.el index 7a6346458..c34a8dbfd 100644 --- a/tools/pandoc-template-mode.el +++ b/tools/pandoc-template-mode.el @@ -27,7 +27,9 @@ ;;; Code: (defvar pandoc-template-font-lock-keywords - '(("\\(\\$\\)\\(if\\|for\\)(\\([^)]+\\))\\(\\$\\)" + '(("\\(\\$--.*\\)$" + (1 font-lock-comment-face)) + ("\\(\\$\\)\\(if\\|for\\)(\\([^)]+\\))\\(\\$\\)" (1 font-lock-preprocessor-face) (2 font-lock-keyword-face) (3 font-lock-variable-name-face) |