This file is indexed.

/usr/share/bluefish/bflang/all-html.bfinc is in bluefish-data 2.2.7-2.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
<?xml version="1.0" encoding="UTF-8" ?>
<!--
		Bluefish HTML Editor
		all-html.bfinc $Revision: 8437 $

		Copyright (C) 2008-2013 Olivier Sessink

	    This program is free software: you can redistribute it and/or modify
		it under the terms of the GNU General Public License as published by
		the Free Software Foundation, either version 3 of the License, or
		(at your option) any later version.

		This program is distributed in the hope that it will be useful,
		but WITHOUT ANY WARRANTY; without even the implied warranty of
		MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
		GNU General Public License for more details.

		You should have received a copy of the GNU General Public License
		along with this program.  If not, see <http://www.gnu.org/licenses/>.
-->
<bfinc>


<context id="__internal__.e.tag.attribute.string.d.context" symbols="&quot;&lt; " highlight="string">
	<element pattern="&quot;" ends_context="1" highlight="string" />
	<group class="is_PHP">
		<group class="php_short_open_tag">
			<element idref="e.php.short.open" />
		</group>
		<group notclass="php_short_open_tag">
			<element idref="e.php.open" />
		</group>
	</group>
</context>

<context id="__internal__.e.tag.attribute.string.s.context" symbols="'&lt; " highlight="string">
	<element pattern="'" ends_context="1" highlight="string" />
	<group class="is_PHP">
		<group class="php_short_open_tag">
			<element idref="e.php.short.open" />
		</group>
		<group notclass="php_short_open_tag">
			<element idref="e.php.open" />
		</group>
	</group>
</context>


<element id="e.html.lcomment" pattern="&lt;!--" highlight="html-comment" starts_block="1" block_name="HTML comment">
	<context symbols="-&gt; &#9;&#10;&#13;" highlight="html-comment">
		<element pattern="--&gt;" ends_block="1" blockstartelement="e.html.lcomment" highlight="html-comment" mayfold="1" ends_context="1" />
		<group class="is_ASP-VBS">
			<element pattern="#include" highlight="asp-keyword" case_insens="1" />
		</group>
		<group class="is_PHP">
			<group class="php_short_open_tag">
				<element idref="e.php.short.open" />
			</group>
			<group notclass="php_short_open_tag">
				<element idref="e.php.open" />
			</group>
		</group>
	</context>
</element>

<tag id="t.html.style" name="style" highlight="html-tag" case_insens="1" sgml_shorttag="1" attributes="&i18n;,media,title,type" attribhighlight="html-attribute"   attrib_autocomplete_append="=&quot;&quot;" attrib_autocomplete_backup_cursor="1">
	<autocomplete append=" type=&quot;text/css&quot;&gt;&#10;&#10;&lt;/style&gt;" backup_cursor="9" />
	<context id="c.html.css.main" symbols=" &#9;&#10;&#13;{}./*&lt;&gt;:+~[]," commentid_block="cm.cblockcomment" commentid_line="none" default_spellcheck="0">
		<element idref="e.html.lcomment"/>
		<element id="e.html.css.lcomment" pattern="/*" starts_block="1" highlight="css-comment">
			<context symbols="*/&#9;&#10;&#13;" highlight="css-comment">
				<element pattern="*/" ends_block="1" blockstartelement="e.html.css.lcomment" highlight="css-comment" ends_context="1" />
			</context>
		</element>
		&css-selectors;
		<group highlight="css-html-media">
			<element pattern="@media">
			<context symbols=" &#9;&#10;&#13;{}.;,">
				<group highlight="css-html-media" >
					<autocomplete enable="1" />
					<element pattern="all" />
					<element pattern="aural" />
					<element pattern="braille" />
					<element pattern="embossed" />
					<element pattern="handheld" />
					<element pattern="print" />
					<element pattern="projection" />
					<element pattern="screen" />
					<element pattern="tty" />
					<element pattern="tv" />
					<element id="e.css.media.group.lbrace" pattern="{" starts_block="1" highlight="css-brackets">
						<context idref="c.html.css.main" />
					</element>
				</group>
			</context>
			</element>
			<!-- the next pattern ends 2 contexts because the context c.html.css.main can be called recursively by a media selector -->
			<element pattern="}" ends_block="1" highlight="css-brackets" blockstartelement="e.css.media.group.lbrace" ends_context="2" />
		</group>
		<element id="e.css.lbrace" pattern="{" starts_block="1" highlight="css-brackets">
			<context id="c.css.about2include_css-rules" symbols=" &#9;&#10;&#13;{}.:&quot;';/*">
				<element id="e.css.lcomment" pattern="/*" starts_block="1" highlight="css-comment">
					<context symbols="*/&#9;&#10;&#13;" highlight="css-comment">
						<element pattern="*/" ends_block="1" blockstartelement="e.css.lcomment" highlight="css-comment" mayfold="1" ends_context="1" />
					</context>
				</element>
				&css-rules;
				<element id="end-style-tag" pattern="&lt;/style&gt;" highlight="html-tag" ends_context="3" condition_mode="1" condition_relation="2" condition_contextref="c.html.css.main"/>
				<element pattern="}" ends_block="1" blockstartelement="e.css.lbrace" highlight="css-brackets" ends_context="1" />
			</context>
		</element>
	</context>
</tag>

<!-- the following context can only be defined *after* the <style> tag, because
certain elements that are referred to in
css-rules are defined in the inner context for <style>  -->
<context id="c.html.attrib.style" symbols=" ;:'&quot;">
	<element pattern="'" highlight="string">
		<context id="c.html.attrib.style.inner" symbols=" ;:'&quot;">
			<element pattern="'" ends_context="2"  highlight="string"/>
			<element pattern="&quot;" ends_context="2"  highlight="string"/>
			&css-rules;
		</context>
	</element>
	<element pattern="&quot;"  highlight="string">
		<context idref="c.html.attrib.style.inner"/>
	</element>
</context>

<element id="e.html.doctype" pattern="&lt;!DOCTYPE" highlight="html-tag">
	<context symbols="&#34;&gt;&lt;" highlight="html-tag">
		<element pattern="&#34;[^&#34;]*&#34;" highlight="attribute-string" is_regex="1" />
		<element pattern="&gt;" ends_context="1"  highlight="html-tag" />
	</context>
</element>
<tag name="html" block_name="html-block" case_insens="1" sgml_shorttag="1" attributes="version,&i18n;" highlight="html-tag" >
	<autocomplete append="&gt;&#10;&#10;&lt;/html&gt;" backup_cursor="8" />
	<reference>Defines an HTML document</reference>
</tag>
<tag name="head" case_insens="1" sgml_shorttag="1" attributes="profile,&i18n;" highlight="html-tag" >
	<autocomplete append="&gt;&#10;&#10;&lt;/head&gt;" backup_cursor="8" />
	<reference>Defines the header information about the document</reference>
</tag>
<tag name="frameset" case_insens="1" sgml_shorttag="1" attributes="&univ;,cols,onload,onunload,rows">
	<reference>Defines a frameset</reference>
</tag>
<tag name="base" highlight="html-tag" case_insens="1" sgml_shorttag="1" no_close="1" attributes="href,target" attribhighlight="html-attribute" >
	<autocomplete append="&gt; &lt;/base&gt;" />
	<reference>Defines a default address or a default target for all links on a page</reference>
</tag>
<tag name="meta" highlight="html-tag" case_insens="1" sgml_shorttag="1" no_close="1" attributes="&i18n;,content,http-equiv,name,scheme" attribhighlight="html-attribute"  attrib_autocomplete_append="=&quot;&quot;" attrib_autocomplete_backup_cursor="1">
	<autocomplete append=" /&gt;" backup_cursor="2"/>
	<reference>Defines metadata about an HTML document</reference>
</tag>
<tag name="title" highlight="html-tag" case_insens="1" sgml_shorttag="1" attributes="&i18n;" attribhighlight="html-attribute">
	<reference>Defines the title of a document</reference>
</tag>

<tag id="t.html.script" name="script" highlight="html-tag" case_insens="1" sgml_shorttag="1" attributes="charset,defer,event,language,for,src,type" attribhighlight="html-attribute" >
	<autocomplete append=" type=&quot;text/javascript&quot; &gt;&#10;&#10;&lt;/script&gt;" backup_cursor="10" />
	<context symbols=" ;(){}[]:\&#34;\\',&gt;&lt;*&amp;^%!+=-|/?#&#9;&#10;&#13;." commentid_line="cm.cpplinecomment"  commentid_block="cm.cblockcomment" default_spellcheck="0">
		<element pattern="(" id="e.html.js.lparen" starts_block="1" highlight="js-brackets" block_name="Javascript Parentheses block"/>
		<element pattern=")" highlight="js-brackets" ends_block="1" blockstartelement="e.html.js.lparen" />
		<element pattern="{" id="e.html.js.lbrace" starts_block="1" highlight="js-brackets" block_name="Javascript Curly brackets block" />
		<element pattern="}" highlight="js-brackets" ends_block="1" blockstartelement="e.html.js.lbrace" />
		<element pattern="[" id="e.html.js.lbracket" starts_block="1" highlight="js-brackets" block_name="Javascript Square brackets block" />
		<element pattern="]" highlight="js-brackets" ends_block="1" blockstartelement="e.html.js.lbracket" />
		&all-javascript;
		<group class="JQuery">
			&JQuery;
		</group>
		<element pattern="//" highlight="js-comment">
			<context symbols="&#10;&#13;&gt;&lt; " highlight="js-comment">
				<element pattern="(&#10;|&#13;|&#13;&#10;)" is_regex="1" highlight="js-comment" ends_context="1" />
				<element id="end-script-js-comment" pattern="&lt;/script&gt;" highlight="html-tag" ends_context="2" case_insens="1" ends_block="1" blockstartelement="t.html.script"/>
			</context>
		</element>
		<element id="e.html.js.blockcomment" pattern="/*" starts_block="1" highlight="js-comment" block_name="Javascript block comment">
			<context symbols="*/&#9;&#10;&#13;&gt;&lt; " highlight="js-comment">
				<element pattern="*/" ends_block="1" blockstartelement="e.html.js.blockcomment" highlight="js-comment" mayfold="1" ends_context="1" />
				<element id="end-script-js-blockcomment" pattern="&lt;/script&gt;" highlight="html-tag" case_insens="1" ends_context="2" ends_block="1" blockstartelement="t.html.script"/>
			</context>
		</element>
		<!--<element idref="e.html.lcomment"/>-->
	</context>
</tag>

<tag name="link" highlight="html-tag" case_insens="1" sgml_shorttag="1" no_close="1" attributes="&univ;,&i18n;&evnt;,charset,href,hreflang,media,rel,rev,target,type" attribhighlight="html-attribute"  attrib_autocomplete_append="=&quot;&quot;" attrib_autocomplete_backup_cursor="1" >
	<autocomplete append=" /&gt;" backup_cursor="2"/>
	<reference>Defines the relationship between a document and an external resource </reference>
</tag>

<tag name="body" highlight="html-tag" case_insens="1" sgml_shorttag="1"   attributes="alink,background,bgcolor,link,onload,onunload,text,vlink,&univ;,&i18n;" attribhighlight="html-attribute">
	<autocomplete append="&gt;&#10;&#10;&lt;/body&gt;" backup_cursor="8" />
	<reference>Defines the document's body</reference>
</tag>

<group highlight="html-reference-external-tag" attribhighlight="html-attribute" attrib_autocomplete_append="=&quot;&quot;" attrib_autocomplete_backup_cursor="1">
	<autocomplete enable="1" />
	<tag name="a" case_insens="1" sgml_shorttag="1" attributes="accesskey,charset,coords,href,hreflang,name,onblur,onfocus,rel,rev,shape,tabindex,target,type,&univ;,&i18n;,&evnt;" >
		<autocomplete append=" href=&#34;&#34; &gt;" />
		<reference>The a tag defines an anchor, but it is usually referred to as a link or a hyperlink. An anchor can be used in two ways:
1. To create a link to another document, by using the href attribute &lt;a href=&quot;http://example/&quot;&gt;text to click on&lt;/a&gt;
2. To create a bookmark inside a document, by using the name attribute &lt;a name=&quot;foo&quot;&gt;&lt;/a&gt;
</reference>
	</tag>
	<tag name="img" case_insens="1" sgml_shorttag="1" no_close="1" attributes="&univ;,&i18n;,&evnt;,align,alt,border,height,hspace,ismap,longdesc,name,src,usemap,vspace,width" >
		<autocomplete append=" src=&#34;&#34; alt=&#34;&#34; /&gt;" backup_cursor="11"  class="self_close_singleton_tags" />
		<autocomplete append=" src=&#34;&#34; alt=&#34;&#34;&gt;" backup_cursor="9" notclass="self_close_singleton_tags" />
		<reference>The img tag inserts an image into a document.
It is mostly used as &lt;img src=&quot;example.jpg&quot; width=&quot;100&quot; height=&quot;100&quot; alt=&quot;text to show when image isnot loaded&quot;/&gt;
		</reference>
	</tag>
	<tag name="object" case_insens="1" sgml_shorttag="1" attributes="align,archive,border,classid,codebase,codetype,data,declare,height,hspace,name,standby,tabindex,type,usemap,vspace,width,&univ;,&i18n;,&evnt;">
		<reference>Defines an embedded object</reference>
	</tag>
	<tag name="param" case_insens="1" sgml_shorttag="1" no_close="1" attributes="id,name,type,value,valuetype" >
		<autocomplete append=" name=&#34;&#34; &gt;" />
	</tag>
</group>

