|
34 | 34 | (defcustom mel-print-compact nil "When non-nil minimize HTML ouput." :type 'boolean)
|
35 | 35 | (defcustom mel-pandoc-executable (executable-find "pandoc")
|
36 | 36 | "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." |
43 | 44 | :type '(repeat (choice (string :tag "file extension") (function :tag "parser"))))
|
44 | 45 |
|
45 | 46 | (defvar mel-data nil)
|
@@ -94,8 +95,8 @@ If NOERROR is non-nil, return an empty string when key is not found."
|
94 | 95 | (defun mel-parser (filename)
|
95 | 96 | "Dispatch to parser in `mel-parser-extensions' via FILENAME.
|
96 | 97 | 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))))) |
99 | 100 |
|
100 | 101 | (defun mel-load (filename &optional parser)
|
101 | 102 | "Parse FILENAME with PARSER or `mel-parser'."
|
|
0 commit comments