From 733ccbafc6be54525ead7ed680d887c9741fb1a1 Mon Sep 17 00:00:00 2001
From: Vaclav Haisman <vhaisman@gmail.com>
Date: Sun, 22 Oct 2017 01:16:03 +0200
Subject: [PATCH] Support comments in Pandoc templates in Emacs
 pandoc-template-mode.

---
 tools/pandoc-template-mode.el | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

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)