comparison runtime/syntax/dtd.vim @ 826:1cdd2661f34c v7.0d01

updated for version 7.0d01
author vimboss
date Tue, 11 Apr 2006 21:38:50 +0000
parents 3fc0f57ecb91
children dd6c2497c997
comparison
equal deleted inserted replaced
825:6675076019ae 826:1cdd2661f34c
50 syn region dtdError contained start=+<!+lc=2 end=+>+ 50 syn region dtdError contained start=+<!+lc=2 end=+>+
51 endif 51 endif
52 52
53 " if this is a html like comment hightlight also 53 " if this is a html like comment hightlight also
54 " the opening <! and the closing > as Comment. 54 " the opening <! and the closing > as Comment.
55 syn region dtdComment start=+<![ \t]*--+ end=+-->+ contains=dtdTodo 55 syn region dtdComment start=+<![ \t]*--+ end=+-->+ contains=dtdTodo,@Spell
56 56
57 57
58 " proper DTD comment 58 " proper DTD comment
59 syn region dtdComment contained start=+--+ end=+--+ contains=dtdTodo 59 syn region dtdComment contained start=+--+ end=+--+ contains=dtdTodo,@Spell
60 60
61 61
62 " Start tags (keywords). This is contained in dtdFunction. 62 " Start tags (keywords). This is contained in dtdFunction.
63 " Note that everything not contained here will be marked 63 " Note that everything not contained here will be marked
64 " as error. 64 " as error.