<group highlight="html-tag" attribhighlight="html-attribute" attrib_autocomplete_append="=&quot;&quot;" attrib_autocomplete_backup_cursor="1">
	<autocomplete enable="1" />
	<tag name="abbr" case_insens="1" sgml_shorttag="1" attributes="&univ;,&i18n;,&evnt;">
		<reference>Defines an abbreviation</reference>
	</tag>
	<tag name="acronym" case_insens="1" sgml_shorttag="1" attributes="&univ;,&i18n;,&evnt;">
		<reference>Defines an acronym</reference>
	</tag>
	<tag name="address" case_insens="1" sgml_shorttag="1" attributes="&univ;,&i18n;,&evnt;">
		<reference>Defines an address</reference>
	</tag>
	<tag name="area" case_insens="1" sgml_shorttag="1" no_close="1" attributes="&univ;,&i18n;,&evnt;,alt,accesskey,coords,href,nohref,onblur,onfocus,shape,tabindex,target">
		<reference>Defines a click-able area inside an image-map</reference>
	</tag>
	<tag name="b" case_insens="1" sgml_shorttag="1" attributes="&univ;,&i18n;,&evnt;">
		<reference>Render content in bold face</reference>
	</tag>
	<tag name="bdo" case_insens="1" sgml_shorttag="1" attributes="&univ;,&i18n;">
		<reference>Defines/overrides the text direction (right-to-left or left-to-right)</reference>
	</tag>
	<tag name="big" case_insens="1" sgml_shorttag="1" attributes="&univ;,&i18n;">
		<reference>Renders content as bigger text</reference>
	</tag>
	<tag name="blockquote" case_insens="1" sgml_shorttag="1" attributes="&univ;,&i18n;,&evnt;,cite">
		<reference>Defines a long quotation</reference>
	</tag>
	<tag name="br" case_insens="1" sgml_shorttag="1" no_close="1"  attributes="&univ;,clear">
		<autocomplete append=" /&gt;" class="self_close_singleton_tags" />
		<autocomplete append="&gt;" notclass="self_close_singleton_tags" />
		<reference>Defines a single line break</reference>
	</tag>
	<tag name="button" case_insens="1" sgml_shorttag="1" attributes="&univ;,&i18n;,&evnt;,accesskey,disabled,name,onblur,onfocus,tabindex,type,value">
		<reference>Defines a push button</reference>
	</tag>
	<tag name="cite" case_insens="1" sgml_shorttag="1" attributes="&univ;,&i18n;,&evnt;">
		<reference>Defines a citation</reference>
	</tag>
	<tag name="code" case_insens="1" sgml_shorttag="1" attributes="&univ;,&i18n;,&evnt;">
		<reference>Defines computer code text</reference>
	</tag>
	<tag name="col" case_insens="1" sgml_shorttag="1" no_close="1" attributes="&univ;,&i18n;,&evnt;,align,char,charoff,span,valign,width">
		<reference>Defines attribute values for one or more columns in a table</reference>
	</tag>
	<tag name="colgroup" case_insens="1" sgml_shorttag="1" attributes="&univ;,&i18n;,&evnt;,align,char,charoff,span,valign,width">
		<reference>Defines a column group in a table for formatting</reference>
	</tag>
	<tag name="dd" case_insens="1" sgml_shorttag="1" attributes="&univ;,&i18n;,&evnt;">
		<reference>Defines a definition list definition</reference>
	</tag>
	<tag name="del" case_insens="1" sgml_shorttag="1"  attributes="&univ;,&i18n;,&evnt;,cite,datetime">
		<reference>Defines deleted text</reference>
	</tag>
	<tag name="dfn" case_insens="1" sgml_shorttag="1" attributes="&univ;,&i18n;,&evnt;">
		<reference>Defines a definition term</reference>
	</tag>
	<tag name="div" block_name="DIV block" case_insens="1" sgml_shorttag="1" attributes="&univ;,&i18n;,&evnt;,align">
		<reference>Defines a block section in a document - it provides no visual change by itself</reference>
	</tag>
	<tag name="dl" case_insens="1" sgml_shorttag="1" attributes="&univ;,&i18n;,&evnt;,compact">
		<reference>Defines a definition list</reference>
	</tag>
	<tag name="dt" case_insens="1" sgml_shorttag="1" attributes="&univ;,&i18n;,&evnt;">
		<reference>Defines a definition list term</reference>
	</tag>
	<tag name="em" case_insens="1" sgml_shorttag="1" attributes="&univ;,&i18n;,&evnt;">
		<reference>Defines emphasized text</reference>
	</tag>
	<tag name="h1" case_insens="1" sgml_shorttag="1" attributes="&univ;,&i18n;,&evnt;,align">
		<reference>Defines a HTML heading</reference>
	</tag>
	<tag name="h2" case_insens="1" sgml_shorttag="1" attributes="&univ;,&i18n;,&evnt;,align">
		<reference>Defines a HTML heading</reference>
	</tag>
	<tag name="h3" case_insens="1" sgml_shorttag="1" attributes="&univ;,&i18n;,&evnt;,align">
		<reference>Defines a HTML heading</reference>
	</tag>
	<tag name="h4" case_insens="1" sgml_shorttag="1" attributes="&univ;,&i18n;,&evnt;,align">
		<reference>Defines a HTML heading</reference>
	</tag>
	<tag name="h5" case_insens="1" sgml_shorttag="1" attributes="&univ;,&i18n;,&evnt;,align">
		<reference>Defines a HTML heading</reference>
	</tag>
	<tag name="h6" case_insens="1" sgml_shorttag="1" attributes="&univ;,&i18n;,&evnt;,align">
		<reference>Defines a HTML heading</reference>
	</tag>
	<tag name="hr" case_insens="1" sgml_shorttag="1" no_close="1"  attributes="&univ;,align,noshade,size,width" >
		<autocomplete append=" /&gt;" class="self_close_singleton_tags" />
		<autocomplete append="&gt;" notclass="self_close_singleton_tags" />
		<reference>Defines a horizontal line</reference>
	</tag>
	<tag name="i" case_insens="1" sgml_shorttag="1" attributes="&univ;,&i18n;,&evnt;">
		<reference>Defines italic text</reference>
	</tag>
	<tag name="ins" case_insens="1" sgml_shorttag="1"  attributes="&univ;,&i18n;,&evnt;,cite,datetime">
		<reference>Defines inserted text</reference>
	</tag>
	<tag name="kbd" case_insens="1" sgml_shorttag="1" attributes="&univ;,&i18n;,&evnt;">
		<reference>Defines keyboard text</reference>
	</tag>
	<tag name="li" case_insens="1" sgml_shorttag="1" attributes="&univ;,&i18n;,&evnt;,type,value">
		<reference>Defines a list item</reference>
	</tag>
	<tag name="map" case_insens="1" sgml_shorttag="1" attributes="&univ;,&i18n;,&evnt;,name">
		<reference>Defines an image-map with clickable areas</reference>
	</tag>
	<tag name="noscript" case_insens="1" sgml_shorttag="1" attributes="&univ;,&i18n;,&evnt;">
		<reference>Defines alternate content for users that have scripts disabled</reference>
	</tag>
	<tag name="ol" case_insens="1" sgml_shorttag="1" attributes="&univ;,&i18n;,&evnt;,compact,start,type">
		<reference>Defines an ordered list</reference>
	</tag>
	<tag name="p" block_name="Paragraph block" case_insens="1" sgml_shorttag="1" attributes="&univ;,&i18n;,&evnt;,align">
		<reference>Defines a paragraph</reference>
	</tag>
	<tag name="pre" case_insens="1" sgml_shorttag="1" attributes="&univ;,&i18n;,&evnt;,width">
		<reference>Defines preformatted text</reference>
	</tag>
	<tag name="q" case_insens="1" sgml_shorttag="1" attributes="&univ;,&i18n;,&evnt;,cite">
		<reference>Defines a short quotation</reference>
	</tag>
	<tag name="samp" case_insens="1" sgml_shorttag="1" attributes="&univ;,&i18n;,&evnt;">
		<reference>Defines sample computer code</reference>
	</tag>
	<tag name="small" case_insens="1" sgml_shorttag="1" attributes="&univ;,&i18n;,&evnt;">
		<reference>Renders as smaller text</reference>
	</tag>
	<tag name="span" case_insens="1" sgml_shorttag="1" attributes="&univ;,&i18n;,&evnt;">
		<reference>Defines an inline section of the document - it provides no visual change by itself</reference>
	</tag>
	<tag name="strong" case_insens="1" sgml_shorttag="1" attributes="&univ;,&i18n;,&evnt;">
		<reference>Defines strong emphasized text</reference>
	</tag>
	<tag name="sub" case_insens="1" sgml_shorttag="1" attributes="&univ;,&i18n;,&evnt;">
		<reference>Defines subscripted text</reference>
	</tag>
	<tag name="sup" case_insens="1" sgml_shorttag="1" attributes="&univ;,&i18n;,&evnt;">
		<reference>Defines superscripted text</reference>
	</tag>
	<tag name="tt" case_insens="1" sgml_shorttag="1" attributes="&univ;,&i18n;,&evnt;">
		<reference>Defines teletype text</reference>
	</tag>
	<tag name="ul" case_insens="1" sgml_shorttag="1" attributes="&univ;,&i18n;,&evnt;,compact,type">
		<reference>Defines an unordered list</reference>
	</tag>
	<!--<tag name="var" case_insens="1" sgml_shorttag="1" attributes="&univ;,&i18n;,&evnt;">
		<reference>Defines a variable part of a text</reference>
	</tag>-->
	<tag name="section"  case_insens="1" sgml_shorttag="1" attributes="&univ;,&i18n;,&evnt;">
		<reference>Defines a section in the document</reference>
	</tag>
	<tag name="summary"  case_insens="1" sgml_shorttag="1" attributes="&univ;,&i18n;,&evnt;">
		<reference>Defines a visible heading for a &lt;details&gt; element</reference>
	</tag>
	<tag name="nav"  case_insens="1" sgml_shorttag="1" attributes="&univ;,&i18n;,&evnt;">
		<reference>Defines navigation links in the document</reference>
	</tag>
	<tag name="article"  case_insens="1" sgml_shorttag="1" attributes="&univ;,&i18n;,&evnt;">
		<reference>Defines an article in the document</reference>
	</tag>
	<tag name="aside"  case_insens="1" sgml_shorttag="1" attributes="&univ;,&i18n;,&evnt;">
		<reference>Defines content aside from the page content</reference>
	</tag>
	<tag name="bdi"  case_insens="1" sgml_shorttag="1" attributes="&univ;,&i18n;,&evnt;">
		<reference>Defines a part of text that might be formatted in a different direction from other text</reference>
	</tag>
	<tag name="details"  case_insens="1" sgml_shorttag="1" attributes="&univ;,&i18n;,&evnt;">
		<reference>Defines additional details that the user can view or hide</reference>
	</tag>
	<tag name="dialog"  case_insens="1" sgml_shorttag="1" attributes="&univ;,&i18n;,&evnt;">
		<reference>Defines a dialog box or window</reference>
	</tag>
	<tag name="main"  case_insens="1" sgml_shorttag="1" attributes="&univ;,&i18n;,&evnt;">
		<reference>Defines the main content of a document
