rhtml icon indicating copy to clipboard operation
rhtml copied to clipboard

[Feature] Add basically highlight support for {{ anything }}

Open zw963 opened this issue 10 years ago • 2 comments

What I know about Frontend template all use this.

zw963 avatar Dec 08 '14 12:12 zw963

here some example stolen from handlebars-mode.el:

;; Constant regular expressions to identify template elements.
(defconst handlebars-mode-handlebars-token "\\([a-zA-Z_.][a-zA-Z0-9_:=\?!.-]*\s+\\)*[a-zA-Z_.][a-zA-Z0-9_:=\?!.-]*")
(defconst handlebars-mode-section (concat "\\({{[#^/]\s*"
                                   handlebars-mode-handlebars-token
                                   "\s*}}\\)"))

Thanks.

zw963 avatar Dec 08 '14 13:12 zw963

a example:

{{edit-todo class="edit" value=title focus-out="acceptChanges" insert-newline="acceptChanges"}}

zw963 avatar Dec 08 '14 13:12 zw963