fgallina/multi-web-mode

Improvement to example config

Closed this issue · 1 comments

Hi there,

I just downloaded and installed this mode and used the example configuration. On the first html file I loaded, it failed to do any mode switching. After investigation, it turned out that my html file used single quotes rather than double quotes for most of the attributes (e.g. <style type='text/css'>).

It might help new users if you make the example mweb-tags match either type of quote, e.g.

(setq mweb-tags '((php-mode "<?php|<? |<?=" "?>")
(js-mode "<script +\(type=['"]text/javascript['"]\|language=['"]javascript['"]\)[^>]>" "</script>")
(css-mode "<style +type=['"]text/css['"][^>]
>" "</style>")))

Cheers.

Fixed in @9460fbc.