<b>Categories:</b> flow
<b>Parents:</b> flow
<b>Children:</b> flow
<b>Interface:</b> HTMLElement</reference>
	</tag>
	<tag name="menuitem"  case_insens="1" sgml_shorttag="1" attributes="&univ;,&i18n;,&evnt;">
		<reference>Defines a command/menu item that the user can invoke from a popup menu</reference>
	</tag>
	<tag name="meter"  case_insens="1" sgml_shorttag="1" attributes="&univ;,&i18n;,&evnt;">
		<reference>Defines a scalar measurement within a known range (a gauge)</reference>
	</tag>
	<tag name="hgroup"  case_insens="1" sgml_shorttag="1" attributes="&univ;,&i18n;,&evnt;">
		<reference></reference>
	</tag>
	<tag name="header"  case_insens="1" sgml_shorttag="1" attributes="&univ;,&i18n;,&evnt;">
		<reference>Defines a header for the document or a section</reference>
	</tag>
	<tag name="footer"  case_insens="1" sgml_shorttag="1" attributes="&univ;,&i18n;,&evnt;">
		<reference>Defines a footer for the document or a section</reference>
	</tag>
	<tag name="figcaption"  case_insens="1" sgml_shorttag="1" attributes="&univ;,&i18n;,&evnt;">
		<reference>Defines a caption for a &lt;figure&gt; element</reference>
	</tag>
	<tag name="figure"  case_insens="1" sgml_shorttag="1" attributes="&univ;,&i18n;,&evnt;">
		<reference>Defines self-contained content, like illustrations, diagrams, photos, code listings, etc.</reference>
	</tag>
	<tag name="mark"  case_insens="1" sgml_shorttag="1" attributes="&univ;,&i18n;,&evnt;">
		<reference>Defines marked or highlighted text</reference>
	</tag>
	<tag name="ruby"  case_insens="1" sgml_shorttag="1" attributes="&univ;,&i18n;,&evnt;">
		<reference>Defines a ruby annotation (for East Asian typography)</reference>
	</tag>
	<tag name="rp"  case_insens="1" sgml_shorttag="1" attributes="&univ;,&i18n;,&evnt;">
		<reference>Defines what to show in browsers that do not support ruby annotations</reference>
	</tag>
	<tag name="rt"  case_insens="1" sgml_shorttag="1" attributes="&univ;,&i18n;,&evnt;">
		<reference>Defines an explanation/pronunciation of characters (for East Asian typography)</reference>
	</tag>	
	<tag name="time"  case_insens="1" sgml_shorttag="1" attributes="&univ;,&i18n;,&evnt;,datetime">
		<reference>Defines a date/time</reference>
	</tag>
	<tag name="video"  case_insens="1" sgml_shorttag="1" attributes="&univ;,&i18n;,&evnt;,width,height,src,poster,autoplay,controls,loop,mute,preload">
		<reference></reference>
	</tag>
	<tag name="wbr"  case_insens="1" sgml_shorttag="1" attributes="&univ;,&i18n;,&evnt;">
		<reference>Defines a possible line-break</reference>
	</tag>
	<tag name="datalist"  case_insens="1" sgml_shorttag="1" attributes="&univ;,&i18n;,&evnt;">
		<reference>Defines pre-defined options for input controls (a form element)</reference>
	</tag>
	<tag name="keygen"  case_insens="1" sgml_shorttag="1" attributes="&univ;,&i18n;,&evnt;">
		<reference>Defines a key-pair generator field (for forms)</reference>
	</tag>
	<tag name="output"  case_insens="1" sgml_shorttag="1" attributes="&univ;,&i18n;,&evnt;">
		<reference>Defines the result of a calculation</reference>
	</tag>
	<tag name="audio"  case_insens="1" sgml_shorttag="1" attributes="&univ;,&i18n;,&evnt;,autoplay,controls,loop,mute,preload,src">
		<reference></reference>
	</tag>
	<tag name="canvas"  case_insens="1" sgml_shorttag="1" attributes="&univ;,&i18n;,&evnt;,width,height">
		<reference></reference>
	</tag>	
	<tag name="track"  case_insens="1" sgml_shorttag="1" attributes="&univ;,&i18n;,&evnt;">
		<reference></reference>
	</tag>
	<tag name="source"  case_insens="1" sgml_shorttag="1" attributes="&univ;,&i18n;,&evnt;">
		<reference></reference>
	</tag>	
	<tag name="progress"  case_insens="1" sgml_shorttag="1" attributes="&univ;,&i18n;,&evnt;,value,max">
		<reference>Defines the progress of a task
