Skip to content

Commit d2e1421

Browse files
committed
mel-parser-extensions: fix docstring, regexp matching
mel-parser: add "." prefix to extension
1 parent 666c7cf commit d2e1421

File tree

1 file changed

+9
-8
lines changed

1 file changed

+9
-8
lines changed

mel.el

+9-8
Original file line numberDiff line numberDiff line change
@@ -34,12 +34,13 @@
3434
(defcustom mel-print-compact nil "When non-nil minimize HTML ouput." :type 'boolean)
3535
(defcustom mel-pandoc-executable (executable-find "pandoc")
3636
"Path to the pandoc executable." :type 'string)
37-
(defcustom mel-parser-extensions '((".htmel" . mel--template)
38-
(".mel" . mel--partial)
39-
(".txt" . buffer-string)
40-
(".org" . mel--org)
41-
(".md" . mel--markdown))
42-
"When non-nil minimize HTML ouput."
37+
(defcustom mel-parser-extensions '(("\\.htmel\\'" . mel-template)
38+
("\\.mel\\'" . mel-partial)
39+
("\\.txt\\'" . buffer-string)
40+
("\\.org\\'" . mel--org)
41+
("\\.md\\'" . mel-markdown))
42+
"List of form ((REGEXP . PARSER)...) to associate file extensions with a parser.
43+
PARSER is called with no arguments and must return a valid mel spec."
4344
:type '(repeat (choice (string :tag "file extension") (function :tag "parser"))))
4445

4546
(defvar mel-data nil)
@@ -94,8 +95,8 @@ If NOERROR is non-nil, return an empty string when key is not found."
9495
(defun mel-parser (filename)
9596
"Dispatch to parser in `mel-parser-extensions' via FILENAME.
9697
If no parser matches, `buffer-string' is used."
97-
(funcall (alist-get (file-name-extension filename) mel-parser-extensions
98-
#'buffer-string nil (lambda (k v) (string-match-p v k)))))
98+
(funcall (alist-get (concat "." (file-name-extension filename)) mel-parser-extensions
99+
#'buffer-string nil (lambda (k v) (string-match-p k v)))))
99100

100101
(defun mel-load (filename &optional parser)
101102
"Parse FILENAME with PARSER or `mel-parser'."

0 commit comments

Comments
 (0)