web-mode
web-mode copied to clipboard
web template editing mode for emacs
Hi, I want to do web development with Emacs and web-mode seems the right thing to use. Thanx for your effort! I heavily use HTML inside template string literals, but...
i want to use web-mode to get css behaviour but all of the elements are aligned to left and there's no indentation or color. How are these enabled? ```el (mmm-add-classes...
(A related issue is opened at mmm-mode project here https://github.com/purcell/mmm-mode/issues/124) I want to use web-mode from mmm-mode to highlight vue3 components. It looks and works near-perfect. If web-mode could be...
We should not autocomplete `{{~` to `{{~{ | }}}`, as that unexpectedly disables HTML escaping in Handlebars, leading to cross-site scripting vulnerabilities. Instead, autocomplete `{{~ ` to `{{~ | }}`...
I have ``` lisp ((web-mode . ((web-mode-engines-alist . (("django" . "*\\.html\\'")))))) ``` in my .dir-locals.el and ``` lisp (setq web-mode-enable-engine-detection t) ``` In my init.el Although the `web-mode-engines-alist` variable does...
Would love to see support for [Astro](https://astro.build/) About Astro specifications: https://docs.astro.build/en/core-concepts/astro-components/
Like the behavior of the original `comment-indent-new-line` it replaces, it inserts a space when generating a new comment line. I thought the behavior before the modification was a matter of...
In a heex template, web-mode should be able to recognize tags with leading periods, e.g. `` , ``, ``. Inside of tags, curly braces should be handled as EEX code...
Another request to support syntax from Perl HTML template https://metacpan.org/pod/HTML::Template A ``'s indent should decrement. Then the lines after `` should increment so it matches the usual indentation of the...
Hi, I'm using the [Nimja](https://github.com/enthus1ast/nimja) Nim template engine with the `jinja2` `web-mode-engine` configured for the `.nwt` (Nim web template) file extension as follows ```elisp (add-to-list 'auto-mode-alist '("\\.nwt\\'" . web-mode)) (setq...