35 lines
868 B
XML
35 lines
868 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<EdnLang version="0.1" lang="XML">
|
|
<ext>*.xml</ext>
|
|
<pass1><!-- multiline section & parse all file (now) and when modification retrive previous modification -->
|
|
<rule name="Comment">
|
|
<color>comment</color>
|
|
<start><!\-\-</start>
|
|
<end>\-\-></end>
|
|
</rule>
|
|
<rule name="doubleQuteText">
|
|
<color>doubleQuoteText</color>
|
|
<start>"</start>
|
|
<end>"</end>
|
|
<EscapeChar>\</EscapeChar>
|
|
</rule>
|
|
<rule name="simpleQuteText">
|
|
<color>doubleQuoteText</color>
|
|
<start>\@'</start>
|
|
<end>('|\n)</end>
|
|
<!--<EscapeChar>\</EscapeChar>-->
|
|
</rule>
|
|
</pass1>
|
|
<pass2>
|
|
<rule name="special Balise">
|
|
<color>error</color>
|
|
<start><\?\w*|\?></start>
|
|
</rule>
|
|
<rule name="normale Balise">
|
|
<color>functionName</color>
|
|
<start></\w*|<\w*|/>|></start>
|
|
</rule>
|
|
</pass2>
|
|
</EdnLang>
|
|
|