Add comprehensive library expansion with new components and demos
- Add new libraries: ui-accessibility, ui-animations, ui-backgrounds, ui-code-display, ui-data-utils, ui-font-manager, hcl-studio - Add extensive layout components: gallery-grid, infinite-scroll-container, kanban-board, masonry, split-view, sticky-layout - Add comprehensive demo components for all new features - Update project configuration and dependencies - Expand component exports and routing structure - Add UI landing pages planning document 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
54
projects/ui-code-display/node_modules/prismjs/components/prism-turtle.js
generated
vendored
Normal file
54
projects/ui-code-display/node_modules/prismjs/components/prism-turtle.js
generated
vendored
Normal file
@@ -0,0 +1,54 @@
|
||||
Prism.languages.turtle = {
|
||||
'comment': {
|
||||
pattern: /#.*/,
|
||||
greedy: true
|
||||
},
|
||||
'multiline-string': {
|
||||
pattern: /"""(?:(?:""?)?(?:[^"\\]|\\.))*"""|'''(?:(?:''?)?(?:[^'\\]|\\.))*'''/,
|
||||
greedy: true,
|
||||
alias: 'string',
|
||||
inside: {
|
||||
'comment': /#.*/
|
||||
}
|
||||
},
|
||||
'string': {
|
||||
pattern: /"(?:[^\\"\r\n]|\\.)*"|'(?:[^\\'\r\n]|\\.)*'/,
|
||||
greedy: true
|
||||
},
|
||||
'url': {
|
||||
pattern: /<(?:[^\x00-\x20<>"{}|^`\\]|\\(?:u[\da-fA-F]{4}|U[\da-fA-F]{8}))*>/,
|
||||
greedy: true,
|
||||
inside: {
|
||||
'punctuation': /[<>]/
|
||||
}
|
||||
},
|
||||
'function': {
|
||||
pattern: /(?:(?![-.\d\xB7])[-.\w\xB7\xC0-\uFFFD]+)?:(?:(?![-.])(?:[-.:\w\xC0-\uFFFD]|%[\da-f]{2}|\\.)+)?/i,
|
||||
inside: {
|
||||
'local-name': {
|
||||
pattern: /([^:]*:)[\s\S]+/,
|
||||
lookbehind: true
|
||||
},
|
||||
'prefix': {
|
||||
pattern: /[\s\S]+/,
|
||||
inside: {
|
||||
'punctuation': /:/
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
'number': /[+-]?\b\d+(?:\.\d*)?(?:e[+-]?\d+)?/i,
|
||||
'punctuation': /[{}.,;()[\]]|\^\^/,
|
||||
'boolean': /\b(?:false|true)\b/,
|
||||
'keyword': [
|
||||
/(?:\ba|@prefix|@base)\b|=/,
|
||||
/\b(?:base|graph|prefix)\b/i
|
||||
],
|
||||
'tag': {
|
||||
pattern: /@[a-z]+(?:-[a-z\d]+)*/i,
|
||||
inside: {
|
||||
'punctuation': /@/
|
||||
}
|
||||
}
|
||||
};
|
||||
Prism.languages.trig = Prism.languages['turtle'];
|
||||
Reference in New Issue
Block a user