added wiki docs

This commit is contained in:
proddy
2020-01-09 15:27:03 +01:00
parent 95bcdf3494
commit 409c1ce09c
71 changed files with 4134 additions and 1 deletions

View File

@@ -0,0 +1,17 @@
Prism.languages.console = {
'regex': {
pattern: /(?<!\s)^\w+/im,
lookback: true
},
'operator': /^\b(?:rule)\d?\b/im,
'constant': /\b(?<=on)\s\S{1,}#\S{1,}\b/i,
'selector': /(?<!(power\w+))\s(?:on|do|endon|break|if|else|elseif|and|or)\b/i,
'boolean': /\b(?:backlog)\b/i,
'comment': /[<]\w+[>]/,
'deleted': /[;]\s/,
'json': {
pattern: /[{].*[}]/,
alias: 'language-json',
inside: Prism.languages.json
},
};