Benno Schulenberg | 124a859 | 2017-01-08 11:27:37 +0100 | [diff] [blame] | 1 | ## Here is an example for HTML. |
Benno Schulenberg | fe9da94 | 2014-05-16 20:21:34 +0000 | [diff] [blame] | 2 | |
Benno Schulenberg | 10a18c1 | 2014-02-22 18:57:24 +0000 | [diff] [blame] | 3 | syntax "html" "\.html?$" |
Chris Allegretta | b00d0b9 | 2011-02-13 04:23:10 +0000 | [diff] [blame] | 4 | magic "HTML document text" |
Mike Scalora | 6a2032f | 2016-05-25 22:13:50 +0200 | [diff] [blame] | 5 | comment "<!--|-->" |
Benno Schulenberg | fe9da94 | 2014-05-16 20:21:34 +0000 | [diff] [blame] | 6 | |
Benno Schulenberg | 124a859 | 2017-01-08 11:27:37 +0100 | [diff] [blame] | 7 | # Tags: |
| 8 | color cyan start="<[[:alpha:]/!?]" end=">" |
| 9 | # Bold, italic, and underlined: |
| 10 | color brightmagenta "</?[biu]>" |
| 11 | |
| 12 | # Named character references: |
Benno Schulenberg | 10a18c1 | 2014-02-22 18:57:24 +0000 | [diff] [blame] | 13 | color red "&[^;[:space:]]*;" |
Benno Schulenberg | 124a859 | 2017-01-08 11:27:37 +0100 | [diff] [blame] | 14 | # Strings: |
Benno Schulenberg | 10a18c1 | 2014-02-22 18:57:24 +0000 | [diff] [blame] | 15 | color green ""(\\.|[^"])*"" |
Mike Scalora | 6a2032f | 2016-05-25 22:13:50 +0200 | [diff] [blame] | 16 | |
Benno Schulenberg | 124a859 | 2017-01-08 11:27:37 +0100 | [diff] [blame] | 17 | # Attributes: |
| 18 | color red "(abbr|accept(-charset)?|accesskey|action|alink|align|alt|archive|axis|background|bgcolor|border)=" |
| 19 | color red "(cell(padding|spacing)|char(off|set)?|checked|cite|class(id)?|compact|code(base|tag)?|cols(pan)?)=" |
| 20 | color red "(content(editable)?|contextmenu|coords|data|datetime|declare|defer|dir|disabled|enctype)=" |
| 21 | color red "(for|frame(border)?|headers|height|hidden|href(lang)?|hspace|http-equiv|id|ismap)=" |
| 22 | color red "(label|lang|link|longdesc|margin(height|width)|maxlength|media|method|multiple)=" |
| 23 | color red "(name|nohref|noresize|noshade|object|onclick|onfocus|onload|onmouseover|profile|readonly|rel|rev)=" |
| 24 | color red "(rows(pan)?|rules|scheme|scope|scrolling|selected|shape|size|span|src|standby|start|style|summary)=" |
| 25 | color red "(tabindex|target|text|title|type|usemap|valign|value(type)?|vlink|vspace|width|xmlns|xml:space)=" |
| 26 | |
| 27 | # Comments: |
Mike Scalora | 6a2032f | 2016-05-25 22:13:50 +0200 | [diff] [blame] | 28 | color yellow start="<!--" end="-->" |