Commit 42926c48 by Torkel Ödegaard

Merge pull request #2287 from awiddersheim/feature/allow_pipe_graphite_lexer

Allow pipe ('|') in Graphite lexer
parents a79c1cb2 7f602fef
......@@ -120,6 +120,7 @@ define([
i >= 48 && i <= 57 || // 0-9
i === 36 || // $
i === 126 || // ~
i === 124 || // |
i >= 65 && i <= 90 || // A-Z
i === 95 || // _
i === 45 || // -
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment