Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

AvalonEdit - xshd for JSON highlighting

Tags:

wpf

avalonedit

Is there an xshd ruleset for the AvalonEdit control to highlight the JSON syntax? I tried the definition for JavaScript, but it doesn't work well, i.e.:

{
   "name" : "value"
}

both name and value have the same color using the JavaScript definition.

Is there a ruleset for JSON, and if not, how can I modify the xshd so that I get different colors for the name and value in JSON?

like image 590
alek kowalczyk Avatar asked Oct 23 '15 01:10

alek kowalczyk


1 Answers

If somebody needs something like that, I worked it out in following way:

<?xml version="1.0" encoding="utf-8" ?>
<SyntaxDefinition name="Json" extensions=".js" xmlns="http://icsharpcode.net/sharpdevelop/syntaxdefinition/2008">
  <Color name="Digits" foreground="#8700FF" exampleText="3.14" />
  <Color name="Value" foreground="#000CFF" exampleText="var text = &quot;Hello, World!&quot;;" />
  <Color name="ParamName" foreground="#057500"  exampleText="var text = &quot;Hello, World!&quot;;" />
  <RuleSet ignoreCase="false">
    <Keywords color="Digits" >
      <Word>true</Word>
      <Word>false</Word>
    </Keywords>
    <Span color="ParamName">
      <Begin>"</Begin>
      <End>(?=:)</End>
    </Span>
    <Span color="Value" multiline="true">
      <Begin>
        (?&lt;=:)\040"[^"]*
      </Begin>
      <End>"</End>
    </Span>
    <Rule color="Digits">\b0[xX][0-9a-fA-F]+|(\b\d+(\.[0-9]+)?|\.[0-9]+)([eE][+-]?[0-9]+)?</Rule>
  </RuleSet>
</SyntaxDefinition>

Not perfect, but for me enough.

like image 98
alek kowalczyk Avatar answered Sep 28 '22 08:09

alek kowalczyk