<b>Categories:</b>flow; phrasing; labelable
<b>Parents:</b>phrasing
<b>Children:</b>phrasing*
<b>Interface:</b> HTMLProgressElement</reference>
	</tag>
	<tag name=""  case_insens="1" sgml_shorttag="1" attributes="&univ;,&i18n;,&evnt;">
		<reference></reference>
	</tag>	


</group>

<context id="attribute.string" symbols="&quot;' ">
	<element pattern="&quot;" highlight="string">
		<context symbols="&quot; &lt;" highlight="string">
			<element pattern="&quot;" ends_context="2" highlight="string" />
			<group class="is_PHP">
				<group class="php_short_open_tag">
					<element idref="e.php.short.open" />
				</group>
				<group notclass="php_short_open_tag">
					<element idref="e.php.open" />
				</group>
			</group>
		</context>
	</element>
	<element pattern="'" highlight="string">
		<context symbols="' &lt;" highlight="string">
			<element pattern="'" ends_context="2" highlight="string" />
			<group class="is_PHP">
				<group class="php_short_open_tag">
					<element idref="e.php.short.open" />
				</group>
				<group notclass="php_short_open_tag">
					<element idref="e.php.open" />
				</group>
			</group>
		</context>
	</element>
</context>

<context id="attribute.string.style" symbols=" ;:'&quot;">
	<element pattern='"' ends_context="1" />
	<element pattern="'" ends_context="1" />
	&css-rules;
</context>

<context id="attribute.string.dir" symbols=" ;:'&quot;">
	<element pattern="ltr" ><autocomplete enable="1" /><reference>Left to right direction</reference></element>
	<element pattern="rtl" ><autocomplete enable="1" /><reference>Right to left direction</reference></element>
	<element pattern="auto" ><autocomplete enable="1" /><reference>Auto direction</reference></element>
	<element pattern="&quot;" highlight="string">
		<context symbols="&quot; &lt;" highlight="string">
			<element pattern="ltr" ><autocomplete enable="1" /><reference>Left to right direction</reference></element>
			<element pattern="rtl" ><autocomplete enable="1" /><reference>Right to left direction</reference></element>
			<element pattern="auto" ><autocomplete enable="1" /><reference>Auto direction</reference></element>
			<element pattern="&quot;" ends_context="2" highlight="string" />
			<group class="is_PHP">
				<group class="php_short_open_tag">
					<element idref="e.php.short.open" />
				</group>
				<group notclass="php_short_open_tag">
					<element idref="e.php.open" />
				</group>
			</group>
		</context>
	</element>
	<element pattern="'" highlight="string">
		<context symbols="' &lt;" highlight="string">
			<element pattern="ltr" ><autocomplete enable="1" /><reference>Left to right direction</reference></element>
			<element pattern="rtl" ><autocomplete enable="1" /><reference>Right to left direction</reference></element>
			<element pattern="auto" ><autocomplete enable="1" /><reference>Auto direction</reference></element>
			<element pattern="'" ends_context="2" highlight="string" />
			<group class="is_PHP">
				<group class="php_short_open_tag">
					<element idref="e.php.short.open" />
				</group>
				<group notclass="php_short_open_tag">
					<element idref="e.php.open" />
				</group>
			</group>
		</context>
	</element>
</context>

<element id="tag.var" pattern="&lt;var" highlight="html-tag" case_insens="1" starts_block="1">
<reference>Defines a variable part of a text</reference>
<context symbols=" &gt;'&quot;">
	<element pattern="&gt;" ends_context="1" highlight="html-tag"/>
	<element pattern="/&gt;" ends_context="1" highlight="html-tag" ends_block="1" blockstartelement="tag.var" />
	<element pattern="style[ ]*=[ ]*['&quot;]" is_regex="1" highlight="html-attribute" case_insens="1">
		<autocomplete string="style=&quot;&quot;" backup_cursor="1" />
		<context idref="attribute.string.style" />
	</element>
	<element pattern="id[ ]*=" highlight="html-attribute" case_insens="1" is_regex="1">
		<autocomplete string="id=&quot;&quot;" backup_cursor="1" />
		<context idref="attribute.string" />
	</element>
	<element pattern="lang[ ]*=" highlight="html-attribute" case_insens="1" is_regex="1">
		<autocomplete string="lang=&quot;&quot;" backup_cursor="1" />
		<context idref="attribute.string" />
	</element>
	<element pattern="class[ ]*=" highlight="html-attribute" case_insens="1" is_regex="1">
		<reference>specifies one or more classnames for an element (refers to a class in a style sheet)</reference>
		<autocomplete string="class=&quot;&quot;" backup_cursor="1" />
		<context idref="attribute.string" />
	</element>
	<element pattern="dir[ ]*=" highlight="html-attribute" case_insens="1" is_regex="1">
		<reference>specifies the text direction of the element's content</reference>
		<autocomplete string="dir=&quot;&quot;" backup_cursor="1" />
		<context idref="attribute.string.dir" />
	</element>
</context>
</element>
<element pattern="&lt;/var&gt;" highlight="html-tag" ends_block="1" blockstartelement="tag.var" />



<group highlight="html-deprecated-tag" attribhighlight="html-attribute" attrib_autocomplete_append="=&quot;&quot;" attrib_autocomplete_backup_cursor="1">
	<autocomplete enable="1" />
	<tag name="applet" case_insens="1" sgml_shorttag="1" attributes="&univ;,align,alt,archive,code,codebase,height,hspace,name,object,vspace,width">
		<reference>Defines an embedded Java applet (<b>deprecated</b>)</reference>
	</tag>
	<tag name="basefont" case_insens="1" sgml_shorttag="1" attributes="id,color,face,size">
		<reference>Defines the default font face, size and color for the text in a document (<b>deprecated</b>)</reference>
	</tag>
	<tag name="center" case_insens="1" sgml_shorttag="1" attributes="&univ;,&i18n;,&evnt;">
		<reference>Center text (<b>deprecated</b>). Use style=&quot;text-align: center;&quot; instead.</reference>
	</tag>
	<tag name="dir" case_insens="1" sgml_shorttag="1" attributes="&univ;,&i18n;,&evnt;,compact">
		<reference>Defines a list of directory titles (<b>deprecated</b>)</reference>
	</tag>
	<tag name="font" case_insens="1" sgml_shorttag="1" attributes="&univ;,&i18n;,color,face,size">
		<reference>Defines font face, color and size for text (<b>deprecated</b>)</reference>
	</tag>
	<tag name="isindex" case_insens="1" sgml_shorttag="1" attributes="class,dir,id,lang,prompt,style,title">
		<reference>Defines an input control</reference>
	</tag>
	<tag name="menu" case_insens="1" sgml_shorttag="1" attributes="&univ;,&i18n;,&evnt;,compact">
		<reference>Defines a list of menu choices (<b>deprecated</b>)</reference>
	</tag>
	<tag name="s" case_insens="1" sgml_shorttag="1" attributes="&univ;,&i18n;,&evnt;">
		<reference>Render strike-through style text (<b>deprecated</b>)</reference>
	</tag>
	<tag name="strike" case_insens="1" sgml_shorttag="1" attributes="&univ;,&i18n;,&evnt;">
		<reference>Render strike-through style text (<b>deprecated</b>)</reference>
	</tag>
	<tag name="u" case_insens="1" sgml_shorttag="1" attributes="&univ;,&i18n;,&evnt;">
		<reference>Defines underlined text (<b>deprecated</b>)</reference>
	</tag>
</group>

<group highlight="html-deprecated-tag" attribhighlight="html-attribute" attrib_autocomplete_append="=&quot;&quot;" attrib_autocomplete_backup_cursor="1">
	<autocomplete enable="1" />
	<tag name="frame" case_insens="1" sgml_shorttag="1" attributes="&univ;,frameborder,longdesc,marginwidth,marginheight,name,noresize,scrolling,src">
		<reference>Defines a particular window (frame) within a frameset</reference>
	</tag>
	<tag name="noframes" case_insens="1" sgml_shorttag="1" attributes="&univ;,&i18n;,&evnt;">
		<reference>Defines content for browsers not able to handle/show frames</reference>
	</tag>
	<tag name="iframe" case_insens="1" sgml_shorttag="1" attributes="&univ;,align,frameborder,height,longdesc,marginwidth,marginheight,name,scrolling,src,width">
		<reference>Defines an inline frame that contains another document</reference>
	</tag>
</group>

<group highlight="html-form-tag" attribhighlight="html-attribute" attrib_autocomplete_append="=&quot;&quot;" attrib_autocomplete_backup_cursor="1">
	<autocomplete enable="1" />
	<tag name="fieldset" case_insens="1" sgml_shorttag="1" attributes="&univ;,&i18n;,&evnt;">
		<reference>Defines a border around elements in a form</reference>
	</tag>
	<tag name="form" case_insens="1" sgml_shorttag="1" attributes="&univ;,&i18n;,&evnt;,accept,accept-charset,action,enctype,method,name,onreset,onsubmit,target">
		<reference>Defines an HTML form for user input. The action attribute defines where a submit will be sent to. The form tag usually surrounds other form elements such as input, textarea and buttons.
A simple example is:
&lt;form action=&quot;form_action.php&quot; method=&quot;get&quot;&gt;
First name: &lt;input type=&quot;text&quot; name=&quot;fname&quot; /&gt;&lt;br /&gt;
Last name: &lt;input type=&quot;text&quot; name=&quot;lname&quot; /&gt;&lt;br /&gt;
&lt;input type=&quot;submit&quot; value=&quot;Submit&quot; /&gt;
&lt;/form&gt;
		</reference>
	</tag>
	<tag name="input" case_insens="1" sgml_shorttag="1" no_close="1" attributes="&univ;,&i18n;,&evnt;,accept,accesskey,align,alt,checked,disabled,ismap,maxlength,name,onblur,onchange,onfocus,onselect,readonly,size,src,tabindex,type,usemap,value" >
		<autocomplete append=" /&gt;" backup_cursor="2" />
		<reference>Defines an input control for a form. The input field has many forms depending on the type attribute.
&lt;input type=&quot;button&quot; name=&quot;foo&quot; value=&quot;title&quot; /&gt;
&lt;input type=&quot;checkbox&quot; name=&quot;foo&quot; value=&quot;title&quot; checked=&quot;checked&quot; /&gt;
&lt;input type=&quot;file&quot; name=&quot;foo&quot; value=&quot;title&quot; accept=&quot;text/plain&quot; /&gt;
&lt;input type=&quot;hidden&quot; name=&quot;foo&quot; value=&quot;title&quot; /&gt;
&lt;input type=&quot;image&quot; name=&quot;foo&quot; value=&quot;title&quot; src=&quot;submit.png&quot; alt=&quot;Submit&quot; /&gt;
&lt;input type=&quot;password&quot; name=&quot;foo&quot; value=&quot;title&quot; /&gt;
&lt;input type=&quot;radio&quot; name=&quot;foo&quot; value=&quot;title&quot; /&gt;
&lt;input type=&quot;reset&quot; name=&quot;foo&quot; value=&quot;title&quot; /&gt;
&lt;input type=&quot;submit&quot; name=&quot;foo&quot; value=&quot;title&quot; /&gt;
&lt;input type=&quot;text&quot; name=&quot;foo&quot; value=&quot;title&quot; maxlenght=&quot;50&quot; /&gt;
		</reference>
	</tag>
	<tag name="label" case_insens="1" sgml_shorttag="1" attributes="&univ;,&i18n;,&evnt;,accesskey,for,onblur,onfocus">
		<reference>Defines a label for an input element</reference>
	</tag>
	<tag name="legend" case_insens="1" sgml_shorttag="1" attributes="&univ;,&i18n;,&evnt;,accesskey,align">
		<reference>Defines a caption for a fieldset element</reference>
	</tag>
	<tag name="optgroup" case_insens="1" sgml_shorttag="1" attributes="&univ;,&i18n;,&evnt;,disabled,label">
		<reference>	Defines a group of related options in a select list</reference>
	</tag>
	<tag name="option" case_insens="1" sgml_shorttag="1" attributes="&univ;,&i18n;,&evnt;,disabled,label,selected,value">
		<reference>Defines an option in a select list</reference>
	</tag>
	<tag name="select" case_insens="1" sgml_shorttag="1" attributes="&univ;,&i18n;,&evnt;,disabled,multiple,name,onblur,onchange,onfocus,size,tabindex">
		<reference>Defines a select list (drop-down list)
&lt;select name=&quot;favourite&quot;&gt;
  &lt;option value=&quot;vi&quot;&gt;Vi&lt;/option&gt;
  &lt;option value=&quot;joe&quot;&gt;Joe&lt;/option&gt;
  &lt;option value=&quot;bluefish&quot; selected=&quot;selected&quot;&gt;Bluefish&lt;/option&gt;
  &lt;option value=&quot;gedit&quot;&gt;Gedit&lt;/option&gt;
&lt;/select&gt;
</reference>
	</tag>
	<tag name="textarea" case_insens="1" sgml_shorttag="1" attributes="&univ;,&i18n;,&evnt;,accesskey,cols,disabled,name,onblur,onchange,onfocus,onselect,readonly,rows,tabindex">
		<reference>Defines a multi-line text input control
&lt;textarea rows=&quot;2&quot; cols=&quot;20&quot;&gt;
Initial text here.
&lt;/textarea&gt;
</reference>
	</tag>
</group>

<group highlight="html-table-tag" attribhighlight="html-attribute" attrib_autocomplete_append="=&quot;&quot;" attrib_autocomplete_backup_cursor="1">
	<autocomplete enable="1" />
	<tag name="table" case_insens="1" sgml_shorttag="1" attributes="align,border,bgcolor,cellpadding,cellspacing,frame,rules,summary,width,&univ;,&i18n;,&evnt;" >
		<autocomplete append=" summary=&quot;&quot; &gt;&#10;&#10;&lt;/table&gt;" backup_cursor="9" />
		<reference>Defines a table</reference>
	</tag>
	<tag name="caption" case_insens="1" sgml_shorttag="1" attributes="align,&univ;,&i18n;,&evnt;" >
		<reference>Defines a table caption</reference>
	</tag>
	<tag name="td" case_insens="1" sgml_shorttag="1" attributes="abbr,align,axis,bgcolor,char,charoff,colspan,headers,height,nowrap,rowspan,scope,valign,width,&univ;,&i18n;,&evnt;" >
		<reference>Defines a cell in a table</reference>
	</tag>
	<tag name="th" case_insens="1" sgml_shorttag="1" attributes="abbr,align,axis,bgcolor,char,charoff,colspan,headers,height,nowrap,rowspan,scope,valign,width,&univ;,&i18n;,&evnt;" >
		<reference>Defines a header cell in a table</reference>
	</tag>
	<tag name="tr" case_insens="1" sgml_shorttag="1" attributes="align,bgcolor,char,charoff,valign,&univ;,&i18n;,&evnt;" >
		<reference>Defines a row in a table</reference>
	</tag>
	<tag name="tbody" case_insens="1" sgml_shorttag="1" attributes="align,char,charoff,valign,&univ;,&i18n;,&evnt;" >
		<reference>Groups the body content in a table</reference>
	</tag>
	<tag name="tfoot" case_insens="1" sgml_shorttag="1" attributes="align,char,charoff,valign,&univ;,&i18n;,&evnt;" >
		<reference>Groups the footer content in a table</reference>
	</tag>
	<tag name="thead" case_insens="1" sgml_shorttag="1" attributes="align,char,charoff,valign,&univ;,&i18n;,&evnt;" >
		<reference>Groups the header content in a table</reference>
	</tag>
</group>

<group class="autocomplete-html-entities" highlight="html-entity" >
	<autocomplete enable="1" />
