initial vitepress site with basic nav
This commit is contained in:
parent
a7df2e049d
commit
2029f16583
1900 changed files with 1014692 additions and 0 deletions
241
node_modules/shiki/languages/json5.tmLanguage.json
generated
vendored
Normal file
241
node_modules/shiki/languages/json5.tmLanguage.json
generated
vendored
Normal file
|
@ -0,0 +1,241 @@
|
|||
{
|
||||
"scopeName": "source.json5",
|
||||
"fileTypes": ["json5"],
|
||||
"name": "json5",
|
||||
"patterns": [
|
||||
{
|
||||
"include": "#comments"
|
||||
},
|
||||
{
|
||||
"include": "#value"
|
||||
}
|
||||
],
|
||||
"repository": {
|
||||
"array": {
|
||||
"begin": "\\[",
|
||||
"beginCaptures": {
|
||||
"0": {
|
||||
"name": "punctuation.definition.array.begin.json5"
|
||||
}
|
||||
},
|
||||
"end": "\\]",
|
||||
"endCaptures": {
|
||||
"0": {
|
||||
"name": "punctuation.definition.array.end.json5"
|
||||
}
|
||||
},
|
||||
"name": "meta.structure.array.json5",
|
||||
"patterns": [
|
||||
{
|
||||
"include": "#comments"
|
||||
},
|
||||
{
|
||||
"include": "#value"
|
||||
},
|
||||
{
|
||||
"match": ",",
|
||||
"name": "punctuation.separator.array.json5"
|
||||
},
|
||||
{
|
||||
"match": "[^\\s\\]]",
|
||||
"name": "invalid.illegal.expected-array-separator.json5"
|
||||
}
|
||||
]
|
||||
},
|
||||
"constant": {
|
||||
"match": "\\b(?:true|false|null|Infinity|NaN)\\b",
|
||||
"name": "constant.language.json5"
|
||||
},
|
||||
"infinity": {
|
||||
"match": "(-)*\\b(?:Infinity|NaN)\\b",
|
||||
"name": "constant.language.json5"
|
||||
},
|
||||
"number": {
|
||||
"patterns": [
|
||||
{
|
||||
"comment": "handles hexadecimal numbers",
|
||||
"match": "(0x)[0-9a-fA-f]*",
|
||||
"name": "constant.hex.numeric.json5"
|
||||
},
|
||||
{
|
||||
"comment": "handles integer and decimal numbers",
|
||||
"match": "[+-.]?(?=[1-9]|0(?!\\d))\\d+(\\.\\d+)?([eE][+-]?\\d+)?",
|
||||
"name": "constant.dec.numeric.json5"
|
||||
}
|
||||
]
|
||||
},
|
||||
"object": {
|
||||
"begin": "\\{",
|
||||
"beginCaptures": {
|
||||
"0": {
|
||||
"name": "punctuation.definition.dictionary.begin.json5"
|
||||
}
|
||||
},
|
||||
"comment": "a json5 object",
|
||||
"end": "\\}",
|
||||
"endCaptures": {
|
||||
"0": {
|
||||
"name": "punctuation.definition.dictionary.end.json5"
|
||||
}
|
||||
},
|
||||
"name": "meta.structure.dictionary.json5",
|
||||
"patterns": [
|
||||
{
|
||||
"include": "#comments"
|
||||
},
|
||||
{
|
||||
"comment": "the json5 object key",
|
||||
"include": "#key"
|
||||
},
|
||||
{
|
||||
"begin": ":",
|
||||
"beginCaptures": {
|
||||
"0": {
|
||||
"name": "punctuation.separator.dictionary.key-value.json5"
|
||||
}
|
||||
},
|
||||
"end": "(,)|(?=\\})",
|
||||
"endCaptures": {
|
||||
"1": {
|
||||
"name": "punctuation.separator.dictionary.pair.json5"
|
||||
}
|
||||
},
|
||||
"name": "meta.structure.dictionary.value.json5",
|
||||
"patterns": [
|
||||
{
|
||||
"comment": "the json5 object value",
|
||||
"include": "#value"
|
||||
},
|
||||
{
|
||||
"match": "[^\\s,]",
|
||||
"name": "invalid.illegal.expected-dictionary-separator.json5"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"match": "[^\\s\\}]",
|
||||
"name": "invalid.illegal.expected-dictionary-separator.json5"
|
||||
}
|
||||
]
|
||||
},
|
||||
"stringSingle": {
|
||||
"begin": "[']",
|
||||
"beginCaptures": {
|
||||
"0": {
|
||||
"name": "punctuation.definition.string.begin.json5"
|
||||
}
|
||||
},
|
||||
"end": "[']",
|
||||
"endCaptures": {
|
||||
"0": {
|
||||
"name": "punctuation.definition.string.end.json5"
|
||||
}
|
||||
},
|
||||
"name": "string.quoted.json5",
|
||||
"patterns": [
|
||||
{
|
||||
"match": "(?x: # turn on extended mode\n \\\\ # a literal backslash\n (?: # ...followed by...\n [\"\\\\/bfnrt] # one of these characters\n | # ...or...\n u # a u\n [0-9a-fA-F]{4} # and four hex digits\n )\n )",
|
||||
"name": "constant.character.escape.json5"
|
||||
},
|
||||
{
|
||||
"match": "\\\\.",
|
||||
"name": "invalid.illegal.unrecognized-string-escape.json5"
|
||||
}
|
||||
]
|
||||
},
|
||||
"stringDouble": {
|
||||
"begin": "[\"]",
|
||||
"beginCaptures": {
|
||||
"0": {
|
||||
"name": "punctuation.definition.string.begin.json5"
|
||||
}
|
||||
},
|
||||
"end": "[\"]",
|
||||
"endCaptures": {
|
||||
"0": {
|
||||
"name": "punctuation.definition.string.end.json5"
|
||||
}
|
||||
},
|
||||
"name": "string.quoted.json5",
|
||||
"patterns": [
|
||||
{
|
||||
"match": "(?x: # turn on extended mode\n \\\\ # a literal backslash\n (?: # ...followed by...\n [\"\\\\/bfnrt] # one of these characters\n | # ...or...\n u # a u\n [0-9a-fA-F]{4} # and four hex digits\n )\n )",
|
||||
"name": "constant.character.escape.json5"
|
||||
},
|
||||
{
|
||||
"match": "\\\\.",
|
||||
"name": "invalid.illegal.unrecognized-string-escape.json5"
|
||||
}
|
||||
]
|
||||
},
|
||||
"key": {
|
||||
"name": "string.key.json5",
|
||||
"patterns": [
|
||||
{
|
||||
"include": "#stringSingle"
|
||||
},
|
||||
{
|
||||
"include": "#stringDouble"
|
||||
},
|
||||
{
|
||||
"match": "[a-zA-Z0-9_-]",
|
||||
"name": "string.key.json5"
|
||||
}
|
||||
]
|
||||
},
|
||||
"value": {
|
||||
"comment": "the 'value' diagram at http://json.org",
|
||||
"patterns": [
|
||||
{
|
||||
"include": "#constant"
|
||||
},
|
||||
{
|
||||
"include": "#infinity"
|
||||
},
|
||||
{
|
||||
"include": "#number"
|
||||
},
|
||||
{
|
||||
"include": "#stringSingle"
|
||||
},
|
||||
{
|
||||
"include": "#stringDouble"
|
||||
},
|
||||
{
|
||||
"include": "#array"
|
||||
},
|
||||
{
|
||||
"include": "#object"
|
||||
}
|
||||
]
|
||||
},
|
||||
"comments": {
|
||||
"patterns": [
|
||||
{
|
||||
"match": "/{2}.*",
|
||||
"name": "comment.single.json5"
|
||||
},
|
||||
{
|
||||
"begin": "/\\*\\*(?!/)",
|
||||
"captures": {
|
||||
"0": {
|
||||
"name": "punctuation.definition.comment.json5"
|
||||
}
|
||||
},
|
||||
"end": "\\*/",
|
||||
"name": "comment.block.documentation.json5"
|
||||
},
|
||||
{
|
||||
"begin": "/\\*",
|
||||
"captures": {
|
||||
"0": {
|
||||
"name": "punctuation.definition.comment.json5"
|
||||
}
|
||||
},
|
||||
"end": "\\*/",
|
||||
"name": "comment.block.json5"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue