summaryrefslogtreecommitdiffstats
path: root/public/prism/prism-solution-file.min.js
diff options
context:
space:
mode:
authorArmand Philippot <git@armandphilippot.com>2021-12-30 19:47:21 +0100
committerArmand Philippot <git@armandphilippot.com>2021-12-30 19:47:21 +0100
commita98b5ea6fe8e8cc98a55e0fd793e6e8660ea31c1 (patch)
tree542810ab5aef99150db228bb54fd58303dcb31c7 /public/prism/prism-solution-file.min.js
parentab355897a12b7bda1089a44de326d41455a0f7a3 (diff)
chore: add prismjs for syntax highlighting
Diffstat (limited to 'public/prism/prism-solution-file.min.js')
-rw-r--r--public/prism/prism-solution-file.min.js33
1 files changed, 33 insertions, 0 deletions
diff --git a/public/prism/prism-solution-file.min.js b/public/prism/prism-solution-file.min.js
new file mode 100644
index 0000000..73c5a88
--- /dev/null
+++ b/public/prism/prism-solution-file.min.js
@@ -0,0 +1,33 @@
+!(function (n) {
+ var t = {
+ pattern: /\{[\da-f]{8}-[\da-f]{4}-[\da-f]{4}-[\da-f]{4}-[\da-f]{12}\}/i,
+ alias: 'constant',
+ inside: { punctuation: /[{}]/ },
+ };
+ (n.languages['solution-file'] = {
+ comment: { pattern: /#.*/, greedy: !0 },
+ string: {
+ pattern: /"[^"\r\n]*"|'[^'\r\n]*'/,
+ greedy: !0,
+ inside: { guid: t },
+ },
+ object: {
+ pattern:
+ /^([ \t]*)(?:([A-Z]\w*)\b(?=.*(?:\r\n?|\n)(?:\1[ \t].*(?:\r\n?|\n))*\1End\2(?=[ \t]*$))|End[A-Z]\w*(?=[ \t]*$))/m,
+ lookbehind: !0,
+ greedy: !0,
+ alias: 'keyword',
+ },
+ property: {
+ pattern: /^([ \t]*)(?!\s)[^\r\n"#=()]*[^\s"#=()](?=\s*=)/m,
+ lookbehind: !0,
+ inside: { guid: t },
+ },
+ guid: t,
+ number: /\b\d+(?:\.\d+)*\b/,
+ boolean: /\b(?:FALSE|TRUE)\b/,
+ operator: /=/,
+ punctuation: /[(),]/,
+ }),
+ (n.languages.sln = n.languages['solution-file']);
+})(Prism);