<element pattern="&amp;OElig;" />
<element pattern="&amp;oelig;" />
<element pattern="&amp;Scaron;" />
<element pattern="&amp;scaron;" />
<element pattern="&amp;Yuml;" />
<element pattern="&amp;circ;" />
<element pattern="&amp;tilde;" />
<element pattern="&amp;ensp;" />
<element pattern="&amp;emsp;" />
<element pattern="&amp;thinsp;" />
<element pattern="&amp;zwnj;" />
<element pattern="&amp;zwj;" />
<element pattern="&amp;lrm;" />
<element pattern="&amp;rlm;" />
<element pattern="&amp;ndash;" />
<element pattern="&amp;mdash;" />
<element pattern="&amp;lsquo;" />
<element pattern="&amp;rsquo;" />
<element pattern="&amp;sbquo;" />
<element pattern="&amp;ldquo;" />
<element pattern="&amp;rdquo;" />
<element pattern="&amp;bdquo;" />
<element pattern="&amp;dagger;" />
<element pattern="&amp;Dagger;" />
<element pattern="&amp;permil;" />
<element pattern="&amp;lsaquo;" />
<element pattern="&amp;rsaquo;" />
<element pattern="&amp;euro;" />
<element pattern="&amp;fnof;" />
<element pattern="&amp;Alpha;" />
<element pattern="&amp;Beta;" />
<element pattern="&amp;Gamma;" />
<element pattern="&amp;Delta;" />
<element pattern="&amp;Epsilon;" />
<element pattern="&amp;Zeta;" />
<element pattern="&amp;Eta;" />
<element pattern="&amp;Theta;" />
<element pattern="&amp;Iota;" />
<element pattern="&amp;Kappa;" />
<element pattern="&amp;Lambda;" />
<element pattern="&amp;Mu;" />
<element pattern="&amp;Nu;" />
<element pattern="&amp;Xi;" />
<element pattern="&amp;Omicron;" />
<element pattern="&amp;Pi;" />
<element pattern="&amp;Rho;" />
<element pattern="&amp;Sigma;" />
<element pattern="&amp;Tau;" />
<element pattern="&amp;Uplsilon;" />
<element pattern="&amp;Phi;" />
<element pattern="&amp;Chi;" />
<element pattern="&amp;Psi;" />
<element pattern="&amp;Omega;" />
<element pattern="&amp;alpha;" />
<element pattern="&amp;beta;" />
<element pattern="&amp;gamma;" />
<element pattern="&amp;delta;" />
<element pattern="&amp;epsilon;" />
<element pattern="&amp;zeta;" />
<element pattern="&amp;eta;" />
<element pattern="&amp;theta;" />
<element pattern="&amp;iota;" />
<element pattern="&amp;kappa;" />
<element pattern="&amp;lambda;" />
<element pattern="&amp;mu;" />
<element pattern="&amp;nu;" />
<element pattern="&amp;xi;" />
<element pattern="&amp;omicron;" />
<element pattern="&amp;pi;" />
<element pattern="&amp;rho;" />
<element pattern="&amp;sigmaf;" />
<element pattern="&amp;sigma;" />
<element pattern="&amp;tau;" />
<element pattern="&amp;upsilon;" />
<element pattern="&amp;phi;" />
<element pattern="&amp;chi;" />
<element pattern="&amp;psi;" />
<element pattern="&amp;omega;" />
<element pattern="&amp;thetasym;" />
<element pattern="&amp;upsih;" />
<element pattern="&amp;piv;" />
<element pattern="&amp;bull;" />
<element pattern="&amp;hellip;" />
<element pattern="&amp;prime;" />
<element pattern="&amp;Prime;" />
<element pattern="&amp;oline;" />
<element pattern="&amp;frasl;" />
<element pattern="&amp;weierp;" />
<element pattern="&amp;image;" />
<element pattern="&amp;real;" />
<element pattern="&amp;trade;" />
<element pattern="&amp;alefsym;" />
<element pattern="&amp;larr;" />
<element pattern="&amp;uarr;" />
<element pattern="&amp;rarr;" />
<element pattern="&amp;darr;" />
<element pattern="&amp;harr;" />
<element pattern="&amp;crarr;" />
<element pattern="&amp;lArr;" />
<element pattern="&amp;uArr;" />
<element pattern="&amp;rArr;" />
<element pattern="&amp;dArr;" />
<element pattern="&amp;hArr;" />
<element pattern="&amp;forall;" />
<element pattern="&amp;part;" />
<element pattern="&amp;exist;" />
<element pattern="&amp;empty;" />
<element pattern="&amp;nabla;" />
<element pattern="&amp;isin;" />
<element pattern="&amp;notin;" />
<element pattern="&amp;ni;" />
<element pattern="&amp;prod;" />
<element pattern="&amp;sum;" />
<element pattern="&amp;minus;" />
<element pattern="&amp;lowast;" />
<element pattern="&amp;radic;" />
<element pattern="&amp;prop;" />
<element pattern="&amp;infin;" />
<element pattern="&amp;ang;" />
<element pattern="&amp;and;" />
<element pattern="&amp;or;" />
<element pattern="&amp;cap;" />
<element pattern="&amp;cup;" />
<element pattern="&amp;int;" />
<element pattern="&amp;there4;" />
<element pattern="&amp;sim;" />
<element pattern="&amp;cong;" />
<element pattern="&amp;asymp;" />
<element pattern="&amp;ne;" />
<element pattern="&amp;equiv;" />
<element pattern="&amp;le;" />
<element pattern="&amp;ge;" />
<element pattern="&amp;sub;" />
<element pattern="&amp;sup;" />
<element pattern="&amp;nsub;" />
<element pattern="&amp;sube;" />
<element pattern="&amp;supe;" />
<element pattern="&amp;oplus;" />
<element pattern="&amp;otimes;" />
<element pattern="&amp;perp;" />
<element pattern="&amp;sdot;" />
<element pattern="&amp;lceil;" />
<element pattern="&amp;rceil;" />
<element pattern="&amp;lfloor;" />
<element pattern="&amp;rfloor;" />
<element pattern="&amp;lang;" />
<element pattern="&amp;rang;" />
<element pattern="&amp;loz;" />
<element pattern="&amp;spades;" />
<element pattern="&amp;clubs;" />
<element pattern="&amp;hearts;" />
<element pattern="&amp;diams;" />
<element pattern="&amp;iexcl;" />
<element pattern="&amp;cent;" />
<element pattern="&amp;pound;" />
<element pattern="&amp;curren;" />
<element pattern="&amp;yen;" />
<element pattern="&amp;brvbar;" />
<element pattern="&amp;sect;" />
<element pattern="&amp;uml;" />
<element pattern="&amp;copy;" />
<element pattern="&amp;ordf;" />
<element pattern="&amp;laquo;" />
<element pattern="&amp;not;" />
<element pattern="&amp;shy;" />
<element pattern="&amp;reg;" />
<element pattern="&amp;macr;" />
<element pattern="&amp;deg;" />
<element pattern="&amp;plusmn;" />
<element pattern="&amp;sup2;" />
<element pattern="&amp;sup3;" />
<element pattern="&amp;acute;" />
<element pattern="&amp;micro;" />
<element pattern="&amp;para;" />
<element pattern="&amp;middot;" />
<element pattern="&amp;cedil;" />
<element pattern="&amp;sup1;" />
<element pattern="&amp;ordm;" />
<element pattern="&amp;raquo;" />
<element pattern="&amp;frac14;" />
<element pattern="&amp;frac12;" />
<element pattern="&amp;frac34;" />
<element pattern="&amp;iquest;" />
<element pattern="&amp;Agrave;" />
<element pattern="&amp;Aacute;" />
<element pattern="&amp;Acirc;" />
<element pattern="&amp;Atilde;" />
<element pattern="&amp;Auml;" />
<element pattern="&amp;Aring;" />
<element pattern="&amp;AElig;" />
<element pattern="&amp;Ccedil;" />
<element pattern="&amp;Egrave;" />
<element pattern="&amp;Eacute;" />
<element pattern="&amp;Ecirc;" />
<element pattern="&amp;Euml;" />
<element pattern="&amp;Igrave;" />
<element pattern="&amp;Iacute;" />
<element pattern="&amp;Icirc;" />
<element pattern="&amp;Iuml;" />
<element pattern="&amp;ETH;" />
<element pattern="&amp;Ntilde;" />
<element pattern="&amp;Ograve;" />
<element pattern="&amp;Oacute;" />
<element pattern="&amp;Ocirc;" />
<element pattern="&amp;Otilde;" />
<element pattern="&amp;Ouml;" />
<element pattern="&amp;times;" />
<element pattern="&amp;Oslash;" />
<element pattern="&amp;Ugrave;" />
<element pattern="&amp;Uacute;" />
<element pattern="&amp;Ucirc;" />
<element pattern="&amp;Uuml;" />
<element pattern="&amp;Yacute;" />
<element pattern="&amp;THORN;" />
<element pattern="&amp;szlig;" />
<element pattern="&amp;agrave;" />
<element pattern="&amp;aacute;" />
<element pattern="&amp;acirc;" />
<element pattern="&amp;atilde;" />
<element pattern="&amp;auml;" />
<element pattern="&amp;aring;" />
<element pattern="&amp;aelig;" />
<element pattern="&amp;ccedil;" />
<element pattern="&amp;egrave;" />
<element pattern="&amp;eacute;" />
<element pattern="&amp;ecirc;" />
<element pattern="&amp;euml;" />
<element pattern="&amp;igrave;" />
<element pattern="&amp;iacute;" />
<element pattern="&amp;icirc;" />
<element pattern="&amp;iuml;" />
<element pattern="&amp;eth;" />
<element pattern="&amp;ntilde;" />
<element pattern="&amp;ograve;" />
<element pattern="&amp;oacute;" />
<element pattern="&amp;ocirc;" />
<element pattern="&amp;otilde;" />
<element pattern="&amp;ouml;" />
<element pattern="&amp;divide;" />
<element pattern="&amp;oslash;" />
<element pattern="&amp;ugrave;" />
<element pattern="&amp;uacute;" />
<element pattern="&amp;ucirc;" />
<element pattern="&amp;uuml;" />
<element pattern="&amp;yacute;" />
<element pattern="&amp;thorn;" />
<element pattern="&amp;yuml;" />
<element pattern="&amp;nbsp;" />
<element pattern="&amp;quot;" />
<element pattern="&amp;amp;" />
<element pattern="&amp;lt;" />
<element pattern="&amp;gt;" />
<element pattern="&amp;apos;" />

<element pattern="&amp;#[a-z0-9]+;" is_regex="1" >
	<autocomplete enable="0" />
</element>
</group>
<group notclass="autocomplete-html-entities">
<element pattern="&amp;[a-z0-9#]+;" is_regex="1" highlight="html-entity" />
</group>

</bfinc>