Refactor routing in App component to enhance navigation and improve error handling by integrating dynamic routes and updating the NotFound route.
This commit is contained in:
30
node_modules/prismjs/components/prism-linker-script.js
generated
vendored
Normal file
30
node_modules/prismjs/components/prism-linker-script.js
generated
vendored
Normal file
@@ -0,0 +1,30 @@
|
||||
Prism.languages['linker-script'] = {
|
||||
'comment': {
|
||||
pattern: /(^|\s)\/\*[\s\S]*?(?:$|\*\/)/,
|
||||
lookbehind: true,
|
||||
greedy: true
|
||||
},
|
||||
'identifier': {
|
||||
pattern: /"[^"\r\n]*"/,
|
||||
greedy: true
|
||||
},
|
||||
|
||||
'location-counter': {
|
||||
pattern: /\B\.\B/,
|
||||
alias: 'important'
|
||||
},
|
||||
|
||||
'section': {
|
||||
pattern: /(^|[^\w*])\.\w+\b/,
|
||||
lookbehind: true,
|
||||
alias: 'keyword'
|
||||
},
|
||||
'function': /\b[A-Z][A-Z_]*(?=\s*\()/,
|
||||
|
||||
'number': /\b(?:0[xX][a-fA-F0-9]+|\d+)[KM]?\b/,
|
||||
|
||||
'operator': />>=?|<<=?|->|\+\+|--|&&|\|\||::|[?:~]|[-+*/%&|^!=<>]=?/,
|
||||
'punctuation': /[(){},;]/
|
||||
};
|
||||
|
||||
Prism.languages['ld'] = Prism.languages['linker-script'];
|
Reference in New Issue
Block a user