prism-code-editor
Version:
Lightweight, extensible code editor component for the web using Prism
56 lines (55 loc) • 1.23 kB
JavaScript
import { l as e } from "../prismCore-5c7f03d0.js";
e.turtle = {
comment: {
pattern: /#.*/,
greedy: !0
},
"multiline-string": {
pattern: /"""(?:(?:""?)?(?:[^"\\]|\\.))*"""|'''(?:(?:''?)?(?:[^'\\]|\\.))*'''/,
greedy: !0,
alias: "string",
inside: {
comment: /#.*/
}
},
string: {
pattern: /"(?:[^\\"\r\n]|\\.)*"|'(?:[^\\'\r\n]|\\.)*'/,
greedy: !0
},
url: {
pattern: /<(?:[^\x00-\x20<>"{}|^`\\]|\\(?:u[\da-fA-F]{4}|U[\da-fA-F]{8}))*>/,
greedy: !0,
inside: {
punctuation: /[<>]/
}
},
function: {
pattern: /(?:(?![-.\d\xB7])[-.\w\xB7\xC0-\uFFFD]+)?:(?:(?![-.])(?:[-.:\w\xC0-\uFFFD]|%[\da-f]{2}|\\.)+)?/i,
inside: {
"local-name": {
pattern: /([^:]*:)[\s\S]+/,
lookbehind: !0
},
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: /@/
}
}
};
e.trig = e.turtle;