diff --git a/docs/assets/Logo/Skript Logo Circle 2.png b/docs/assets/Logo/Skript Logo Circle 2.png new file mode 100644 index 00000000000..9ed0ed31f74 Binary files /dev/null and b/docs/assets/Logo/Skript Logo Circle 2.png differ diff --git a/docs/assets/Logo/Skript Logo Circle.png b/docs/assets/Logo/Skript Logo Circle.png new file mode 100644 index 00000000000..b169552bbc4 Binary files /dev/null and b/docs/assets/Logo/Skript Logo Circle.png differ diff --git a/docs/assets/Logo/Skript Logo Trans.png b/docs/assets/Logo/Skript Logo Trans.png new file mode 100644 index 00000000000..9575b402aa5 Binary files /dev/null and b/docs/assets/Logo/Skript Logo Trans.png differ diff --git a/docs/assets/Logo/Skript Logo.png b/docs/assets/Logo/Skript Logo.png new file mode 100644 index 00000000000..273b1565262 Binary files /dev/null and b/docs/assets/Logo/Skript Logo.png differ diff --git a/docs/assets/icon.png b/docs/assets/icon.png new file mode 100644 index 00000000000..273b1565262 Binary files /dev/null and b/docs/assets/icon.png differ diff --git a/docs/css/highlightjs.min.css b/docs/css/highlightjs.min.css new file mode 100644 index 00000000000..e41d2e34833 --- /dev/null +++ b/docs/css/highlightjs.min.css @@ -0,0 +1,2 @@ +/* Source: https://cdnjs.cloudflare.com/ajax/libs/highlight.js/10.7.2/styles/default.min.css */ +.hljs{display:block;overflow-x:auto;padding:.5em;background:#f0f0f0}.hljs,.hljs-subst{color:#444}.hljs-comment{color:#888}.hljs-attribute,.hljs-doctag,.hljs-keyword,.hljs-meta-keyword,.hljs-name,.hljs-selector-tag{font-weight:700}.hljs-deletion,.hljs-number,.hljs-quote,.hljs-selector-class,.hljs-selector-id,.hljs-string,.hljs-template-tag,.hljs-type{color:#800}.hljs-section,.hljs-title{color:#800;font-weight:700}.hljs-link,.hljs-regexp,.hljs-selector-attr,.hljs-selector-pseudo,.hljs-symbol,.hljs-template-variable,.hljs-variable{color:#bc6060}.hljs-literal{color:#78a960}.hljs-addition,.hljs-built_in,.hljs-bullet,.hljs-code{color:#397300}.hljs-meta{color:#1f7199}.hljs-meta-string{color:#4d99bf}.hljs-emphasis{font-style:italic}.hljs-strong{font-weight:700} \ No newline at end of file diff --git a/docs/css/styles.css b/docs/css/styles.css index 988261cef89..ceda06f36e9 100644 --- a/docs/css/styles.css +++ b/docs/css/styles.css @@ -1,252 +1,617 @@ +html { + scroll-behavior: smooth; +} + +::-webkit-scrollbar { + width: 5px; + height: 5px; +} + +::-webkit-scrollbar-track { + background-color: rgba(0, 0, 0, 0.03); + border-radius: 10px; +} + +::-webkit-scrollbar-thumb { + background-color: rgba(48, 48, 51, 0.2); + border-radius: 10px; +} + * { - margin: 0px; - padding: 0px; + margin: 0px; + padding: 0px; } body { - font-family: arial; - background-color: oldlace; - display: grid; - grid-template-rows: 100vh 100vh; - grid-template-columns: minmax(15em, 18em) minmax(80%, 100%); - overflow: hidden; + font-family: "Poppins", sans-serif; + background-color: oldlace; + display: grid; + /* + grid-template-rows: 100vh 100vh; + grid-template-columns: minmax(15em, 18em) minmax(80%, 100%); + */ + grid-template-columns: 16vw 84vw; + grid-template-rows: 55px 94vh; + overflow: hidden; +} + +.main-page { + grid-template-columns: 16vw 84vw; } a { - color: darkcyan; + color: darkcyan; + transition: all 0.1s; + text-decoration: none; +} + +a:hover { + color: rgb(0, 184, 184); } a:visited { - color: mediumorchid; + color: rgb(37, 89, 142); +} + + +/* Pattern right section list items */ + +.item-details:nth-child(1) ul li:nth-child(odd) { + background-color: rgba(0, 0, 0, 0.1); +} + +.item-details:nth-child(1) ul li:nth-child(even) { + background-color: rgba(0, 0, 0, 0.05); +} + +.no-list-style { + list-style: none; } #global-navigation { - grid-row-start: 1; - grid-row-end: 1; - grid-column-start: 2; - position: sticky; - top: 0em; - - background-color: tan; - padding: 1em; - padding-left: 0em; - height: 1.37em; - z-index: 9999; -} - -#global-navigation > a { - text-decoration: none; - color: #403200; - font-size: 120%; - font-weight: bold; + grid-row-start: 1; + grid-row-end: 1; + grid-column-start: 2; + position: sticky; + top: 0em; + background-color: #292929; + padding: 15px; + z-index: 100; + bottom: 0px; +} + +#global-navigation li { + display: inline; +} - padding: 0.8em; +#global-navigation a { + text-decoration: none; + color: #ffffff; + padding: 10px; + padding-bottom: 16px; + transition: all 0.1s; } -#global-navigation > a:hover { - color: black; - background-color: #c1a97c; +#global-navigation a:hover, +.active-tab { + color: #ffc107; + /*border-bottom: 3px solid #ff9800;*/ + box-shadow: inset 0 -3px 0 #ff9800; } #side-nav { - grid-row-start: 1; - grid-row-end: 1; - grid-column-start: 1; - grid-column-end: 1; - position: sticky; - top: 3.2em; + grid-row-start: 1; + grid-row-end: 1; + grid-column-start: 1; + grid-column-end: 1; + position: sticky; + top: 60px; + height: max-content; } #nav-title { - grid-row-start: 1; - grid-row-end: 1; - grid-column-start: 1; - grid-column-end: 1; - position: sticky; - top: 0em; - - text-decoration: none; - background-color: tan; - font-size: 130%; - font-weight: bold; + grid-row-start: 1; + grid-row-end: 1; + grid-column-start: 1; + grid-column-end: 1; + position: fixed; + border-left: solid 3px #ff9800; + text-decoration: none; + background-color: #353535; + font-size: 26px; + font-weight: bold; + color: #ff9800; + height: 35px; + padding: 10px; + padding-left: 25px; + z-index: 50; + transition: color 0.2s; + width: 100%; +} + +#nav-title { + font-size: clamp(1.25em, 1.35vw, 2em); +} - padding: 0.88em; - padding-top: 0.7em; - padding-left: 1em; - height: 1em; - z-index: 9999; +#nav-title:hover { + color: rgba(255, 152, 0, 0.9); } #nav-contents { - height: calc(100vh - 3.2em); - overflow: scroll; - overflow-x: hidden; - position: sticky; - top: 3.2em; + height: calc(100vh - 60px); + /* Fix the TOP css of #side-nav */ + width: 100%; + overflow: scroll; + overflow-x: hidden; + position: sticky; } #nav-contents > a { - display: inline-block; - width: 100%; - font-size: 110%; - background-color: navajowhite; - text-decoration: none; - color: #403200; + display: block; + font-size: 18px; + background-color: rgba(0, 0, 0, 0.03); + text-decoration: none; + color: #2f3e46; + margin: 6px 10px; + word-wrap: break-word; + padding: 5px 15px; + transition: background-color 0.1s, font 0.1s; + word-break: break-word; +} - padding: 0.3em; - padding-left: 1em; +#side-nav a:focus { + font-weight: bold; } -#nav-contents > a:hover { - color: black; - background-color: #c1a97c; +#nav-contents a:hover, +.active-item { + color: black; + background-color: rgba(0, 0, 0, 0.08); + border-left: solid 3px #ff9800; } #content { - grid-row-start: 1; - grid-row-end: 1; - grid-column-start: 2; - overflow: scroll; - overflow-x: hidden; - - padding: 0.22em; - position: sticky; - top: 3.3em; - height: calc(100vh - 3.6em); + grid-row-start: 1; + grid-row-end: 1; + grid-column-start: 2; + margin-left: 30px; + position: relative; + top: 110px; + height: calc(100vh - 110px); + /* Fixed the TOP CSS 110px due to body having overflow hidden and top = 110px so the last 110px is hidden, this will fix it */ + padding: 0.22em; + padding-right: 30px; + overflow-x: hidden; + overflow-y: scroll; } -#content > p { - margin-bottom: 0.7em; - max-width: 55em; +#content.no-left-panel { + grid-column-start: 1; + grid-column-end: none; + padding: 0 8vw; + margin-left: unset; +} + +#content-no-docs { + grid-row-start: 1; + grid-row-end: 1; + grid-column-start: 2; + margin-left: 30px; + position: relative; + top: 55px; + height: calc(100vh - 55px); + /* Fixed the TOP CSS 55px due to body having overflow hidden and top = 55px so the last 55px is hidden, this will fix it */ + padding: 0.22em; + padding-right: 30px; + overflow-x: hidden; + overflow-y: scroll; +} + +#content-no-docs.no-left-panel { + grid-column-start: 1; + grid-column-end: none; + padding: 0 8vw; + margin-left: unset; +} + +#side-nav.no-left-panel { + display: none; +} + +div p { + padding: 10px; } table { - width: 100%; - border-collapse: collapse; + width: 100%; + border-collapse: collapse; } .item-title { - font-size: 130%; - padding: 0.2em; - padding-top: 0.5em; - padding-left: 0.4em; - - color: #261908; + font-size: 14px; + font-weight: bold; + padding-bottom: 10px; + padding-top: 0.5em; + padding-left: 0; + color: #261908; } .item-title > a { - text-decoration: none; + text-decoration: none; + font-size: 100%; +} + +.item-content { + padding-bottom: 40px; + margin-bottom: 20px; + max-width: 80vw; + border-bottom: 1px solid rgba(0, 0, 0, 0.1); } .item-table-label { - background-color: burlywood; - border-color: burlywood; - border-style: solid; - border-right-style: none; - border-width: 1px; - - width: 10em; - padding: 0.3em; + background-color: #deb887; + text-align: center; + font-weight: bold; + color: rgba(0, 0, 0, 0.8); + width: 8em; + padding: 0.3em; +} + +.item-content .item-details:nth-child(odd) td:nth-child(2) { + background-color: rgba(0, 0, 0, 0.1); +} + +.item-content .item-details:nth-child(even) td:nth-child(2) { + background-color: rgba(0, 0, 0, 0.08); +} + + +/* OVERRIDE */ + +.item-content .item-details:nth-child(1) td:nth-child(1) { + background-color: rgba(185, 183, 180, .6); +} + +.item-content .item-details:nth-child(1) td:nth-child(2) { + background-color: unset; +} + + +/* OVERRIDE */ + +.item-content .item-details:nth-child(odd) .item-table-label { + background-color: rgba(185, 183, 180, .6); +} + +.item-content .item-details:nth-child(even) .item-table-label { + background-color: rgba(181, 180, 178, 0.45); } .item-details { - display: block; - border-collapse: collapse; + border-collapse: collapse; + width: 80vw; + max-width: 80vw; } -.item-details td:nth-child(2) { - border-style: solid; - border-left-style: none; - border-color: burlywood; - border-width: 1px; - width: 80%; - max-width: 20em; - padding-left: 0.2em; +.item-content tr:nth-child(1n + 2) td:nth-child(2) { + /* 1n+2 will choose all elements excpet the first */ + padding: 8px; + font-weight: 500; + color: rgba(0,0,0,.65); } .noleftpad { - padding-left: 0em !important; + padding-left: 0em !important; } td ul { - padding: 0em; - list-style-type: none; + padding: 0em; + list-style-type: none; } .item-description { - margin-top: 0.2em; - width: 82.5%; - max-width: 55em; - - line-height: 120%; - letter-spacing: 0.04px; - text-rendering: optimizelegibility; + padding: 15px; + background-color: rgba(217, 211, 204, 0.4); } .item-description > p { - margin-top: 0.7em; + margin-top: 0.7em; } .skript-code-block { - padding: 0.52em; - font-family: monospace; - width: 82.5%; - max-width: 69.6em; - background-color: gainsboro; + padding: 6px; + font-family: "Source Code Pro", monospace; } -.skript-code-block > a { - text-decoration: none; +.item-examples p { + background-color: rgb(255, 152, 0); + border-left: 3px solid rgba(255, 152, 0, 0.5); + padding: 5px; + color: rgba(0, 0, 0, 0.8); + width: max-content; + margin-top: 25px; } -ul > .skript-code-block { - width: 98.4%; +.item-examples .skript-code-block { + background-color: rgba(0, 0, 0, 0.08); + visibility: visible; + font-family: "Source Code Pro", monospace; + font-weight: 400; } -.item-examples { - padding-top: 0.5em; +.skript-code-block > a { + text-decoration: none; } .item-examples > .skript-code-block { - margin-left: 0.15em; - margin-top: 0.3em; + border-left: solid 3px #ff9800; + padding: 30px; + font-size: 0.9em; +} + +.box-title { + background-color: #ff9800; + width: max-content; + padding: 5px; + padding-right: 7px; + margin-top: 20px; + color: rgba(0, 0, 0, 0.8); } .box { - border-style: solid; - border-color: burlywood; - border-width: 2px; - border-top-width: 1em; - border-radius: 3px; - padding: 0.8em; - - background-color: wheat; -} - -@media (max-width: 600px) { - body { - grid-template-columns: 0px minmax(80%, 100%); - } - - #global-navigation { - height: 4.1em; - display: flex; - flex-wrap: wrap; - } - #global-navigation > a { - padding: 0.2em; - padding-top: 0.1em; - padding-bottom: 0.1em; - } - - #nav-title { - display: none; - } - #side-nav { - display: none; - } - - #content { - top: 5.63em; - } + border-left: 3px solid #ff9800; + padding: 15px; + background-color: rgba(0, 0, 0, 0.1) !important; + margin-bottom: 10px; } + +.box-title-red { + background-color: #ff4e4e; + width: max-content; + padding: 5px; + padding-right: 7px; + margin-top: 20px; + color: white; + font-weight: bold; +} + +.box-red { + border-left: 3px solid #ff4e4e; + padding: 15px; + background-color: rgba(0, 0, 0, 0.1); + margin-bottom: 10px; +} + +@media (max-width: 768px) { + body { + grid-template-columns: 20% minmax(80%, 100%); + } + + #nav-contents { + margin-top: 100px; + } + + #content { + padding-top: 0px !important; + margin-top: 50px; + margin-left: 10px; + /* !important to override home */ + } + + #global-navigation { + height: calc(4.1em + 2px); + /* +2px due to 18px padding botton not 16px */ + display: flex; + flex-wrap: wrap; + } + + #global-navigation > li { + padding-bottom: 18px; + } + + #global-navigation > a { + padding: 10px; + padding-top: 0.1em; + padding-bottom: 0.1em; + } + + #nav-contents > a { + font-size: 12px; + } + + .item-description { + font-size: 14px; + } + .item-table-label { + width: 5em; + } + + #search-bar { + top: calc(4.1em + 24px) !important; + } +} + +@media (max-width: 1024px) { + body { + grid-template-columns: 20% minmax(80%, 100%); + } + + #global-navigation > a { + padding: 10px; + padding-top: 0.1em; + padding-bottom: 0.1em; + } +} + +@media (max-width: 1200px) { + body { + grid-template-columns: 20% minmax(80%, 100%); + } + + #global-navigation li { + white-space: nowrap; + } + + #global-navigation { + display: flex; + } + + #global-navigation { + grid-column-start: 1; + grid-column-end: none; + } + + #global-navigation > a { + padding: 10px; + padding-top: 0.1em; + padding-bottom: 0.1em; + } + + #nav-title { + display: none; + } + + #search-bar { + left: 20% !important; + } +} + +.title { + margin-top: 32px; +} + +.subtitle { + padding-left: 20px !important; +} + +.left-margin { + margin-left: 20px !important; +} + +.colors-table { + width: 75%; + margin: 32px auto; + border-collapse: collapse; + font-size: 0.9em; + font-family: "Poppins", sans-serif; + box-shadow: 0 0 20px rgba(0, 0, 0, 0.15); + /*border-radius: 5px;*/ +} + +.colors-table th, +.colors-table td { + padding: 12px 15px; +} + +.colors-table tbody tr { + border-bottom: 1px solid #dddddd; +} + +.colors-table tbody tr:nth-of-type(even) { + background-color: rgba(0, 0, 0, 0.02); +} + +.colors-table tbody tr:last-of-type { + border-bottom: 2px solid #ff9800; +} + +ol.custom-list { + margin-left: 16px; + list-style: none; + counter-reset: my-awesome-counter; +} + +ol.custom-list li { + counter-increment: my-awesome-counter; +} + +ol.custom-list li::before { + content: counter(my-awesome-counter) ". "; + font-weight: bold; +} + +code { + font-family: "Source Code Pro", monospace; +} + +pre { + font-family: "Source Code Pro", monospace; +} + +#notification-box { + background-color: rgb(36, 36, 36); + border-radius: 15px; + box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, .2); + text-align: center; + color: rgb(40, 236, 40); + font-weight: bold; + transition: all .2s; + /*transition-delay: .3s;*/ + opacity: 0; + position: fixed; + left: 50%; + top: 92%; + padding: 10px; + transform: translate(-50%, -50%); +} + +.activate-notification { + opacity: 1 !important; + transform: translateY(-20px); +} + +.grid-container { + width: 100%; + display: inline-grid; + grid-template-columns: calc(33% - 1.7%) calc(33% - 1.7%) calc(33% - 1.7%); + grid-column-gap: 3%; + overflow: hidden; +} + +.link { + display: inline-block; +} + +.padding { + padding: 32px 0; +} + +.bottom-padding { + padding-bottom: 32px; +} + +.bottom-padding { + padding-bottom: 32px; +} + +.top-padding { + padding-top: 32px; +} + +.top-padding-2 { + padding-top: 64px; +} + +#search-bar { + padding: 12px; + border: none; + font-size: 18px; + position: fixed; + background: white; + width: calc(100% - 5px); /* -5px for the scrollbar */ + left: 16vw; + top: 55px; + box-shadow: 0 3px 5px 0 rgba(0, 0, 0, .05); +} + +#search-bar:focus { + outline: none; +} + +.pre { + white-space: pre; +} + +.pre-wrap { + white-space: pre-wrap; +} \ No newline at end of file diff --git a/docs/functions.html b/docs/functions.html index 2f5a02ee9ef..f018161fc7a 100644 --- a/docs/functions.html +++ b/docs/functions.html @@ -1,10 +1,12 @@

Functions

-

- These functions are defined by Skript. You may also create your own functions! - Tutorial for doing so is planned, but right now you need to seek it elsewhere. -

-
+ +

Note:

+

+ These functions are defined by Skript. You may also create your own functions! + Tutorial for doing so is planned, but right now you need to seek it elsewhere. +

+ ${generate functions desc_full.html}
diff --git a/docs/index.html b/docs/index.html index bc641254f18..1e91dfe9a03 100644 --- a/docs/index.html +++ b/docs/index.html @@ -1,31 +1,65 @@

Documentation

-
-

- Skript is (surprise, surprise) a scripting plugin for Bukkit platform. It - is easy to use for simple tasks, but yet you can create really complex things - with it. The syntax of Skript is close to English, but it is still not magic. - While for simple tasks you might succeed with experimentation, for anything - more complex you will need some guidance. -

+
+
+

Skript is (surprise, surprise) a scripting plugin for the Bukkit platform. It is easy to use for + simple tasks, but you can also create really complex things with it. The syntax of Skript is close to + English, but it is still not magic. While you might succeed with experimentation for simple tasks, for + anything more complex you will need some guidance.

+

This is Skript's documentation. You will find all supported features of the plugin here, along with some + useful examples. We don't have tutorials yet, but you can find good ones using whatever search engine you + prefer.

-

- This is the Skript documentation. You will find all supported features of Skript - plugin here. You might also find some useful examples, in case you need more - than what was shipped with Skript distribution. We do not currently have - tutorials here, but you can find good ones using whatever search engine you prefer. -

+

Quick Look

+

+command /sethome:
+ permission: skript.home # Permission required for this command
+ description: Set your home # Description of this command
+ executable by: players # Console won't be able to run this command
+ trigger: # The actual trigger/code that will run when someone do /sethome
+ # Set a unique variable to sender's location
+ set {home::%uuid of player%} to location of player
+ # Send a message to the sender
+ message "Set your home to <grey>%location of player%<reset>"
+
+command /home:
+ permission: skript.home
+ description: Teleport yourself to your home
+ trigger:
+ # Check if that variable we used in /sethome has been set (in other words, if player ever ran /sethome)
+ if {home::%uuid of player%} is not set:
+ message "You have not set your home yet!"
+ stop trigger # stop the code here, lines below won't run
+ # Teleport the player to their home
+ teleport player to {home::%uuid of player%}
+ send "&aYou have been teleported."
+
-

- Found something incorrect in this documentation? Please report - it to the issue tracker. -

-

- We are looking for docs authors! - Currently, the only documentation is generated automatically. It would be - nice to have some hand-written content such as tutorials on the docs as well. For example, currently we don't have - a tutorial on how to use loops here; This makes it harder for newcomers to learn. - Check this issue for - more details and if you're interested in helping out. -

+
+
+

Latest Version

+

${latest-version}

+
+
+

Download

+

Skript ${latest-version}

+
+
+ +

Found something incorrect in this documentation? Please report it to the issue tracker.

+

We are looking for docs authors! Currently, the only documentation is generated + automatically. It would be nice to have some hand-written content such as tutorials on the docs as well. For + example, currently we don't have a tutorial on how to use loops here; This makes it harder for newcomers to + learn. Check this issue for more details and + if you're interested in helping out.

+ + +
+

Skript • SkriptLang Team • + Styling by Ayham Al-Ali | 2021 • Generated on ${skript.build.date}

+
\ No newline at end of file diff --git a/docs/js/highlight.js b/docs/js/highlight.js new file mode 100644 index 00000000000..51d16c9080d --- /dev/null +++ b/docs/js/highlight.js @@ -0,0 +1,1359 @@ +// Source: https://cdnjs.cloudflare.com/ajax/libs/highlight.js/10.7.2/highlight.min.js - Don't use higher versions as it breaks
see https://github.com/highlightjs/highlight.js/issues/3302 +/* + Highlight.js 10.7.2 (00233d63) + License: BSD-3-Clause + Copyright (c) 2006-2021, Ivan Sagalaev +*/ +var hljs=function(){"use strict";function e(t){ + return t instanceof Map?t.clear=t.delete=t.set=()=>{ + throw Error("map is read-only")}:t instanceof Set&&(t.add=t.clear=t.delete=()=>{ + throw Error("set is read-only") + }),Object.freeze(t),Object.getOwnPropertyNames(t).forEach((n=>{var i=t[n] + ;"object"!=typeof i||Object.isFrozen(i)||e(i)})),t}var t=e,n=e;t.default=n + ;class i{constructor(e){ + void 0===e.data&&(e.data={}),this.data=e.data,this.isMatchIgnored=!1} + ignoreMatch(){this.isMatchIgnored=!0}}function s(e){ + return e.replace(/&/g,"&").replace(//g,">").replace(/"/g,""").replace(/'/g,"'") + }function a(e,...t){const n=Object.create(null);for(const t in e)n[t]=e[t] + ;return t.forEach((e=>{for(const t in e)n[t]=e[t]})),n}const r=e=>!!e.kind + ;class l{constructor(e,t){ + this.buffer="",this.classPrefix=t.classPrefix,e.walk(this)}addText(e){ + this.buffer+=s(e)}openNode(e){if(!r(e))return;let t=e.kind + ;e.sublanguage||(t=`${this.classPrefix}${t}`),this.span(t)}closeNode(e){ + r(e)&&(this.buffer+="")}value(){return this.buffer}span(e){ + this.buffer+=``}}class o{constructor(){this.rootNode={ + children:[]},this.stack=[this.rootNode]}get top(){ + return this.stack[this.stack.length-1]}get root(){return this.rootNode}add(e){ + this.top.children.push(e)}openNode(e){const t={kind:e,children:[]} + ;this.add(t),this.stack.push(t)}closeNode(){ + if(this.stack.length>1)return this.stack.pop()}closeAllNodes(){ + for(;this.closeNode(););}toJSON(){return JSON.stringify(this.rootNode,null,4)} + walk(e){return this.constructor._walk(e,this.rootNode)}static _walk(e,t){ + return"string"==typeof t?e.addText(t):t.children&&(e.openNode(t), + t.children.forEach((t=>this._walk(e,t))),e.closeNode(t)),e}static _collapse(e){ + "string"!=typeof e&&e.children&&(e.children.every((e=>"string"==typeof e))?e.children=[e.children.join("")]:e.children.forEach((e=>{ + o._collapse(e)})))}}class c extends o{constructor(e){super(),this.options=e} + addKeyword(e,t){""!==e&&(this.openNode(t),this.addText(e),this.closeNode())} + addText(e){""!==e&&this.add(e)}addSublanguage(e,t){const n=e.root + ;n.kind=t,n.sublanguage=!0,this.add(n)}toHTML(){ + return new l(this,this.options).value()}finalize(){return!0}}function g(e){ + return e?"string"==typeof e?e:e.source:null} + const u=/\[(?:[^\\\]]|\\.)*\]|\(\??|\\([1-9][0-9]*)|\\./,h="[a-zA-Z]\\w*",d="[a-zA-Z_]\\w*",f="\\b\\d+(\\.\\d+)?",p="(-?)(\\b0[xX][a-fA-F0-9]+|(\\b\\d+(\\.\\d*)?|\\.\\d+)([eE][-+]?\\d+)?)",m="\\b(0b[01]+)",b={ + begin:"\\\\[\\s\\S]",relevance:0},E={className:"string",begin:"'",end:"'", + illegal:"\\n",contains:[b]},x={className:"string",begin:'"',end:'"', + illegal:"\\n",contains:[b]},v={ + begin:/\b(a|an|the|are|I'm|isn't|don't|doesn't|won't|but|just|should|pretty|simply|enough|gonna|going|wtf|so|such|will|you|your|they|like|more)\b/ + },w=(e,t,n={})=>{const i=a({className:"comment",begin:e,end:t,contains:[]},n) + ;return i.contains.push(v),i.contains.push({className:"doctag", + begin:"(?:TODO|FIXME|NOTE|BUG|OPTIMIZE|HACK|XXX):",relevance:0}),i + },y=w("//","$"),N=w("/\\*","\\*/"),R=w("#","$");var _=Object.freeze({ + __proto__:null,MATCH_NOTHING_RE:/\b\B/,IDENT_RE:h,UNDERSCORE_IDENT_RE:d, + NUMBER_RE:f,C_NUMBER_RE:p,BINARY_NUMBER_RE:m, + RE_STARTERS_RE:"!|!=|!==|%|%=|&|&&|&=|\\*|\\*=|\\+|\\+=|,|-|-=|/=|/|:|;|<<|<<=|<=|<|===|==|=|>>>=|>>=|>=|>>>|>>|>|\\?|\\[|\\{|\\(|\\^|\\^=|\\||\\|=|\\|\\||~", + SHEBANG:(e={})=>{const t=/^#![ ]*\// + ;return e.binary&&(e.begin=((...e)=>e.map((e=>g(e))).join(""))(t,/.*\b/,e.binary,/\b.*/)), + a({className:"meta",begin:t,end:/$/,relevance:0,"on:begin":(e,t)=>{ + 0!==e.index&&t.ignoreMatch()}},e)},BACKSLASH_ESCAPE:b,APOS_STRING_MODE:E, + QUOTE_STRING_MODE:x,PHRASAL_WORDS_MODE:v,COMMENT:w,C_LINE_COMMENT_MODE:y, + C_BLOCK_COMMENT_MODE:N,HASH_COMMENT_MODE:R,NUMBER_MODE:{className:"number", + begin:f,relevance:0},C_NUMBER_MODE:{className:"number",begin:p,relevance:0}, + BINARY_NUMBER_MODE:{className:"number",begin:m,relevance:0},CSS_NUMBER_MODE:{ + className:"number", + begin:f+"(%|em|ex|ch|rem|vw|vh|vmin|vmax|cm|mm|in|pt|pc|px|deg|grad|rad|turn|s|ms|Hz|kHz|dpi|dpcm|dppx)?", + relevance:0},REGEXP_MODE:{begin:/(?=\/[^/\n]*\/)/,contains:[{className:"regexp", + begin:/\//,end:/\/[gimuy]*/,illegal:/\n/,contains:[b,{begin:/\[/,end:/\]/, + relevance:0,contains:[b]}]}]},TITLE_MODE:{className:"title",begin:h,relevance:0 + },UNDERSCORE_TITLE_MODE:{className:"title",begin:d,relevance:0},METHOD_GUARD:{ + begin:"\\.\\s*[a-zA-Z_]\\w*",relevance:0},END_SAME_AS_BEGIN:e=>Object.assign(e,{ + "on:begin":(e,t)=>{t.data._beginMatch=e[1]},"on:end":(e,t)=>{ + t.data._beginMatch!==e[1]&&t.ignoreMatch()}})});function k(e,t){ + "."===e.input[e.index-1]&&t.ignoreMatch()}function M(e,t){ + t&&e.beginKeywords&&(e.begin="\\b("+e.beginKeywords.split(" ").join("|")+")(?!\\.)(?=\\b|\\s)", + e.__beforeBegin=k,e.keywords=e.keywords||e.beginKeywords,delete e.beginKeywords, + void 0===e.relevance&&(e.relevance=0))}function O(e,t){ + Array.isArray(e.illegal)&&(e.illegal=((...e)=>"("+e.map((e=>g(e))).join("|")+")")(...e.illegal)) + }function A(e,t){if(e.match){ + if(e.begin||e.end)throw Error("begin & end are not supported with match") + ;e.begin=e.match,delete e.match}}function L(e,t){ + void 0===e.relevance&&(e.relevance=1)} + const I=["of","and","for","in","not","or","if","then","parent","list","value"] + ;function j(e,t,n="keyword"){const i={} + ;return"string"==typeof e?s(n,e.split(" ")):Array.isArray(e)?s(n,e):Object.keys(e).forEach((n=>{ + Object.assign(i,j(e[n],t,n))})),i;function s(e,n){ + t&&(n=n.map((e=>e.toLowerCase()))),n.forEach((t=>{const n=t.split("|") + ;i[n[0]]=[e,B(n[0],n[1])]}))}}function B(e,t){ + return t?Number(t):(e=>I.includes(e.toLowerCase()))(e)?0:1} + function T(e,{plugins:t}){function n(t,n){ + return RegExp(g(t),"m"+(e.case_insensitive?"i":"")+(n?"g":""))}class i{ + constructor(){ + this.matchIndexes={},this.regexes=[],this.matchAt=1,this.position=0} + addRule(e,t){ + t.position=this.position++,this.matchIndexes[this.matchAt]=t,this.regexes.push([t,e]), + this.matchAt+=(e=>RegExp(e.toString()+"|").exec("").length-1)(e)+1}compile(){ + 0===this.regexes.length&&(this.exec=()=>null) + ;const e=this.regexes.map((e=>e[1]));this.matcherRe=n(((e,t="|")=>{let n=0 + ;return e.map((e=>{n+=1;const t=n;let i=g(e),s="";for(;i.length>0;){ + const e=u.exec(i);if(!e){s+=i;break} + s+=i.substring(0,e.index),i=i.substring(e.index+e[0].length), + "\\"===e[0][0]&&e[1]?s+="\\"+(Number(e[1])+t):(s+=e[0],"("===e[0]&&n++)}return s + })).map((e=>`(${e})`)).join(t)})(e),!0),this.lastIndex=0}exec(e){ + this.matcherRe.lastIndex=this.lastIndex;const t=this.matcherRe.exec(e) + ;if(!t)return null + ;const n=t.findIndex(((e,t)=>t>0&&void 0!==e)),i=this.matchIndexes[n] + ;return t.splice(0,n),Object.assign(t,i)}}class s{constructor(){ + this.rules=[],this.multiRegexes=[], + this.count=0,this.lastIndex=0,this.regexIndex=0}getMatcher(e){ + if(this.multiRegexes[e])return this.multiRegexes[e];const t=new i + ;return this.rules.slice(e).forEach((([e,n])=>t.addRule(e,n))), + t.compile(),this.multiRegexes[e]=t,t}resumingScanAtSamePosition(){ + return 0!==this.regexIndex}considerAll(){this.regexIndex=0}addRule(e,t){ + this.rules.push([e,t]),"begin"===t.type&&this.count++}exec(e){ + const t=this.getMatcher(this.regexIndex);t.lastIndex=this.lastIndex + ;let n=t.exec(e) + ;if(this.resumingScanAtSamePosition())if(n&&n.index===this.lastIndex);else{ + const t=this.getMatcher(0);t.lastIndex=this.lastIndex+1,n=t.exec(e)} + return n&&(this.regexIndex+=n.position+1, + this.regexIndex===this.count&&this.considerAll()),n}} + if(e.compilerExtensions||(e.compilerExtensions=[]), + e.contains&&e.contains.includes("self"))throw Error("ERR: contains `self` is not supported at the top-level of a language. See documentation.") + ;return e.classNameAliases=a(e.classNameAliases||{}),function t(i,r){const l=i + ;if(i.isCompiled)return l + ;[A].forEach((e=>e(i,r))),e.compilerExtensions.forEach((e=>e(i,r))), + i.__beforeBegin=null,[M,O,L].forEach((e=>e(i,r))),i.isCompiled=!0;let o=null + ;if("object"==typeof i.keywords&&(o=i.keywords.$pattern, + delete i.keywords.$pattern), + i.keywords&&(i.keywords=j(i.keywords,e.case_insensitive)), + i.lexemes&&o)throw Error("ERR: Prefer `keywords.$pattern` to `mode.lexemes`, BOTH are not allowed. (see mode reference) ") + ;return o=o||i.lexemes||/\w+/, + l.keywordPatternRe=n(o,!0),r&&(i.begin||(i.begin=/\B|\b/), + l.beginRe=n(i.begin),i.endSameAsBegin&&(i.end=i.begin), + i.end||i.endsWithParent||(i.end=/\B|\b/), + i.end&&(l.endRe=n(i.end)),l.terminatorEnd=g(i.end)||"", + i.endsWithParent&&r.terminatorEnd&&(l.terminatorEnd+=(i.end?"|":"")+r.terminatorEnd)), + i.illegal&&(l.illegalRe=n(i.illegal)), + i.contains||(i.contains=[]),i.contains=[].concat(...i.contains.map((e=>(e=>(e.variants&&!e.cachedVariants&&(e.cachedVariants=e.variants.map((t=>a(e,{ + variants:null},t)))),e.cachedVariants?e.cachedVariants:S(e)?a(e,{ + starts:e.starts?a(e.starts):null + }):Object.isFrozen(e)?a(e):e))("self"===e?i:e)))),i.contains.forEach((e=>{t(e,l) + })),i.starts&&t(i.starts,r),l.matcher=(e=>{const t=new s + ;return e.contains.forEach((e=>t.addRule(e.begin,{rule:e,type:"begin" + }))),e.terminatorEnd&&t.addRule(e.terminatorEnd,{type:"end" + }),e.illegal&&t.addRule(e.illegal,{type:"illegal"}),t})(l),l}(e)}function S(e){ + return!!e&&(e.endsWithParent||S(e.starts))}function P(e){const t={ + props:["language","code","autodetect"],data:()=>({detectedLanguage:"", + unknownLanguage:!1}),computed:{className(){ + return this.unknownLanguage?"":"hljs "+this.detectedLanguage},highlighted(){ + if(!this.autoDetect&&!e.getLanguage(this.language))return console.warn(`The language "${this.language}" you specified could not be found.`), + this.unknownLanguage=!0,s(this.code);let t={} + ;return this.autoDetect?(t=e.highlightAuto(this.code), + this.detectedLanguage=t.language):(t=e.highlight(this.language,this.code,this.ignoreIllegals), + this.detectedLanguage=this.language),t.value},autoDetect(){ + return!(this.language&&(e=this.autodetect,!e&&""!==e));var e}, + ignoreIllegals:()=>!0},render(e){return e("pre",{},[e("code",{ + class:this.className,domProps:{innerHTML:this.highlighted}})])}};return{ + Component:t,VuePlugin:{install(e){e.component("highlightjs",t)}}}}const D={ + "after:highlightElement":({el:e,result:t,text:n})=>{const i=H(e) + ;if(!i.length)return;const a=document.createElement("div") + ;a.innerHTML=t.value,t.value=((e,t,n)=>{let i=0,a="";const r=[];function l(){ + return e.length&&t.length?e[0].offset!==t[0].offset?e[0].offset"}function c(e){ + a+=""}function g(e){("start"===e.event?o:c)(e.node)} + for(;e.length||t.length;){let t=l() + ;if(a+=s(n.substring(i,t[0].offset)),i=t[0].offset,t===e){r.reverse().forEach(c) + ;do{g(t.splice(0,1)[0]),t=l()}while(t===e&&t.length&&t[0].offset===i) + ;r.reverse().forEach(o) + }else"start"===t[0].event?r.push(t[0].node):r.pop(),g(t.splice(0,1)[0])} + return a+s(n.substr(i))})(i,H(a),n)}};function C(e){ + return e.nodeName.toLowerCase()}function H(e){const t=[];return function e(n,i){ + for(let s=n.firstChild;s;s=s.nextSibling)3===s.nodeType?i+=s.nodeValue.length:1===s.nodeType&&(t.push({ + event:"start",offset:i,node:s}),i=e(s,i),C(s).match(/br|hr|img|input/)||t.push({ + event:"stop",offset:i,node:s}));return i}(e,0),t}const $={},U=e=>{ + console.error(e)},z=(e,...t)=>{console.log("WARN: "+e,...t)},K=(e,t)=>{ + $[`${e}/${t}`]||(console.log(`Deprecated as of ${e}. ${t}`),$[`${e}/${t}`]=!0) + },G=s,V=a,W=Symbol("nomatch");return(e=>{ + const n=Object.create(null),s=Object.create(null),a=[];let r=!0 + ;const l=/(^(<[^>]+>|\t|)+|\n)/gm,o="Could not find the language '{}', did you forget to load/include a language module?",g={ + disableAutodetect:!0,name:"Plain text",contains:[]};let u={ + noHighlightRe:/^(no-?highlight)$/i, + languageDetectRe:/\blang(?:uage)?-([\w-]+)\b/i,classPrefix:"hljs-", + tabReplace:null,useBR:!1,languages:null,__emitter:c};function h(e){ + return u.noHighlightRe.test(e)}function d(e,t,n,i){let s="",a="" + ;"object"==typeof t?(s=e, + n=t.ignoreIllegals,a=t.language,i=void 0):(K("10.7.0","highlight(lang, code, ...args) has been deprecated."), + K("10.7.0","Please use highlight(code, options) instead.\nhttps://github.com/highlightjs/highlight.js/issues/2277"), + a=e,s=t);const r={code:s,language:a};M("before:highlight",r) + ;const l=r.result?r.result:f(r.language,r.code,n,i) + ;return l.code=r.code,M("after:highlight",l),l}function f(e,t,s,l){ + function c(e,t){const n=v.case_insensitive?t[0].toLowerCase():t[0] + ;return Object.prototype.hasOwnProperty.call(e.keywords,n)&&e.keywords[n]} + function g(){null!=R.subLanguage?(()=>{if(""===M)return;let e=null + ;if("string"==typeof R.subLanguage){ + if(!n[R.subLanguage])return void k.addText(M) + ;e=f(R.subLanguage,M,!0,_[R.subLanguage]),_[R.subLanguage]=e.top + }else e=p(M,R.subLanguage.length?R.subLanguage:null) + ;R.relevance>0&&(O+=e.relevance),k.addSublanguage(e.emitter,e.language) + })():(()=>{if(!R.keywords)return void k.addText(M);let e=0 + ;R.keywordPatternRe.lastIndex=0;let t=R.keywordPatternRe.exec(M),n="";for(;t;){ + n+=M.substring(e,t.index);const i=c(R,t);if(i){const[e,s]=i + ;if(k.addText(n),n="",O+=s,e.startsWith("_"))n+=t[0];else{ + const n=v.classNameAliases[e]||e;k.addKeyword(t[0],n)}}else n+=t[0] + ;e=R.keywordPatternRe.lastIndex,t=R.keywordPatternRe.exec(M)} + n+=M.substr(e),k.addText(n)})(),M=""}function h(e){ + return e.className&&k.openNode(v.classNameAliases[e.className]||e.className), + R=Object.create(e,{parent:{value:R}}),R}function d(e,t,n){let s=((e,t)=>{ + const n=e&&e.exec(t);return n&&0===n.index})(e.endRe,n);if(s){if(e["on:end"]){ + const n=new i(e);e["on:end"](t,n),n.isMatchIgnored&&(s=!1)}if(s){ + for(;e.endsParent&&e.parent;)e=e.parent;return e}} + if(e.endsWithParent)return d(e.parent,t,n)}function m(e){ + return 0===R.matcher.regexIndex?(M+=e[0],1):(I=!0,0)}function b(e){ + const n=e[0],i=t.substr(e.index),s=d(R,e,i);if(!s)return W;const a=R + ;a.skip?M+=n:(a.returnEnd||a.excludeEnd||(M+=n),g(),a.excludeEnd&&(M=n));do{ + R.className&&k.closeNode(),R.skip||R.subLanguage||(O+=R.relevance),R=R.parent + }while(R!==s.parent) + ;return s.starts&&(s.endSameAsBegin&&(s.starts.endRe=s.endRe), + h(s.starts)),a.returnEnd?0:n.length}let E={};function x(n,a){const l=a&&a[0] + ;if(M+=n,null==l)return g(),0 + ;if("begin"===E.type&&"end"===a.type&&E.index===a.index&&""===l){ + if(M+=t.slice(a.index,a.index+1),!r){const t=Error("0 width match regex") + ;throw t.languageName=e,t.badRule=E.rule,t}return 1} + if(E=a,"begin"===a.type)return function(e){ + const t=e[0],n=e.rule,s=new i(n),a=[n.__beforeBegin,n["on:begin"]] + ;for(const n of a)if(n&&(n(e,s),s.isMatchIgnored))return m(t) + ;return n&&n.endSameAsBegin&&(n.endRe=RegExp(t.replace(/[-/\\^$*+?.()|[\]{}]/g,"\\$&"),"m")), + n.skip?M+=t:(n.excludeBegin&&(M+=t), + g(),n.returnBegin||n.excludeBegin||(M=t)),h(n),n.returnBegin?0:t.length}(a) + ;if("illegal"===a.type&&!s){ + const e=Error('Illegal lexeme "'+l+'" for mode "'+(R.className||"")+'"') + ;throw e.mode=R,e}if("end"===a.type){const e=b(a);if(e!==W)return e} + if("illegal"===a.type&&""===l)return 1 + ;if(L>1e5&&L>3*a.index)throw Error("potential infinite loop, way more iterations than matches") + ;return M+=l,l.length}const v=N(e) + ;if(!v)throw U(o.replace("{}",e)),Error('Unknown language: "'+e+'"') + ;const w=T(v,{plugins:a});let y="",R=l||w;const _={},k=new u.__emitter(u);(()=>{ + const e=[];for(let t=R;t!==v;t=t.parent)t.className&&e.unshift(t.className) + ;e.forEach((e=>k.openNode(e)))})();let M="",O=0,A=0,L=0,I=!1;try{ + for(R.matcher.considerAll();;){ + L++,I?I=!1:R.matcher.considerAll(),R.matcher.lastIndex=A + ;const e=R.matcher.exec(t);if(!e)break;const n=x(t.substring(A,e.index),e) + ;A=e.index+n}return x(t.substr(A)),k.closeAllNodes(),k.finalize(),y=k.toHTML(),{ + relevance:Math.floor(O),value:y,language:e,illegal:!1,emitter:k,top:R}}catch(n){ + if(n.message&&n.message.includes("Illegal"))return{illegal:!0,illegalBy:{ + msg:n.message,context:t.slice(A-100,A+100),mode:n.mode},sofar:y,relevance:0, + value:G(t),emitter:k};if(r)return{illegal:!1,relevance:0,value:G(t),emitter:k, + language:e,top:R,errorRaised:n};throw n}}function p(e,t){ + t=t||u.languages||Object.keys(n);const i=(e=>{const t={relevance:0, + emitter:new u.__emitter(u),value:G(e),illegal:!1,top:g} + ;return t.emitter.addText(e),t})(e),s=t.filter(N).filter(k).map((t=>f(t,e,!1))) + ;s.unshift(i);const a=s.sort(((e,t)=>{ + if(e.relevance!==t.relevance)return t.relevance-e.relevance + ;if(e.language&&t.language){if(N(e.language).supersetOf===t.language)return 1 + ;if(N(t.language).supersetOf===e.language)return-1}return 0})),[r,l]=a,o=r + ;return o.second_best=l,o}const m={"before:highlightElement":({el:e})=>{ + u.useBR&&(e.innerHTML=e.innerHTML.replace(/\n/g,"").replace(//g,"\n")) + },"after:highlightElement":({result:e})=>{ + u.useBR&&(e.value=e.value.replace(/\n/g,"
"))}},b=/^(<[^>]+>|\t)+/gm,E={ + "after:highlightElement":({result:e})=>{ + u.tabReplace&&(e.value=e.value.replace(b,(e=>e.replace(/\t/g,u.tabReplace))))}} + ;function x(e){let t=null;const n=(e=>{let t=e.className+" " + ;t+=e.parentNode?e.parentNode.className:"";const n=u.languageDetectRe.exec(t) + ;if(n){const t=N(n[1]) + ;return t||(z(o.replace("{}",n[1])),z("Falling back to no-highlight mode for this block.",e)), + t?n[1]:"no-highlight"}return t.split(/\s+/).find((e=>h(e)||N(e)))})(e) + ;if(h(n))return;M("before:highlightElement",{el:e,language:n}),t=e + ;const i=t.textContent,a=n?d(i,{language:n,ignoreIllegals:!0}):p(i) + ;M("after:highlightElement",{el:e,result:a,text:i + }),e.innerHTML=a.value,((e,t,n)=>{const i=t?s[t]:n + ;e.classList.add("hljs"),i&&e.classList.add(i)})(e,n,a.language),e.result={ + language:a.language,re:a.relevance,relavance:a.relevance + },a.second_best&&(e.second_best={language:a.second_best.language, + re:a.second_best.relevance,relavance:a.second_best.relevance})}const v=()=>{ + v.called||(v.called=!0, + K("10.6.0","initHighlighting() is deprecated. Use highlightAll() instead."), + document.querySelectorAll("pre code").forEach(x))};let w=!1;function y(){ + "loading"!==document.readyState?document.querySelectorAll("pre code").forEach(x):w=!0 + }function N(e){return e=(e||"").toLowerCase(),n[e]||n[s[e]]} + function R(e,{languageName:t}){"string"==typeof e&&(e=[e]),e.forEach((e=>{ + s[e.toLowerCase()]=t}))}function k(e){const t=N(e) + ;return t&&!t.disableAutodetect}function M(e,t){const n=e;a.forEach((e=>{ + e[n]&&e[n](t)}))} + "undefined"!=typeof window&&window.addEventListener&&window.addEventListener("DOMContentLoaded",(()=>{ + w&&y()}),!1),Object.assign(e,{highlight:d,highlightAuto:p,highlightAll:y, + fixMarkup:e=>{ + return K("10.2.0","fixMarkup will be removed entirely in v11.0"),K("10.2.0","Please see https://github.com/highlightjs/highlight.js/issues/2534"), + t=e, + u.tabReplace||u.useBR?t.replace(l,(e=>"\n"===e?u.useBR?"
":e:u.tabReplace?e.replace(/\t/g,u.tabReplace):e)):t + ;var t},highlightElement:x, + highlightBlock:e=>(K("10.7.0","highlightBlock will be removed entirely in v12.0"), + K("10.7.0","Please use highlightElement now."),x(e)),configure:e=>{ + e.useBR&&(K("10.3.0","'useBR' will be removed entirely in v11.0"), + K("10.3.0","Please see https://github.com/highlightjs/highlight.js/issues/2559")), + u=V(u,e)},initHighlighting:v,initHighlightingOnLoad:()=>{ + K("10.6.0","initHighlightingOnLoad() is deprecated. Use highlightAll() instead."), + w=!0},registerLanguage:(t,i)=>{let s=null;try{s=i(e)}catch(e){ + if(U("Language definition for '{}' could not be registered.".replace("{}",t)), + !r)throw e;U(e),s=g} + s.name||(s.name=t),n[t]=s,s.rawDefinition=i.bind(null,e),s.aliases&&R(s.aliases,{ + languageName:t})},unregisterLanguage:e=>{delete n[e] + ;for(const t of Object.keys(s))s[t]===e&&delete s[t]}, + listLanguages:()=>Object.keys(n),getLanguage:N,registerAliases:R, + requireLanguage:e=>{ + K("10.4.0","requireLanguage will be removed entirely in v11."), + K("10.4.0","Please see https://github.com/highlightjs/highlight.js/pull/2844") + ;const t=N(e);if(t)return t + ;throw Error("The '{}' language is required, but not loaded.".replace("{}",e))}, + autoDetection:k,inherit:V,addPlugin:e=>{(e=>{ + e["before:highlightBlock"]&&!e["before:highlightElement"]&&(e["before:highlightElement"]=t=>{ + e["before:highlightBlock"](Object.assign({block:t.el},t)) + }),e["after:highlightBlock"]&&!e["after:highlightElement"]&&(e["after:highlightElement"]=t=>{ + e["after:highlightBlock"](Object.assign({block:t.el},t))})})(e),a.push(e)}, + vuePlugin:P(e).VuePlugin}),e.debugMode=()=>{r=!1},e.safeMode=()=>{r=!0 + },e.versionString="10.7.2";for(const e in _)"object"==typeof _[e]&&t(_[e]) + ;return Object.assign(e,_),e.addPlugin(m),e.addPlugin(D),e.addPlugin(E),e})({}) + }();"object"==typeof exports&&"undefined"!=typeof module&&(module.exports=hljs); + hljs.registerLanguage("apache",(()=>{"use strict";return e=>{const n={ + className:"number",begin:/\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}(:\d{1,5})?/} + ;return{name:"Apache config",aliases:["apacheconf"],case_insensitive:!0, + contains:[e.HASH_COMMENT_MODE,{className:"section",begin:/<\/?/,end:/>/, + contains:[n,{className:"number",begin:/:\d{1,5}/ + },e.inherit(e.QUOTE_STRING_MODE,{relevance:0})]},{className:"attribute", + begin:/\w+/,relevance:0,keywords:{ + nomarkup:"order deny allow setenv rewriterule rewriteengine rewritecond documentroot sethandler errordocument loadmodule options header listen serverroot servername" + },starts:{end:/$/,relevance:0,keywords:{literal:"on off all deny allow"}, + contains:[{className:"meta",begin:/\s\[/,end:/\]$/},{className:"variable", + begin:/[\$%]\{/,end:/\}/,contains:["self",{className:"number",begin:/[$%]\d+/}] + },n,{className:"number",begin:/\d+/},e.QUOTE_STRING_MODE]}}],illegal:/\S/}} + })()); + hljs.registerLanguage("bash",(()=>{"use strict";function e(...e){ + return e.map((e=>{return(s=e)?"string"==typeof s?s:s.source:null;var s + })).join("")}return s=>{const n={},t={begin:/\$\{/,end:/\}/,contains:["self",{ + begin:/:-/,contains:[n]}]};Object.assign(n,{className:"variable",variants:[{ + begin:e(/\$[\w\d#@][\w\d_]*/,"(?![\\w\\d])(?![$])")},t]});const a={ + className:"subst",begin:/\$\(/,end:/\)/,contains:[s.BACKSLASH_ESCAPE]},i={ + begin:/<<-?\s*(?=\w+)/,starts:{contains:[s.END_SAME_AS_BEGIN({begin:/(\w+)/, + end:/(\w+)/,className:"string"})]}},c={className:"string",begin:/"/,end:/"/, + contains:[s.BACKSLASH_ESCAPE,n,a]};a.contains.push(c);const o={begin:/\$\(\(/, + end:/\)\)/,contains:[{begin:/\d+#[0-9a-f]+/,className:"number"},s.NUMBER_MODE,n] + },r=s.SHEBANG({binary:"(fish|bash|zsh|sh|csh|ksh|tcsh|dash|scsh)",relevance:10 + }),l={className:"function",begin:/\w[\w\d_]*\s*\(\s*\)\s*\{/,returnBegin:!0, + contains:[s.inherit(s.TITLE_MODE,{begin:/\w[\w\d_]*/})],relevance:0};return{ + name:"Bash",aliases:["sh","zsh"],keywords:{$pattern:/\b[a-z._-]+\b/, + keyword:"if then else elif fi for while in do done case esac function", + literal:"true false", + built_in:"break cd continue eval exec exit export getopts hash pwd readonly return shift test times trap umask unset alias bind builtin caller command declare echo enable help let local logout mapfile printf read readarray source type typeset ulimit unalias set shopt autoload bg bindkey bye cap chdir clone comparguments compcall compctl compdescribe compfiles compgroups compquote comptags comptry compvalues dirs disable disown echotc echoti emulate fc fg float functions getcap getln history integer jobs kill limit log noglob popd print pushd pushln rehash sched setcap setopt stat suspend ttyctl unfunction unhash unlimit unsetopt vared wait whence where which zcompile zformat zftp zle zmodload zparseopts zprof zpty zregexparse zsocket zstyle ztcp" + },contains:[r,s.SHEBANG(),l,o,s.HASH_COMMENT_MODE,i,c,{className:"",begin:/\\"/ + },{className:"string",begin:/'/,end:/'/},n]}}})()); + hljs.registerLanguage("c",(()=>{"use strict";function e(e){ + return((...e)=>e.map((e=>(e=>e?"string"==typeof e?e:e.source:null)(e))).join(""))("(",e,")?") + }return t=>{const n=t.COMMENT("//","$",{contains:[{begin:/\\\n/}] + }),r="[a-zA-Z_]\\w*::",a="(decltype\\(auto\\)|"+e(r)+"[a-zA-Z_]\\w*"+e("<[^<>]+>")+")",i={ + className:"keyword",begin:"\\b[a-z\\d_]*_t\\b"},s={className:"string", + variants:[{begin:'(u8?|U|L)?"',end:'"',illegal:"\\n", + contains:[t.BACKSLASH_ESCAPE]},{ + begin:"(u8?|U|L)?'(\\\\(x[0-9A-Fa-f]{2}|u[0-9A-Fa-f]{4,8}|[0-7]{3}|\\S)|.)", + end:"'",illegal:"."},t.END_SAME_AS_BEGIN({ + begin:/(?:u8?|U|L)?R"([^()\\ ]{0,16})\(/,end:/\)([^()\\ ]{0,16})"/})]},o={ + className:"number",variants:[{begin:"\\b(0b[01']+)"},{ + begin:"(-?)\\b([\\d']+(\\.[\\d']*)?|\\.[\\d']+)((ll|LL|l|L)(u|U)?|(u|U)(ll|LL|l|L)?|f|F|b|B)" + },{ + begin:"(-?)(\\b0[xX][a-fA-F0-9']+|(\\b[\\d']+(\\.[\\d']*)?|\\.[\\d']+)([eE][-+]?[\\d']+)?)" + }],relevance:0},c={className:"meta",begin:/#\s*[a-z]+\b/,end:/$/,keywords:{ + "meta-keyword":"if else elif endif define undef warning error line pragma _Pragma ifdef ifndef include" + },contains:[{begin:/\\\n/,relevance:0},t.inherit(s,{className:"meta-string"}),{ + className:"meta-string",begin:/<.*?>/},n,t.C_BLOCK_COMMENT_MODE]},l={ + className:"title",begin:e(r)+t.IDENT_RE,relevance:0 + },d=e(r)+t.IDENT_RE+"\\s*\\(",u={ + keyword:"int float while private char char8_t char16_t char32_t catch import module export virtual operator sizeof dynamic_cast|10 typedef const_cast|10 const for static_cast|10 union namespace unsigned long volatile static protected bool template mutable if public friend do goto auto void enum else break extern using asm case typeid wchar_t short reinterpret_cast|10 default double register explicit signed typename try this switch continue inline delete alignas alignof constexpr consteval constinit decltype concept co_await co_return co_yield requires noexcept static_assert thread_local restrict final override atomic_bool atomic_char atomic_schar atomic_uchar atomic_short atomic_ushort atomic_int atomic_uint atomic_long atomic_ulong atomic_llong atomic_ullong new throw return and and_eq bitand bitor compl not not_eq or or_eq xor xor_eq", + built_in:"std string wstring cin cout cerr clog stdin stdout stderr stringstream istringstream ostringstream auto_ptr deque list queue stack vector map set pair bitset multiset multimap unordered_set unordered_map unordered_multiset unordered_multimap priority_queue make_pair array shared_ptr abort terminate abs acos asin atan2 atan calloc ceil cosh cos exit exp fabs floor fmod fprintf fputs free frexp fscanf future isalnum isalpha iscntrl isdigit isgraph islower isprint ispunct isspace isupper isxdigit tolower toupper labs ldexp log10 log malloc realloc memchr memcmp memcpy memset modf pow printf putchar puts scanf sinh sin snprintf sprintf sqrt sscanf strcat strchr strcmp strcpy strcspn strlen strncat strncmp strncpy strpbrk strrchr strspn strstr tanh tan vfprintf vprintf vsprintf endl initializer_list unique_ptr _Bool complex _Complex imaginary _Imaginary", + literal:"true false nullptr NULL"},m=[c,i,n,t.C_BLOCK_COMMENT_MODE,o,s],p={ + variants:[{begin:/=/,end:/;/},{begin:/\(/,end:/\)/},{ + beginKeywords:"new throw return else",end:/;/}],keywords:u,contains:m.concat([{ + begin:/\(/,end:/\)/,keywords:u,contains:m.concat(["self"]),relevance:0}]), + relevance:0},_={className:"function",begin:"("+a+"[\\*&\\s]+)+"+d, + returnBegin:!0,end:/[{;=]/,excludeEnd:!0,keywords:u,illegal:/[^\w\s\*&:<>.]/, + contains:[{begin:"decltype\\(auto\\)",keywords:u,relevance:0},{begin:d, + returnBegin:!0,contains:[l],relevance:0},{className:"params",begin:/\(/, + end:/\)/,keywords:u,relevance:0,contains:[n,t.C_BLOCK_COMMENT_MODE,s,o,i,{ + begin:/\(/,end:/\)/,keywords:u,relevance:0, + contains:["self",n,t.C_BLOCK_COMMENT_MODE,s,o,i]}] + },i,n,t.C_BLOCK_COMMENT_MODE,c]};return{name:"C",aliases:["h"],keywords:u, + disableAutodetect:!0,illegal:"",keywords:u,contains:["self",i]},{begin:t.IDENT_RE+"::",keywords:u},{ + className:"class",beginKeywords:"enum class struct union",end:/[{;:<>=]/, + contains:[{beginKeywords:"final class struct"},t.TITLE_MODE]}]),exports:{ + preprocessor:c,strings:s,keywords:u}}}})()); + hljs.registerLanguage("coffeescript",(()=>{"use strict" + ;const e=["as","in","of","if","for","while","finally","var","new","function","do","return","void","else","break","catch","instanceof","with","throw","case","default","try","switch","continue","typeof","delete","let","yield","const","class","debugger","async","await","static","import","from","export","extends"],n=["true","false","null","undefined","NaN","Infinity"],a=[].concat(["setInterval","setTimeout","clearInterval","clearTimeout","require","exports","eval","isFinite","isNaN","parseFloat","parseInt","decodeURI","decodeURIComponent","encodeURI","encodeURIComponent","escape","unescape"],["arguments","this","super","console","window","document","localStorage","module","global"],["Intl","DataView","Number","Math","Date","String","RegExp","Object","Function","Boolean","Error","Symbol","Set","Map","WeakSet","WeakMap","Proxy","Reflect","JSON","Promise","Float64Array","Int16Array","Int32Array","Int8Array","Uint16Array","Uint32Array","Float32Array","Array","Uint8Array","Uint8ClampedArray","ArrayBuffer","BigInt64Array","BigUint64Array","BigInt"],["EvalError","InternalError","RangeError","ReferenceError","SyntaxError","TypeError","URIError"]) + ;return r=>{const t={ + keyword:e.concat(["then","unless","until","loop","by","when","and","or","is","isnt","not"]).filter((i=["var","const","let","function","static"], + e=>!i.includes(e))),literal:n.concat(["yes","no","on","off"]), + built_in:a.concat(["npm","print"])};var i;const s="[A-Za-z$_][0-9A-Za-z$_]*",o={ + className:"subst",begin:/#\{/,end:/\}/,keywords:t + },c=[r.BINARY_NUMBER_MODE,r.inherit(r.C_NUMBER_MODE,{starts:{end:"(\\s*/)?", + relevance:0}}),{className:"string",variants:[{begin:/'''/,end:/'''/, + contains:[r.BACKSLASH_ESCAPE]},{begin:/'/,end:/'/,contains:[r.BACKSLASH_ESCAPE] + },{begin:/"""/,end:/"""/,contains:[r.BACKSLASH_ESCAPE,o]},{begin:/"/,end:/"/, + contains:[r.BACKSLASH_ESCAPE,o]}]},{className:"regexp",variants:[{begin:"///", + end:"///",contains:[o,r.HASH_COMMENT_MODE]},{begin:"//[gim]{0,3}(?=\\W)", + relevance:0},{begin:/\/(?![ *]).*?(?![\\]).\/[gim]{0,3}(?=\W)/}]},{begin:"@"+s + },{subLanguage:"javascript",excludeBegin:!0,excludeEnd:!0,variants:[{ + begin:"```",end:"```"},{begin:"`",end:"`"}]}];o.contains=c + ;const l=r.inherit(r.TITLE_MODE,{begin:s}),d="(\\(.*\\)\\s*)?\\B[-=]>",g={ + className:"params",begin:"\\([^\\(]",returnBegin:!0,contains:[{begin:/\(/, + end:/\)/,keywords:t,contains:["self"].concat(c)}]};return{name:"CoffeeScript", + aliases:["coffee","cson","iced"],keywords:t,illegal:/\/\*/, + contains:c.concat([r.COMMENT("###","###"),r.HASH_COMMENT_MODE,{ + className:"function",begin:"^\\s*"+s+"\\s*=\\s*"+d,end:"[-=]>",returnBegin:!0, + contains:[l,g]},{begin:/[:\(,=]\s*/,relevance:0,contains:[{className:"function", + begin:d,end:"[-=]>",returnBegin:!0,contains:[g]}]},{className:"class", + beginKeywords:"class",end:"$",illegal:/[:="\[\]]/,contains:[{ + beginKeywords:"extends",endsWithParent:!0,illegal:/[:="\[\]]/,contains:[l]},l] + },{begin:s+":",end:":",returnBegin:!0,returnEnd:!0,relevance:0}])}}})()); + hljs.registerLanguage("cpp",(()=>{"use strict";function e(e){ + return t("(",e,")?")}function t(...e){return e.map((e=>{ + return(t=e)?"string"==typeof t?t:t.source:null;var t})).join("")}return n=>{ + const r=n.COMMENT("//","$",{contains:[{begin:/\\\n/}] + }),a="[a-zA-Z_]\\w*::",i="(decltype\\(auto\\)|"+e(a)+"[a-zA-Z_]\\w*"+e("<[^<>]+>")+")",s={ + className:"keyword",begin:"\\b[a-z\\d_]*_t\\b"},c={className:"string", + variants:[{begin:'(u8?|U|L)?"',end:'"',illegal:"\\n", + contains:[n.BACKSLASH_ESCAPE]},{ + begin:"(u8?|U|L)?'(\\\\(x[0-9A-Fa-f]{2}|u[0-9A-Fa-f]{4,8}|[0-7]{3}|\\S)|.)", + end:"'",illegal:"."},n.END_SAME_AS_BEGIN({ + begin:/(?:u8?|U|L)?R"([^()\\ ]{0,16})\(/,end:/\)([^()\\ ]{0,16})"/})]},o={ + className:"number",variants:[{begin:"\\b(0b[01']+)"},{ + begin:"(-?)\\b([\\d']+(\\.[\\d']*)?|\\.[\\d']+)((ll|LL|l|L)(u|U)?|(u|U)(ll|LL|l|L)?|f|F|b|B)" + },{ + begin:"(-?)(\\b0[xX][a-fA-F0-9']+|(\\b[\\d']+(\\.[\\d']*)?|\\.[\\d']+)([eE][-+]?[\\d']+)?)" + }],relevance:0},l={className:"meta",begin:/#\s*[a-z]+\b/,end:/$/,keywords:{ + "meta-keyword":"if else elif endif define undef warning error line pragma _Pragma ifdef ifndef include" + },contains:[{begin:/\\\n/,relevance:0},n.inherit(c,{className:"meta-string"}),{ + className:"meta-string",begin:/<.*?>/},r,n.C_BLOCK_COMMENT_MODE]},d={ + className:"title",begin:e(a)+n.IDENT_RE,relevance:0 + },u=e(a)+n.IDENT_RE+"\\s*\\(",m={ + keyword:"int float while private char char8_t char16_t char32_t catch import module export virtual operator sizeof dynamic_cast|10 typedef const_cast|10 const for static_cast|10 union namespace unsigned long volatile static protected bool template mutable if public friend do goto auto void enum else break extern using asm case typeid wchar_t short reinterpret_cast|10 default double register explicit signed typename try this switch continue inline delete alignas alignof constexpr consteval constinit decltype concept co_await co_return co_yield requires noexcept static_assert thread_local restrict final override atomic_bool atomic_char atomic_schar atomic_uchar atomic_short atomic_ushort atomic_int atomic_uint atomic_long atomic_ulong atomic_llong atomic_ullong new throw return and and_eq bitand bitor compl not not_eq or or_eq xor xor_eq", + built_in:"_Bool _Complex _Imaginary", + _relevance_hints:["asin","atan2","atan","calloc","ceil","cosh","cos","exit","exp","fabs","floor","fmod","fprintf","fputs","free","frexp","auto_ptr","deque","list","queue","stack","vector","map","set","pair","bitset","multiset","multimap","unordered_set","fscanf","future","isalnum","isalpha","iscntrl","isdigit","isgraph","islower","isprint","ispunct","isspace","isupper","isxdigit","tolower","toupper","labs","ldexp","log10","log","malloc","realloc","memchr","memcmp","memcpy","memset","modf","pow","printf","putchar","puts","scanf","sinh","sin","snprintf","sprintf","sqrt","sscanf","strcat","strchr","strcmp","strcpy","strcspn","strlen","strncat","strncmp","strncpy","strpbrk","strrchr","strspn","strstr","tanh","tan","unordered_map","unordered_multiset","unordered_multimap","priority_queue","make_pair","array","shared_ptr","abort","terminate","abs","acos","vfprintf","vprintf","vsprintf","endl","initializer_list","unique_ptr","complex","imaginary","std","string","wstring","cin","cout","cerr","clog","stdin","stdout","stderr","stringstream","istringstream","ostringstream"], + literal:"true false nullptr NULL"},p={className:"function.dispatch",relevance:0, + keywords:m, + begin:t(/\b/,/(?!decltype)/,/(?!if)/,/(?!for)/,/(?!while)/,n.IDENT_RE,(_=/\s*\(/, + t("(?=",_,")")))};var _;const g=[p,l,s,r,n.C_BLOCK_COMMENT_MODE,o,c],b={ + variants:[{begin:/=/,end:/;/},{begin:/\(/,end:/\)/},{ + beginKeywords:"new throw return else",end:/;/}],keywords:m,contains:g.concat([{ + begin:/\(/,end:/\)/,keywords:m,contains:g.concat(["self"]),relevance:0}]), + relevance:0},f={className:"function",begin:"("+i+"[\\*&\\s]+)+"+u, + returnBegin:!0,end:/[{;=]/,excludeEnd:!0,keywords:m,illegal:/[^\w\s\*&:<>.]/, + contains:[{begin:"decltype\\(auto\\)",keywords:m,relevance:0},{begin:u, + returnBegin:!0,contains:[d],relevance:0},{begin:/::/,relevance:0},{begin:/:/, + endsWithParent:!0,contains:[c,o]},{className:"params",begin:/\(/,end:/\)/, + keywords:m,relevance:0,contains:[r,n.C_BLOCK_COMMENT_MODE,c,o,s,{begin:/\(/, + end:/\)/,keywords:m,relevance:0,contains:["self",r,n.C_BLOCK_COMMENT_MODE,c,o,s] + }]},s,r,n.C_BLOCK_COMMENT_MODE,l]};return{name:"C++", + aliases:["cc","c++","h++","hpp","hh","hxx","cxx"],keywords:m,illegal:"",keywords:m,contains:["self",s]},{begin:n.IDENT_RE+"::",keywords:m},{ + className:"class",beginKeywords:"enum class struct union",end:/[{;:<>=]/, + contains:[{beginKeywords:"final class struct"},n.TITLE_MODE]}]),exports:{ + preprocessor:l,strings:c,keywords:m}}}})()); + hljs.registerLanguage("csharp",(()=>{"use strict";return e=>{const n={ + keyword:["abstract","as","base","break","case","class","const","continue","do","else","event","explicit","extern","finally","fixed","for","foreach","goto","if","implicit","in","interface","internal","is","lock","namespace","new","operator","out","override","params","private","protected","public","readonly","record","ref","return","sealed","sizeof","stackalloc","static","struct","switch","this","throw","try","typeof","unchecked","unsafe","using","virtual","void","volatile","while"].concat(["add","alias","and","ascending","async","await","by","descending","equals","from","get","global","group","init","into","join","let","nameof","not","notnull","on","or","orderby","partial","remove","select","set","unmanaged","value|0","var","when","where","with","yield"]), + built_in:["bool","byte","char","decimal","delegate","double","dynamic","enum","float","int","long","nint","nuint","object","sbyte","short","string","ulong","uint","ushort"], + literal:["default","false","null","true"]},a=e.inherit(e.TITLE_MODE,{ + begin:"[a-zA-Z](\\.?\\w)*"}),i={className:"number",variants:[{ + begin:"\\b(0b[01']+)"},{ + begin:"(-?)\\b([\\d']+(\\.[\\d']*)?|\\.[\\d']+)(u|U|l|L|ul|UL|f|F|b|B)"},{ + begin:"(-?)(\\b0[xX][a-fA-F0-9']+|(\\b[\\d']+(\\.[\\d']*)?|\\.[\\d']+)([eE][-+]?[\\d']+)?)" + }],relevance:0},s={className:"string",begin:'@"',end:'"',contains:[{begin:'""'}] + },t=e.inherit(s,{illegal:/\n/}),r={className:"subst",begin:/\{/,end:/\}/, + keywords:n},l=e.inherit(r,{illegal:/\n/}),c={className:"string",begin:/\$"/, + end:'"',illegal:/\n/,contains:[{begin:/\{\{/},{begin:/\}\}/ + },e.BACKSLASH_ESCAPE,l]},o={className:"string",begin:/\$@"/,end:'"',contains:[{ + begin:/\{\{/},{begin:/\}\}/},{begin:'""'},r]},d=e.inherit(o,{illegal:/\n/, + contains:[{begin:/\{\{/},{begin:/\}\}/},{begin:'""'},l]}) + ;r.contains=[o,c,s,e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,i,e.C_BLOCK_COMMENT_MODE], + l.contains=[d,c,t,e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,i,e.inherit(e.C_BLOCK_COMMENT_MODE,{ + illegal:/\n/})];const g={variants:[o,c,s,e.APOS_STRING_MODE,e.QUOTE_STRING_MODE] + },E={begin:"<",end:">",contains:[{beginKeywords:"in out"},a] + },_=e.IDENT_RE+"(<"+e.IDENT_RE+"(\\s*,\\s*"+e.IDENT_RE+")*>)?(\\[\\])?",b={ + begin:"@"+e.IDENT_RE,relevance:0};return{name:"C#",aliases:["cs","c#"], + keywords:n,illegal:/::/,contains:[e.COMMENT("///","$",{returnBegin:!0, + contains:[{className:"doctag",variants:[{begin:"///",relevance:0},{ + begin:"\x3c!--|--\x3e"},{begin:""}]}] + }),e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,{className:"meta",begin:"#", + end:"$",keywords:{ + "meta-keyword":"if else elif endif define undef warning error line region endregion pragma checksum" + }},g,i,{beginKeywords:"class interface",relevance:0,end:/[{;=]/, + illegal:/[^\s:,]/,contains:[{beginKeywords:"where class" + },a,E,e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE]},{beginKeywords:"namespace", + relevance:0,end:/[{;=]/,illegal:/[^\s:]/, + contains:[a,e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE]},{ + beginKeywords:"record",relevance:0,end:/[{;=]/,illegal:/[^\s:]/, + contains:[a,E,e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE]},{className:"meta", + begin:"^\\s*\\[",excludeBegin:!0,end:"\\]",excludeEnd:!0,contains:[{ + className:"meta-string",begin:/"/,end:/"/}]},{ + beginKeywords:"new return throw await else",relevance:0},{className:"function", + begin:"("+_+"\\s+)+"+e.IDENT_RE+"\\s*(<.+>\\s*)?\\(",returnBegin:!0, + end:/\s*[{;=]/,excludeEnd:!0,keywords:n,contains:[{ + beginKeywords:"public private protected static internal protected abstract async extern override unsafe virtual new sealed partial", + relevance:0},{begin:e.IDENT_RE+"\\s*(<.+>\\s*)?\\(",returnBegin:!0, + contains:[e.TITLE_MODE,E],relevance:0},{className:"params",begin:/\(/,end:/\)/, + excludeBegin:!0,excludeEnd:!0,keywords:n,relevance:0, + contains:[g,i,e.C_BLOCK_COMMENT_MODE] + },e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE]},b]}}})()); + hljs.registerLanguage("css",(()=>{"use strict" + ;const e=["a","abbr","address","article","aside","audio","b","blockquote","body","button","canvas","caption","cite","code","dd","del","details","dfn","div","dl","dt","em","fieldset","figcaption","figure","footer","form","h1","h2","h3","h4","h5","h6","header","hgroup","html","i","iframe","img","input","ins","kbd","label","legend","li","main","mark","menu","nav","object","ol","p","q","quote","samp","section","span","strong","summary","sup","table","tbody","td","textarea","tfoot","th","thead","time","tr","ul","var","video"],t=["any-hover","any-pointer","aspect-ratio","color","color-gamut","color-index","device-aspect-ratio","device-height","device-width","display-mode","forced-colors","grid","height","hover","inverted-colors","monochrome","orientation","overflow-block","overflow-inline","pointer","prefers-color-scheme","prefers-contrast","prefers-reduced-motion","prefers-reduced-transparency","resolution","scan","scripting","update","width","min-width","max-width","min-height","max-height"],i=["active","any-link","blank","checked","current","default","defined","dir","disabled","drop","empty","enabled","first","first-child","first-of-type","fullscreen","future","focus","focus-visible","focus-within","has","host","host-context","hover","indeterminate","in-range","invalid","is","lang","last-child","last-of-type","left","link","local-link","not","nth-child","nth-col","nth-last-child","nth-last-col","nth-last-of-type","nth-of-type","only-child","only-of-type","optional","out-of-range","past","placeholder-shown","read-only","read-write","required","right","root","scope","target","target-within","user-invalid","valid","visited","where"],o=["after","backdrop","before","cue","cue-region","first-letter","first-line","grammar-error","marker","part","placeholder","selection","slotted","spelling-error"],r=["align-content","align-items","align-self","animation","animation-delay","animation-direction","animation-duration","animation-fill-mode","animation-iteration-count","animation-name","animation-play-state","animation-timing-function","auto","backface-visibility","background","background-attachment","background-clip","background-color","background-image","background-origin","background-position","background-repeat","background-size","border","border-bottom","border-bottom-color","border-bottom-left-radius","border-bottom-right-radius","border-bottom-style","border-bottom-width","border-collapse","border-color","border-image","border-image-outset","border-image-repeat","border-image-slice","border-image-source","border-image-width","border-left","border-left-color","border-left-style","border-left-width","border-radius","border-right","border-right-color","border-right-style","border-right-width","border-spacing","border-style","border-top","border-top-color","border-top-left-radius","border-top-right-radius","border-top-style","border-top-width","border-width","bottom","box-decoration-break","box-shadow","box-sizing","break-after","break-before","break-inside","caption-side","clear","clip","clip-path","color","column-count","column-fill","column-gap","column-rule","column-rule-color","column-rule-style","column-rule-width","column-span","column-width","columns","content","counter-increment","counter-reset","cursor","direction","display","empty-cells","filter","flex","flex-basis","flex-direction","flex-flow","flex-grow","flex-shrink","flex-wrap","float","font","font-display","font-family","font-feature-settings","font-kerning","font-language-override","font-size","font-size-adjust","font-smoothing","font-stretch","font-style","font-variant","font-variant-ligatures","font-variation-settings","font-weight","height","hyphens","icon","image-orientation","image-rendering","image-resolution","ime-mode","inherit","initial","justify-content","left","letter-spacing","line-height","list-style","list-style-image","list-style-position","list-style-type","margin","margin-bottom","margin-left","margin-right","margin-top","marks","mask","max-height","max-width","min-height","min-width","nav-down","nav-index","nav-left","nav-right","nav-up","none","normal","object-fit","object-position","opacity","order","orphans","outline","outline-color","outline-offset","outline-style","outline-width","overflow","overflow-wrap","overflow-x","overflow-y","padding","padding-bottom","padding-left","padding-right","padding-top","page-break-after","page-break-before","page-break-inside","perspective","perspective-origin","pointer-events","position","quotes","resize","right","src","tab-size","table-layout","text-align","text-align-last","text-decoration","text-decoration-color","text-decoration-line","text-decoration-style","text-indent","text-overflow","text-rendering","text-shadow","text-transform","text-underline-position","top","transform","transform-origin","transform-style","transition","transition-delay","transition-duration","transition-property","transition-timing-function","unicode-bidi","vertical-align","visibility","white-space","widows","width","word-break","word-spacing","word-wrap","z-index"].reverse() + ;return n=>{const a=(e=>({IMPORTANT:{className:"meta",begin:"!important"}, + HEXCOLOR:{className:"number",begin:"#([a-fA-F0-9]{6}|[a-fA-F0-9]{3})"}, + ATTRIBUTE_SELECTOR_MODE:{className:"selector-attr",begin:/\[/,end:/\]/, + illegal:"$",contains:[e.APOS_STRING_MODE,e.QUOTE_STRING_MODE]} + }))(n),l=[n.APOS_STRING_MODE,n.QUOTE_STRING_MODE];return{name:"CSS", + case_insensitive:!0,illegal:/[=|'\$]/,keywords:{keyframePosition:"from to"}, + classNameAliases:{keyframePosition:"selector-tag"}, + contains:[n.C_BLOCK_COMMENT_MODE,{begin:/-(webkit|moz|ms|o)-(?=[a-z])/ + },n.CSS_NUMBER_MODE,{className:"selector-id",begin:/#[A-Za-z0-9_-]+/,relevance:0 + },{className:"selector-class",begin:"\\.[a-zA-Z-][a-zA-Z0-9_-]*",relevance:0 + },a.ATTRIBUTE_SELECTOR_MODE,{className:"selector-pseudo",variants:[{ + begin:":("+i.join("|")+")"},{begin:"::("+o.join("|")+")"}]},{ + className:"attribute",begin:"\\b("+r.join("|")+")\\b"},{begin:":",end:"[;}]", + contains:[a.HEXCOLOR,a.IMPORTANT,n.CSS_NUMBER_MODE,...l,{ + begin:/(url|data-uri)\(/,end:/\)/,relevance:0,keywords:{built_in:"url data-uri" + },contains:[{className:"string",begin:/[^)]/,endsWithParent:!0,excludeEnd:!0}] + },{className:"built_in",begin:/[\w-]+(?=\()/}]},{ + begin:(s=/@/,((...e)=>e.map((e=>(e=>e?"string"==typeof e?e:e.source:null)(e))).join(""))("(?=",s,")")), + end:"[{;]",relevance:0,illegal:/:/,contains:[{className:"keyword", + begin:/@-?\w[\w]*(-\w+)*/},{begin:/\s/,endsWithParent:!0,excludeEnd:!0, + relevance:0,keywords:{$pattern:/[a-z-]+/,keyword:"and or not only", + attribute:t.join(" ")},contains:[{begin:/[a-z-]+(?=:)/,className:"attribute" + },...l,n.CSS_NUMBER_MODE]}]},{className:"selector-tag", + begin:"\\b("+e.join("|")+")\\b"}]};var s}})()); + hljs.registerLanguage("diff",(()=>{"use strict";return e=>({name:"Diff", + aliases:["patch"],contains:[{className:"meta",relevance:10,variants:[{ + begin:/^@@ +-\d+,\d+ +\+\d+,\d+ +@@/},{begin:/^\*\*\* +\d+,\d+ +\*\*\*\*$/},{ + begin:/^--- +\d+,\d+ +----$/}]},{className:"comment",variants:[{begin:/Index: /, + end:/$/},{begin:/^index/,end:/$/},{begin:/={3,}/,end:/$/},{begin:/^-{3}/,end:/$/ + },{begin:/^\*{3} /,end:/$/},{begin:/^\+{3}/,end:/$/},{begin:/^\*{15}$/},{ + begin:/^diff --git/,end:/$/}]},{className:"addition",begin:/^\+/,end:/$/},{ + className:"deletion",begin:/^-/,end:/$/},{className:"addition",begin:/^!/, + end:/$/}]})})()); + hljs.registerLanguage("go",(()=>{"use strict";return e=>{const n={ + keyword:"break default func interface select case map struct chan else goto package switch const fallthrough if range type continue for import return var go defer bool byte complex64 complex128 float32 float64 int8 int16 int32 int64 string uint8 uint16 uint32 uint64 int uint uintptr rune", + literal:"true false iota nil", + built_in:"append cap close complex copy imag len make new panic print println real recover delete" + };return{name:"Go",aliases:["golang"],keywords:n,illegal:"{"use strict";function e(...e){ + return e.map((e=>{return(n=e)?"string"==typeof n?n:n.source:null;var n + })).join("")}return n=>{const a="HTTP/(2|1\\.[01])",s={className:"attribute", + begin:e("^",/[A-Za-z][A-Za-z0-9-]*/,"(?=\\:\\s)"),starts:{contains:[{ + className:"punctuation",begin:/: /,relevance:0,starts:{end:"$",relevance:0}}]} + },t=[s,{begin:"\\n\\n",starts:{subLanguage:[],endsWithParent:!0}}];return{ + name:"HTTP",aliases:["https"],illegal:/\S/,contains:[{begin:"^(?="+a+" \\d{3})", + end:/$/,contains:[{className:"meta",begin:a},{className:"number", + begin:"\\b\\d{3}\\b"}],starts:{end:/\b\B/,illegal:/\S/,contains:t}},{ + begin:"(?=^[A-Z]+ (.*?) "+a+"$)",end:/$/,contains:[{className:"string", + begin:" ",end:" ",excludeBegin:!0,excludeEnd:!0},{className:"meta",begin:a},{ + className:"keyword",begin:"[A-Z]+"}],starts:{end:/\b\B/,illegal:/\S/,contains:t} + },n.inherit(s,{relevance:0})]}}})()); + hljs.registerLanguage("ini",(()=>{"use strict";function e(e){ + return e?"string"==typeof e?e:e.source:null}function n(...n){ + return n.map((n=>e(n))).join("")}return s=>{const a={className:"number", + relevance:0,variants:[{begin:/([+-]+)?[\d]+_[\d_]+/},{begin:s.NUMBER_RE}] + },i=s.COMMENT();i.variants=[{begin:/;/,end:/$/},{begin:/#/,end:/$/}];const t={ + className:"variable",variants:[{begin:/\$[\w\d"][\w\d_]*/},{begin:/\$\{(.*?)\}/ + }]},r={className:"literal",begin:/\bon|off|true|false|yes|no\b/},l={ + className:"string",contains:[s.BACKSLASH_ESCAPE],variants:[{begin:"'''", + end:"'''",relevance:10},{begin:'"""',end:'"""',relevance:10},{begin:'"',end:'"' + },{begin:"'",end:"'"}]},c={begin:/\[/,end:/\]/,contains:[i,r,t,l,a,"self"], + relevance:0 + },g="("+[/[A-Za-z0-9_-]+/,/"(\\"|[^"])*"/,/'[^']*'/].map((n=>e(n))).join("|")+")" + ;return{name:"TOML, also INI",aliases:["toml"],case_insensitive:!0,illegal:/\S/, + contains:[i,{className:"section",begin:/\[+/,end:/\]+/},{ + begin:n(g,"(\\s*\\.\\s*",g,")*",n("(?=",/\s*=\s*[^#\s]/,")")),className:"attr", + starts:{end:/$/,contains:[i,c,r,t,l,a]}}]}}})()); + hljs.registerLanguage("java",(()=>{"use strict" + ;var e="\\.([0-9](_*[0-9])*)",n="[0-9a-fA-F](_*[0-9a-fA-F])*",a={ + className:"number",variants:[{ + begin:`(\\b([0-9](_*[0-9])*)((${e})|\\.)?|(${e}))[eE][+-]?([0-9](_*[0-9])*)[fFdD]?\\b` + },{begin:`\\b([0-9](_*[0-9])*)((${e})[fFdD]?\\b|\\.([fFdD]\\b)?)`},{ + begin:`(${e})[fFdD]?\\b`},{begin:"\\b([0-9](_*[0-9])*)[fFdD]\\b"},{ + begin:`\\b0[xX]((${n})\\.?|(${n})?\\.(${n}))[pP][+-]?([0-9](_*[0-9])*)[fFdD]?\\b` + },{begin:"\\b(0|[1-9](_*[0-9])*)[lL]?\\b"},{begin:`\\b0[xX](${n})[lL]?\\b`},{ + begin:"\\b0(_*[0-7])*[lL]?\\b"},{begin:"\\b0[bB][01](_*[01])*[lL]?\\b"}], + relevance:0};return e=>{ + var n="false synchronized int abstract float private char boolean var static null if const for true while long strictfp finally protected import native final void enum else break transient catch instanceof byte super volatile case assert short package default double public try this switch continue throws protected public private module requires exports do",s={ + className:"meta",begin:"@[\xc0-\u02b8a-zA-Z_$][\xc0-\u02b8a-zA-Z_$0-9]*", + contains:[{begin:/\(/,end:/\)/,contains:["self"]}]};const r=a;return{ + name:"Java",aliases:["jsp"],keywords:n,illegal:/<\/|#/, + contains:[e.COMMENT("/\\*\\*","\\*/",{relevance:0,contains:[{begin:/\w+@/, + relevance:0},{className:"doctag",begin:"@[A-Za-z]+"}]}),{ + begin:/import java\.[a-z]+\./,keywords:"import",relevance:2 + },e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,{ + className:"class",beginKeywords:"class interface enum",end:/[{;=]/, + excludeEnd:!0,relevance:1,keywords:"class interface enum",illegal:/[:"\[\]]/, + contains:[{beginKeywords:"extends implements"},e.UNDERSCORE_TITLE_MODE]},{ + beginKeywords:"new throw return else",relevance:0},{className:"class", + begin:"record\\s+"+e.UNDERSCORE_IDENT_RE+"\\s*\\(",returnBegin:!0,excludeEnd:!0, + end:/[{;=]/,keywords:n,contains:[{beginKeywords:"record"},{ + begin:e.UNDERSCORE_IDENT_RE+"\\s*\\(",returnBegin:!0,relevance:0, + contains:[e.UNDERSCORE_TITLE_MODE]},{className:"params",begin:/\(/,end:/\)/, + keywords:n,relevance:0,contains:[e.C_BLOCK_COMMENT_MODE] + },e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE]},{className:"function", + begin:"([\xc0-\u02b8a-zA-Z_$][\xc0-\u02b8a-zA-Z_$0-9]*(<[\xc0-\u02b8a-zA-Z_$][\xc0-\u02b8a-zA-Z_$0-9]*(\\s*,\\s*[\xc0-\u02b8a-zA-Z_$][\xc0-\u02b8a-zA-Z_$0-9]*)*>)?\\s+)+"+e.UNDERSCORE_IDENT_RE+"\\s*\\(", + returnBegin:!0,end:/[{;=]/,excludeEnd:!0,keywords:n,contains:[{ + begin:e.UNDERSCORE_IDENT_RE+"\\s*\\(",returnBegin:!0,relevance:0, + contains:[e.UNDERSCORE_TITLE_MODE]},{className:"params",begin:/\(/,end:/\)/, + keywords:n,relevance:0, + contains:[s,e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,r,e.C_BLOCK_COMMENT_MODE] + },e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE]},r,s]}}})()); + hljs.registerLanguage("javascript",(()=>{"use strict" + ;const e="[A-Za-z$_][0-9A-Za-z$_]*",n=["as","in","of","if","for","while","finally","var","new","function","do","return","void","else","break","catch","instanceof","with","throw","case","default","try","switch","continue","typeof","delete","let","yield","const","class","debugger","async","await","static","import","from","export","extends"],a=["true","false","null","undefined","NaN","Infinity"],s=[].concat(["setInterval","setTimeout","clearInterval","clearTimeout","require","exports","eval","isFinite","isNaN","parseFloat","parseInt","decodeURI","decodeURIComponent","encodeURI","encodeURIComponent","escape","unescape"],["arguments","this","super","console","window","document","localStorage","module","global"],["Intl","DataView","Number","Math","Date","String","RegExp","Object","Function","Boolean","Error","Symbol","Set","Map","WeakSet","WeakMap","Proxy","Reflect","JSON","Promise","Float64Array","Int16Array","Int32Array","Int8Array","Uint16Array","Uint32Array","Float32Array","Array","Uint8Array","Uint8ClampedArray","ArrayBuffer","BigInt64Array","BigUint64Array","BigInt"],["EvalError","InternalError","RangeError","ReferenceError","SyntaxError","TypeError","URIError"]) + ;function r(e){return t("(?=",e,")")}function t(...e){return e.map((e=>{ + return(n=e)?"string"==typeof n?n:n.source:null;var n})).join("")}return i=>{ + const c=e,o={begin:/<[A-Za-z0-9\\._:-]+/,end:/\/[A-Za-z0-9\\._:-]+>|\/>/, + isTrulyOpeningTag:(e,n)=>{const a=e[0].length+e.index,s=e.input[a] + ;"<"!==s?">"===s&&(((e,{after:n})=>{const a="", + returnBegin:!0,end:"\\s*=>",contains:[{className:"params",variants:[{ + begin:i.UNDERSCORE_IDENT_RE,relevance:0},{className:null,begin:/\(\s*\)/,skip:!0 + },{begin:/\(/,end:/\)/,excludeBegin:!0,excludeEnd:!0,keywords:l,contains:f}]}] + },{begin:/,/,relevance:0},{className:"",begin:/\s/,end:/\s*/,skip:!0},{ + variants:[{begin:"<>",end:""},{begin:o.begin,"on:begin":o.isTrulyOpeningTag, + end:o.end}],subLanguage:"xml",contains:[{begin:o.begin,end:o.end,skip:!0, + contains:["self"]}]}],relevance:0},{className:"function", + beginKeywords:"function",end:/[{;]/,excludeEnd:!0,keywords:l, + contains:["self",i.inherit(i.TITLE_MODE,{begin:c}),p],illegal:/%/},{ + beginKeywords:"while if switch catch for"},{className:"function", + begin:i.UNDERSCORE_IDENT_RE+"\\([^()]*(\\([^()]*(\\([^()]*\\)[^()]*)*\\)[^()]*)*\\)\\s*\\{", + returnBegin:!0,contains:[p,i.inherit(i.TITLE_MODE,{begin:c})]},{variants:[{ + begin:"\\."+c},{begin:"\\$"+c}],relevance:0},{className:"class", + beginKeywords:"class",end:/[{;=]/,excludeEnd:!0,illegal:/[:"[\]]/,contains:[{ + beginKeywords:"extends"},i.UNDERSCORE_TITLE_MODE]},{begin:/\b(?=constructor)/, + end:/[{;]/,excludeEnd:!0,contains:[i.inherit(i.TITLE_MODE,{begin:c}),"self",p] + },{begin:"(get|set)\\s+(?="+c+"\\()",end:/\{/,keywords:"get set", + contains:[i.inherit(i.TITLE_MODE,{begin:c}),{begin:/\(\)/},p]},{begin:/\$[(.]/}] + }}})()); + hljs.registerLanguage("json",(()=>{"use strict";return n=>{const e={ + literal:"true false null" + },i=[n.C_LINE_COMMENT_MODE,n.C_BLOCK_COMMENT_MODE],a=[n.QUOTE_STRING_MODE,n.C_NUMBER_MODE],l={ + end:",",endsWithParent:!0,excludeEnd:!0,contains:a,keywords:e},t={begin:/\{/, + end:/\}/,contains:[{className:"attr",begin:/"/,end:/"/, + contains:[n.BACKSLASH_ESCAPE],illegal:"\\n"},n.inherit(l,{begin:/:/ + })].concat(i),illegal:"\\S"},s={begin:"\\[",end:"\\]",contains:[n.inherit(l)], + illegal:"\\S"};return a.push(t,s),i.forEach((n=>{a.push(n)})),{name:"JSON", + contains:a,keywords:e,illegal:"\\S"}}})()); + hljs.registerLanguage("kotlin",(()=>{"use strict" + ;var e="\\.([0-9](_*[0-9])*)",n="[0-9a-fA-F](_*[0-9a-fA-F])*",a={ + className:"number",variants:[{ + begin:`(\\b([0-9](_*[0-9])*)((${e})|\\.)?|(${e}))[eE][+-]?([0-9](_*[0-9])*)[fFdD]?\\b` + },{begin:`\\b([0-9](_*[0-9])*)((${e})[fFdD]?\\b|\\.([fFdD]\\b)?)`},{ + begin:`(${e})[fFdD]?\\b`},{begin:"\\b([0-9](_*[0-9])*)[fFdD]\\b"},{ + begin:`\\b0[xX]((${n})\\.?|(${n})?\\.(${n}))[pP][+-]?([0-9](_*[0-9])*)[fFdD]?\\b` + },{begin:"\\b(0|[1-9](_*[0-9])*)[lL]?\\b"},{begin:`\\b0[xX](${n})[lL]?\\b`},{ + begin:"\\b0(_*[0-7])*[lL]?\\b"},{begin:"\\b0[bB][01](_*[01])*[lL]?\\b"}], + relevance:0};return e=>{const n={ + keyword:"abstract as val var vararg get set class object open private protected public noinline crossinline dynamic final enum if else do while for when throw try catch finally import package is in fun override companion reified inline lateinit init interface annotation data sealed internal infix operator out by constructor super tailrec where const inner suspend typealias external expect actual", + built_in:"Byte Short Char Int Long Boolean Float Double Void Unit Nothing", + literal:"true false null"},i={className:"symbol",begin:e.UNDERSCORE_IDENT_RE+"@" + },s={className:"subst",begin:/\$\{/,end:/\}/,contains:[e.C_NUMBER_MODE]},t={ + className:"variable",begin:"\\$"+e.UNDERSCORE_IDENT_RE},r={className:"string", + variants:[{begin:'"""',end:'"""(?=[^"])',contains:[t,s]},{begin:"'",end:"'", + illegal:/\n/,contains:[e.BACKSLASH_ESCAPE]},{begin:'"',end:'"',illegal:/\n/, + contains:[e.BACKSLASH_ESCAPE,t,s]}]};s.contains.push(r);const l={ + className:"meta", + begin:"@(?:file|property|field|get|set|receiver|param|setparam|delegate)\\s*:(?:\\s*"+e.UNDERSCORE_IDENT_RE+")?" + },c={className:"meta",begin:"@"+e.UNDERSCORE_IDENT_RE,contains:[{begin:/\(/, + end:/\)/,contains:[e.inherit(r,{className:"meta-string"})]}] + },o=a,b=e.COMMENT("/\\*","\\*/",{contains:[e.C_BLOCK_COMMENT_MODE]}),E={ + variants:[{className:"type",begin:e.UNDERSCORE_IDENT_RE},{begin:/\(/,end:/\)/, + contains:[]}]},d=E;return d.variants[1].contains=[E],E.variants[1].contains=[d], + {name:"Kotlin",aliases:["kt","kts"],keywords:n, + contains:[e.COMMENT("/\\*\\*","\\*/",{relevance:0,contains:[{className:"doctag", + begin:"@[A-Za-z]+"}]}),e.C_LINE_COMMENT_MODE,b,{className:"keyword", + begin:/\b(break|continue|return|this)\b/,starts:{contains:[{className:"symbol", + begin:/@\w+/}]}},i,l,c,{className:"function",beginKeywords:"fun",end:"[(]|$", + returnBegin:!0,excludeEnd:!0,keywords:n,relevance:5,contains:[{ + begin:e.UNDERSCORE_IDENT_RE+"\\s*\\(",returnBegin:!0,relevance:0, + contains:[e.UNDERSCORE_TITLE_MODE]},{className:"type",begin://, + keywords:"reified",relevance:0},{className:"params",begin:/\(/,end:/\)/, + endsParent:!0,keywords:n,relevance:0,contains:[{begin:/:/,end:/[=,\/]/, + endsWithParent:!0,contains:[E,e.C_LINE_COMMENT_MODE,b],relevance:0 + },e.C_LINE_COMMENT_MODE,b,l,c,r,e.C_NUMBER_MODE]},b]},{className:"class", + beginKeywords:"class interface trait",end:/[:\{(]|$/,excludeEnd:!0, + illegal:"extends implements",contains:[{ + beginKeywords:"public protected internal private constructor" + },e.UNDERSCORE_TITLE_MODE,{className:"type",begin://,excludeBegin:!0, + excludeEnd:!0,relevance:0},{className:"type",begin:/[,:]\s*/,end:/[<\(,]|$/, + excludeBegin:!0,returnEnd:!0},l,c]},r,{className:"meta",begin:"^#!/usr/bin/env", + end:"$",illegal:"\n"},o]}}})()); + hljs.registerLanguage("less",(()=>{"use strict" + ;const e=["a","abbr","address","article","aside","audio","b","blockquote","body","button","canvas","caption","cite","code","dd","del","details","dfn","div","dl","dt","em","fieldset","figcaption","figure","footer","form","h1","h2","h3","h4","h5","h6","header","hgroup","html","i","iframe","img","input","ins","kbd","label","legend","li","main","mark","menu","nav","object","ol","p","q","quote","samp","section","span","strong","summary","sup","table","tbody","td","textarea","tfoot","th","thead","time","tr","ul","var","video"],t=["any-hover","any-pointer","aspect-ratio","color","color-gamut","color-index","device-aspect-ratio","device-height","device-width","display-mode","forced-colors","grid","height","hover","inverted-colors","monochrome","orientation","overflow-block","overflow-inline","pointer","prefers-color-scheme","prefers-contrast","prefers-reduced-motion","prefers-reduced-transparency","resolution","scan","scripting","update","width","min-width","max-width","min-height","max-height"],i=["active","any-link","blank","checked","current","default","defined","dir","disabled","drop","empty","enabled","first","first-child","first-of-type","fullscreen","future","focus","focus-visible","focus-within","has","host","host-context","hover","indeterminate","in-range","invalid","is","lang","last-child","last-of-type","left","link","local-link","not","nth-child","nth-col","nth-last-child","nth-last-col","nth-last-of-type","nth-of-type","only-child","only-of-type","optional","out-of-range","past","placeholder-shown","read-only","read-write","required","right","root","scope","target","target-within","user-invalid","valid","visited","where"],o=["after","backdrop","before","cue","cue-region","first-letter","first-line","grammar-error","marker","part","placeholder","selection","slotted","spelling-error"],n=["align-content","align-items","align-self","animation","animation-delay","animation-direction","animation-duration","animation-fill-mode","animation-iteration-count","animation-name","animation-play-state","animation-timing-function","auto","backface-visibility","background","background-attachment","background-clip","background-color","background-image","background-origin","background-position","background-repeat","background-size","border","border-bottom","border-bottom-color","border-bottom-left-radius","border-bottom-right-radius","border-bottom-style","border-bottom-width","border-collapse","border-color","border-image","border-image-outset","border-image-repeat","border-image-slice","border-image-source","border-image-width","border-left","border-left-color","border-left-style","border-left-width","border-radius","border-right","border-right-color","border-right-style","border-right-width","border-spacing","border-style","border-top","border-top-color","border-top-left-radius","border-top-right-radius","border-top-style","border-top-width","border-width","bottom","box-decoration-break","box-shadow","box-sizing","break-after","break-before","break-inside","caption-side","clear","clip","clip-path","color","column-count","column-fill","column-gap","column-rule","column-rule-color","column-rule-style","column-rule-width","column-span","column-width","columns","content","counter-increment","counter-reset","cursor","direction","display","empty-cells","filter","flex","flex-basis","flex-direction","flex-flow","flex-grow","flex-shrink","flex-wrap","float","font","font-display","font-family","font-feature-settings","font-kerning","font-language-override","font-size","font-size-adjust","font-smoothing","font-stretch","font-style","font-variant","font-variant-ligatures","font-variation-settings","font-weight","height","hyphens","icon","image-orientation","image-rendering","image-resolution","ime-mode","inherit","initial","justify-content","left","letter-spacing","line-height","list-style","list-style-image","list-style-position","list-style-type","margin","margin-bottom","margin-left","margin-right","margin-top","marks","mask","max-height","max-width","min-height","min-width","nav-down","nav-index","nav-left","nav-right","nav-up","none","normal","object-fit","object-position","opacity","order","orphans","outline","outline-color","outline-offset","outline-style","outline-width","overflow","overflow-wrap","overflow-x","overflow-y","padding","padding-bottom","padding-left","padding-right","padding-top","page-break-after","page-break-before","page-break-inside","perspective","perspective-origin","pointer-events","position","quotes","resize","right","src","tab-size","table-layout","text-align","text-align-last","text-decoration","text-decoration-color","text-decoration-line","text-decoration-style","text-indent","text-overflow","text-rendering","text-shadow","text-transform","text-underline-position","top","transform","transform-origin","transform-style","transition","transition-delay","transition-duration","transition-property","transition-timing-function","unicode-bidi","vertical-align","visibility","white-space","widows","width","word-break","word-spacing","word-wrap","z-index"].reverse(),r=i.concat(o) + ;return a=>{const s=(e=>({IMPORTANT:{className:"meta",begin:"!important"}, + HEXCOLOR:{className:"number",begin:"#([a-fA-F0-9]{6}|[a-fA-F0-9]{3})"}, + ATTRIBUTE_SELECTOR_MODE:{className:"selector-attr",begin:/\[/,end:/\]/, + illegal:"$",contains:[e.APOS_STRING_MODE,e.QUOTE_STRING_MODE]} + }))(a),l=r,d="([\\w-]+|@\\{[\\w-]+\\})",c=[],g=[],b=e=>({className:"string", + begin:"~?"+e+".*?"+e}),m=(e,t,i)=>({className:e,begin:t,relevance:i}),u={ + $pattern:/[a-z-]+/,keyword:"and or not only",attribute:t.join(" ")},p={ + begin:"\\(",end:"\\)",contains:g,keywords:u,relevance:0} + ;g.push(a.C_LINE_COMMENT_MODE,a.C_BLOCK_COMMENT_MODE,b("'"),b('"'),a.CSS_NUMBER_MODE,{ + begin:"(url|data-uri)\\(",starts:{className:"string",end:"[\\)\\n]", + excludeEnd:!0} + },s.HEXCOLOR,p,m("variable","@@?[\\w-]+",10),m("variable","@\\{[\\w-]+\\}"),m("built_in","~?`[^`]*?`"),{ + className:"attribute",begin:"[\\w-]+\\s*:",end:":",returnBegin:!0,excludeEnd:!0 + },s.IMPORTANT);const f=g.concat({begin:/\{/,end:/\}/,contains:c}),h={ + beginKeywords:"when",endsWithParent:!0,contains:[{beginKeywords:"and not" + }].concat(g)},w={begin:d+"\\s*:",returnBegin:!0,end:/[;}]/,relevance:0, + contains:[{begin:/-(webkit|moz|ms|o)-/},{className:"attribute", + begin:"\\b("+n.join("|")+")\\b",end:/(?=:)/,starts:{endsWithParent:!0, + illegal:"[<=$]",relevance:0,contains:g}}]},v={className:"keyword", + begin:"@(import|media|charset|font-face|(-[a-z]+-)?keyframes|supports|document|namespace|page|viewport|host)\\b", + starts:{end:"[;{}]",keywords:u,returnEnd:!0,contains:g,relevance:0}},y={ + className:"variable",variants:[{begin:"@[\\w-]+\\s*:",relevance:15},{ + begin:"@[\\w-]+"}],starts:{end:"[;}]",returnEnd:!0,contains:f}},k={variants:[{ + begin:"[\\.#:&\\[>]",end:"[;{}]"},{begin:d,end:/\{/}],returnBegin:!0, + returnEnd:!0,illegal:"[<='$\"]",relevance:0, + contains:[a.C_LINE_COMMENT_MODE,a.C_BLOCK_COMMENT_MODE,h,m("keyword","all\\b"),m("variable","@\\{[\\w-]+\\}"),{ + begin:"\\b("+e.join("|")+")\\b",className:"selector-tag" + },m("selector-tag",d+"%?",0),m("selector-id","#"+d),m("selector-class","\\."+d,0),m("selector-tag","&",0),s.ATTRIBUTE_SELECTOR_MODE,{ + className:"selector-pseudo",begin:":("+i.join("|")+")"},{ + className:"selector-pseudo",begin:"::("+o.join("|")+")"},{begin:"\\(",end:"\\)", + contains:f},{begin:"!important"}]},E={begin:`[\\w-]+:(:)?(${l.join("|")})`, + returnBegin:!0,contains:[k]} + ;return c.push(a.C_LINE_COMMENT_MODE,a.C_BLOCK_COMMENT_MODE,v,y,E,w,k),{ + name:"Less",case_insensitive:!0,illegal:"[=>'/<($\"]",contains:c}}})()); + hljs.registerLanguage("lua",(()=>{"use strict";return e=>{ + const t="\\[=*\\[",a="\\]=*\\]",n={begin:t,end:a,contains:["self"] + },o=[e.COMMENT("--(?!\\[=*\\[)","$"),e.COMMENT("--\\[=*\\[",a,{contains:[n], + relevance:10})];return{name:"Lua",keywords:{$pattern:e.UNDERSCORE_IDENT_RE, + literal:"true false nil", + keyword:"and break do else elseif end for goto if in local not or repeat return then until while", + built_in:"_G _ENV _VERSION __index __newindex __mode __call __metatable __tostring __len __gc __add __sub __mul __div __mod __pow __concat __unm __eq __lt __le assert collectgarbage dofile error getfenv getmetatable ipairs load loadfile loadstring module next pairs pcall print rawequal rawget rawset require select setfenv setmetatable tonumber tostring type unpack xpcall arg self coroutine resume yield status wrap create running debug getupvalue debug sethook getmetatable gethook setmetatable setlocal traceback setfenv getinfo setupvalue getlocal getregistry getfenv io lines write close flush open output type read stderr stdin input stdout popen tmpfile math log max acos huge ldexp pi cos tanh pow deg tan cosh sinh random randomseed frexp ceil floor rad abs sqrt modf asin min mod fmod log10 atan2 exp sin atan os exit setlocale date getenv difftime remove time clock tmpname rename execute package preload loadlib loaded loaders cpath config path seeall string sub upper len gfind rep find match char dump gmatch reverse byte format gsub lower table setn insert getn foreachi maxn foreach concat sort remove" + },contains:o.concat([{className:"function",beginKeywords:"function",end:"\\)", + contains:[e.inherit(e.TITLE_MODE,{ + begin:"([_a-zA-Z]\\w*\\.)*([_a-zA-Z]\\w*:)?[_a-zA-Z]\\w*"}),{className:"params", + begin:"\\(",endsWithParent:!0,contains:o}].concat(o) + },e.C_NUMBER_MODE,e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,{className:"string", + begin:t,end:a,contains:[n],relevance:5}])}}})()); + hljs.registerLanguage("makefile",(()=>{"use strict";return e=>{const i={ + className:"variable",variants:[{begin:"\\$\\("+e.UNDERSCORE_IDENT_RE+"\\)", + contains:[e.BACKSLASH_ESCAPE]},{begin:/\$[@%{"use strict";function e(e){ + return e?"string"==typeof e?e:e.source:null}function n(e){return a("(?=",e,")")} + function a(...n){return n.map((n=>e(n))).join("")}function s(...n){ + return"("+n.map((n=>e(n))).join("|")+")"}return e=>{ + const t=a(/[A-Z_]/,a("(",/[A-Z0-9_.-]*:/,")?"),/[A-Z0-9_.-]*/),i={ + className:"symbol",begin:/&[a-z]+;|&#[0-9]+;|&#x[a-f0-9]+;/},r={begin:/\s/, + contains:[{className:"meta-keyword",begin:/#?[a-z_][a-z1-9_-]+/,illegal:/\n/}] + },c=e.inherit(r,{begin:/\(/,end:/\)/}),l=e.inherit(e.APOS_STRING_MODE,{ + className:"meta-string"}),g=e.inherit(e.QUOTE_STRING_MODE,{ + className:"meta-string"}),m={endsWithParent:!0,illegal:/`]+/}]}] + }]};return{name:"HTML, XML", + aliases:["html","xhtml","rss","atom","xjb","xsd","xsl","plist","wsf","svg"], + case_insensitive:!0,contains:[{className:"meta",begin://, + relevance:10,contains:[r,g,l,c,{begin:/\[/,end:/\]/,contains:[{className:"meta", + begin://,contains:[r,c,g,l]}]}]},e.COMMENT(//,{ + relevance:10}),{begin://,relevance:10},i,{ + className:"meta",begin:/<\?xml/,end:/\?>/,relevance:10},{className:"tag", + begin:/)/,end:/>/,keywords:{name:"style"},contains:[m],starts:{ + end:/<\/style>/,returnEnd:!0,subLanguage:["css","xml"]}},{className:"tag", + begin:/)/,end:/>/,keywords:{name:"script"},contains:[m],starts:{ + end:/<\/script>/,returnEnd:!0,subLanguage:["javascript","handlebars","xml"]}},{ + className:"tag",begin:/<>|<\/>/},{className:"tag", + begin:a(//,/>/,/\s/)))),end:/\/?>/,contains:[{className:"name", + begin:t,relevance:0,starts:m}]},{className:"tag",begin:a(/<\//,n(a(t,/>/))), + contains:[{className:"name",begin:t,relevance:0},{begin:/>/,relevance:0, + endsParent:!0}]}]}}})()); + hljs.registerLanguage("markdown",(()=>{"use strict";function n(...n){ + return n.map((n=>{return(e=n)?"string"==typeof e?e:e.source:null;var e + })).join("")}return e=>{const a={begin:/<\/?[A-Za-z_]/,end:">", + subLanguage:"xml",relevance:0},i={variants:[{begin:/\[.+?\]\[.*?\]/,relevance:0 + },{begin:/\[.+?\]\(((data|javascript|mailto):|(?:http|ftp)s?:\/\/).*?\)/, + relevance:2},{begin:n(/\[.+?\]\(/,/[A-Za-z][A-Za-z0-9+.-]*/,/:\/\/.*?\)/), + relevance:2},{begin:/\[.+?\]\([./?&#].*?\)/,relevance:1},{ + begin:/\[.+?\]\(.*?\)/,relevance:0}],returnBegin:!0,contains:[{ + className:"string",relevance:0,begin:"\\[",end:"\\]",excludeBegin:!0, + returnEnd:!0},{className:"link",relevance:0,begin:"\\]\\(",end:"\\)", + excludeBegin:!0,excludeEnd:!0},{className:"symbol",relevance:0,begin:"\\]\\[", + end:"\\]",excludeBegin:!0,excludeEnd:!0}]},s={className:"strong",contains:[], + variants:[{begin:/_{2}/,end:/_{2}/},{begin:/\*{2}/,end:/\*{2}/}]},c={ + className:"emphasis",contains:[],variants:[{begin:/\*(?!\*)/,end:/\*/},{ + begin:/_(?!_)/,end:/_/,relevance:0}]};s.contains.push(c),c.contains.push(s) + ;let t=[a,i] + ;return s.contains=s.contains.concat(t),c.contains=c.contains.concat(t), + t=t.concat(s,c),{name:"Markdown",aliases:["md","mkdown","mkd"],contains:[{ + className:"section",variants:[{begin:"^#{1,6}",end:"$",contains:t},{ + begin:"(?=^.+?\\n[=-]{2,}$)",contains:[{begin:"^[=-]*$"},{begin:"^",end:"\\n", + contains:t}]}]},a,{className:"bullet",begin:"^[ \t]*([*+-]|(\\d+\\.))(?=\\s+)", + end:"\\s+",excludeEnd:!0},s,c,{className:"quote",begin:"^>\\s+",contains:t, + end:"$"},{className:"code",variants:[{begin:"(`{3,})[^`](.|\\n)*?\\1`*[ ]*"},{ + begin:"(~{3,})[^~](.|\\n)*?\\1~*[ ]*"},{begin:"```",end:"```+[ ]*$"},{ + begin:"~~~",end:"~~~+[ ]*$"},{begin:"`.+?`"},{begin:"(?=^( {4}|\\t))", + contains:[{begin:"^( {4}|\\t)",end:"(\\n)$"}],relevance:0}]},{ + begin:"^[-\\*]{3,}",end:"$"},i,{begin:/^\[[^\n]+\]:/,returnBegin:!0,contains:[{ + className:"symbol",begin:/\[/,end:/\]/,excludeBegin:!0,excludeEnd:!0},{ + className:"link",begin:/:\s*/,end:/$/,excludeBegin:!0}]}]}}})()); + hljs.registerLanguage("nginx",(()=>{"use strict";return e=>{const n={ + className:"variable",variants:[{begin:/\$\d+/},{begin:/\$\{/,end:/\}/},{ + begin:/[$@]/+e.UNDERSCORE_IDENT_RE}]},a={endsWithParent:!0,keywords:{ + $pattern:"[a-z/_]+", + literal:"on off yes no true false none blocked debug info notice warn error crit select break last permanent redirect kqueue rtsig epoll poll /dev/poll" + },relevance:0,illegal:"=>",contains:[e.HASH_COMMENT_MODE,{className:"string", + contains:[e.BACKSLASH_ESCAPE,n],variants:[{begin:/"/,end:/"/},{begin:/'/,end:/'/ + }]},{begin:"([a-z]+):/",end:"\\s",endsWithParent:!0,excludeEnd:!0,contains:[n] + },{className:"regexp",contains:[e.BACKSLASH_ESCAPE,n],variants:[{begin:"\\s\\^", + end:"\\s|\\{|;",returnEnd:!0},{begin:"~\\*?\\s+",end:"\\s|\\{|;",returnEnd:!0},{ + begin:"\\*(\\.[a-z\\-]+)+"},{begin:"([a-z\\-]+\\.)+\\*"}]},{className:"number", + begin:"\\b\\d{1,3}\\.\\d{1,3}\\.\\d{1,3}\\.\\d{1,3}(:\\d{1,5})?\\b"},{ + className:"number",begin:"\\b\\d+[kKmMgGdshdwy]*\\b",relevance:0},n]};return{ + name:"Nginx config",aliases:["nginxconf"],contains:[e.HASH_COMMENT_MODE,{ + begin:e.UNDERSCORE_IDENT_RE+"\\s+\\{",returnBegin:!0,end:/\{/,contains:[{ + className:"section",begin:e.UNDERSCORE_IDENT_RE}],relevance:0},{ + begin:e.UNDERSCORE_IDENT_RE+"\\s",end:";|\\{",returnBegin:!0,contains:[{ + className:"attribute",begin:e.UNDERSCORE_IDENT_RE,starts:a}],relevance:0}], + illegal:"[^\\s\\}]"}}})()); + hljs.registerLanguage("objectivec",(()=>{"use strict";return e=>{ + const n=/[a-zA-Z@][a-zA-Z0-9_]*/,_={$pattern:n, + keyword:"@interface @class @protocol @implementation"};return{ + name:"Objective-C",aliases:["mm","objc","obj-c","obj-c++","objective-c++"], + keywords:{$pattern:n, + keyword:"int float while char export sizeof typedef const struct for union unsigned long volatile static bool mutable if do return goto void enum else break extern asm case short default double register explicit signed typename this switch continue wchar_t inline readonly assign readwrite self @synchronized id typeof nonatomic super unichar IBOutlet IBAction strong weak copy in out inout bycopy byref oneway __strong __weak __block __autoreleasing @private @protected @public @try @property @end @throw @catch @finally @autoreleasepool @synthesize @dynamic @selector @optional @required @encode @package @import @defs @compatibility_alias __bridge __bridge_transfer __bridge_retained __bridge_retain __covariant __contravariant __kindof _Nonnull _Nullable _Null_unspecified __FUNCTION__ __PRETTY_FUNCTION__ __attribute__ getter setter retain unsafe_unretained nonnull nullable null_unspecified null_resettable class instancetype NS_DESIGNATED_INITIALIZER NS_UNAVAILABLE NS_REQUIRES_SUPER NS_RETURNS_INNER_POINTER NS_INLINE NS_AVAILABLE NS_DEPRECATED NS_ENUM NS_OPTIONS NS_SWIFT_UNAVAILABLE NS_ASSUME_NONNULL_BEGIN NS_ASSUME_NONNULL_END NS_REFINED_FOR_SWIFT NS_SWIFT_NAME NS_SWIFT_NOTHROW NS_DURING NS_HANDLER NS_ENDHANDLER NS_VALUERETURN NS_VOIDRETURN", + literal:"false true FALSE TRUE nil YES NO NULL", + built_in:"BOOL dispatch_once_t dispatch_queue_t dispatch_sync dispatch_async dispatch_once" + },illegal:"/,end:/$/, + illegal:"\\n"},e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE]},{ + className:"class",begin:"("+_.keyword.split(" ").join("|")+")\\b",end:/(\{|$)/, + excludeEnd:!0,keywords:_,contains:[e.UNDERSCORE_TITLE_MODE]},{ + begin:"\\."+e.UNDERSCORE_IDENT_RE,relevance:0}]}}})()); + hljs.registerLanguage("perl",(()=>{"use strict";function e(e){ + return e?"string"==typeof e?e:e.source:null}function n(...n){ + return n.map((n=>e(n))).join("")}function t(...n){ + return"("+n.map((n=>e(n))).join("|")+")"}return e=>{ + const r=/[dualxmsipngr]{0,12}/,s={$pattern:/[\w.]+/, + keyword:"abs accept alarm and atan2 bind binmode bless break caller chdir chmod chomp chop chown chr chroot close closedir connect continue cos crypt dbmclose dbmopen defined delete die do dump each else elsif endgrent endhostent endnetent endprotoent endpwent endservent eof eval exec exists exit exp fcntl fileno flock for foreach fork format formline getc getgrent getgrgid getgrnam gethostbyaddr gethostbyname gethostent getlogin getnetbyaddr getnetbyname getnetent getpeername getpgrp getpriority getprotobyname getprotobynumber getprotoent getpwent getpwnam getpwuid getservbyname getservbyport getservent getsockname getsockopt given glob gmtime goto grep gt hex if index int ioctl join keys kill last lc lcfirst length link listen local localtime log lstat lt ma map mkdir msgctl msgget msgrcv msgsnd my ne next no not oct open opendir or ord our pack package pipe pop pos print printf prototype push q|0 qq quotemeta qw qx rand read readdir readline readlink readpipe recv redo ref rename require reset return reverse rewinddir rindex rmdir say scalar seek seekdir select semctl semget semop send setgrent sethostent setnetent setpgrp setpriority setprotoent setpwent setservent setsockopt shift shmctl shmget shmread shmwrite shutdown sin sleep socket socketpair sort splice split sprintf sqrt srand stat state study sub substr symlink syscall sysopen sysread sysseek system syswrite tell telldir tie tied time times tr truncate uc ucfirst umask undef unless unlink unpack unshift untie until use utime values vec wait waitpid wantarray warn when while write x|0 xor y|0" + },i={className:"subst",begin:"[$@]\\{",end:"\\}",keywords:s},a={begin:/->\{/, + end:/\}/},o={variants:[{begin:/\$\d/},{ + begin:n(/[$%@](\^\w\b|#\w+(::\w+)*|\{\w+\}|\w+(::\w*)*)/,"(?![A-Za-z])(?![@$%])") + },{begin:/[$%@][^\s\w{]/,relevance:0}] + },c=[e.BACKSLASH_ESCAPE,i,o],g=[/!/,/\//,/\|/,/\?/,/'/,/"/,/#/],l=(e,t,s="\\1")=>{ + const i="\\1"===s?s:n(s,t) + ;return n(n("(?:",e,")"),t,/(?:\\.|[^\\\/])*?/,i,/(?:\\.|[^\\\/])*?/,s,r) + },d=(e,t,s)=>n(n("(?:",e,")"),t,/(?:\\.|[^\\\/])*?/,s,r),p=[o,e.HASH_COMMENT_MODE,e.COMMENT(/^=\w/,/=cut/,{ + endsWithParent:!0}),a,{className:"string",contains:c,variants:[{ + begin:"q[qwxr]?\\s*\\(",end:"\\)",relevance:5},{begin:"q[qwxr]?\\s*\\[", + end:"\\]",relevance:5},{begin:"q[qwxr]?\\s*\\{",end:"\\}",relevance:5},{ + begin:"q[qwxr]?\\s*\\|",end:"\\|",relevance:5},{begin:"q[qwxr]?\\s*<",end:">", + relevance:5},{begin:"qw\\s+q",end:"q",relevance:5},{begin:"'",end:"'", + contains:[e.BACKSLASH_ESCAPE]},{begin:'"',end:'"'},{begin:"`",end:"`", + contains:[e.BACKSLASH_ESCAPE]},{begin:/\{\w+\}/,relevance:0},{ + begin:"-?\\w+\\s*=>",relevance:0}]},{className:"number", + begin:"(\\b0[0-7_]+)|(\\b0x[0-9a-fA-F_]+)|(\\b[1-9][0-9_]*(\\.[0-9_]+)?)|[0_]\\b", + relevance:0},{ + begin:"(\\/\\/|"+e.RE_STARTERS_RE+"|\\b(split|return|print|reverse|grep)\\b)\\s*", + keywords:"split return print reverse grep",relevance:0, + contains:[e.HASH_COMMENT_MODE,{className:"regexp",variants:[{ + begin:l("s|tr|y",t(...g))},{begin:l("s|tr|y","\\(","\\)")},{ + begin:l("s|tr|y","\\[","\\]")},{begin:l("s|tr|y","\\{","\\}")}],relevance:2},{ + className:"regexp",variants:[{begin:/(m|qr)\/\//,relevance:0},{ + begin:d("(?:m|qr)?",/\//,/\//)},{begin:d("m|qr",t(...g),/\1/)},{ + begin:d("m|qr",/\(/,/\)/)},{begin:d("m|qr",/\[/,/\]/)},{ + begin:d("m|qr",/\{/,/\}/)}]}]},{className:"function",beginKeywords:"sub", + end:"(\\s*\\(.*?\\))?[;{]",excludeEnd:!0,relevance:5,contains:[e.TITLE_MODE]},{ + begin:"-\\w\\b",relevance:0},{begin:"^__DATA__$",end:"^__END__$", + subLanguage:"mojolicious",contains:[{begin:"^@@.*",end:"$",className:"comment"}] + }];return i.contains=p,a.contains=p,{name:"Perl",aliases:["pl","pm"],keywords:s, + contains:p}}})()); + hljs.registerLanguage("php",(()=>{"use strict";return e=>{const r={ + className:"variable", + begin:"\\$+[a-zA-Z_\x7f-\xff][a-zA-Z0-9_\x7f-\xff]*(?![A-Za-z0-9])(?![$])"},t={ + className:"meta",variants:[{begin:/<\?php/,relevance:10},{begin:/<\?[=]?/},{ + begin:/\?>/}]},a={className:"subst",variants:[{begin:/\$\w+/},{begin:/\{\$/, + end:/\}/}]},n=e.inherit(e.APOS_STRING_MODE,{illegal:null + }),i=e.inherit(e.QUOTE_STRING_MODE,{illegal:null, + contains:e.QUOTE_STRING_MODE.contains.concat(a)}),o=e.END_SAME_AS_BEGIN({ + begin:/<<<[ \t]*(\w+)\n/,end:/[ \t]*(\w+)\b/, + contains:e.QUOTE_STRING_MODE.contains.concat(a)}),l={className:"string", + contains:[e.BACKSLASH_ESCAPE,t],variants:[e.inherit(n,{begin:"b'",end:"'" + }),e.inherit(i,{begin:'b"',end:'"'}),i,n,o]},s={className:"number",variants:[{ + begin:"\\b0b[01]+(?:_[01]+)*\\b"},{begin:"\\b0o[0-7]+(?:_[0-7]+)*\\b"},{ + begin:"\\b0x[\\da-f]+(?:_[\\da-f]+)*\\b"},{ + begin:"(?:\\b\\d+(?:_\\d+)*(\\.(?:\\d+(?:_\\d+)*))?|\\B\\.\\d+)(?:e[+-]?\\d+)?" + }],relevance:0},c={ + keyword:"__CLASS__ __DIR__ __FILE__ __FUNCTION__ __LINE__ __METHOD__ __NAMESPACE__ __TRAIT__ die echo exit include include_once print require require_once array abstract and as binary bool boolean break callable case catch class clone const continue declare default do double else elseif empty enddeclare endfor endforeach endif endswitch endwhile enum eval extends final finally float for foreach from global goto if implements instanceof insteadof int integer interface isset iterable list match|0 mixed new object or private protected public real return string switch throw trait try unset use var void while xor yield", + literal:"false null true", + built_in:"Error|0 AppendIterator ArgumentCountError ArithmeticError ArrayIterator ArrayObject AssertionError BadFunctionCallException BadMethodCallException CachingIterator CallbackFilterIterator CompileError Countable DirectoryIterator DivisionByZeroError DomainException EmptyIterator ErrorException Exception FilesystemIterator FilterIterator GlobIterator InfiniteIterator InvalidArgumentException IteratorIterator LengthException LimitIterator LogicException MultipleIterator NoRewindIterator OutOfBoundsException OutOfRangeException OuterIterator OverflowException ParentIterator ParseError RangeException RecursiveArrayIterator RecursiveCachingIterator RecursiveCallbackFilterIterator RecursiveDirectoryIterator RecursiveFilterIterator RecursiveIterator RecursiveIteratorIterator RecursiveRegexIterator RecursiveTreeIterator RegexIterator RuntimeException SeekableIterator SplDoublyLinkedList SplFileInfo SplFileObject SplFixedArray SplHeap SplMaxHeap SplMinHeap SplObjectStorage SplObserver SplObserver SplPriorityQueue SplQueue SplStack SplSubject SplSubject SplTempFileObject TypeError UnderflowException UnexpectedValueException UnhandledMatchError ArrayAccess Closure Generator Iterator IteratorAggregate Serializable Stringable Throwable Traversable WeakReference WeakMap Directory __PHP_Incomplete_Class parent php_user_filter self static stdClass" + };return{aliases:["php3","php4","php5","php6","php7","php8"], + case_insensitive:!0,keywords:c, + contains:[e.HASH_COMMENT_MODE,e.COMMENT("//","$",{contains:[t] + }),e.COMMENT("/\\*","\\*/",{contains:[{className:"doctag",begin:"@[A-Za-z]+"}] + }),e.COMMENT("__halt_compiler.+?;",!1,{endsWithParent:!0, + keywords:"__halt_compiler"}),t,{className:"keyword",begin:/\$this\b/},r,{ + begin:/(::|->)+[a-zA-Z_\x7f-\xff][a-zA-Z0-9_\x7f-\xff]*/},{className:"function", + relevance:0,beginKeywords:"fn function",end:/[;{]/,excludeEnd:!0, + illegal:"[$%\\[]",contains:[{beginKeywords:"use"},e.UNDERSCORE_TITLE_MODE,{ + begin:"=>",endsParent:!0},{className:"params",begin:"\\(",end:"\\)", + excludeBegin:!0,excludeEnd:!0,keywords:c, + contains:["self",r,e.C_BLOCK_COMMENT_MODE,l,s]}]},{className:"class",variants:[{ + beginKeywords:"enum",illegal:/[($"]/},{beginKeywords:"class interface trait", + illegal:/[:($"]/}],relevance:0,end:/\{/,excludeEnd:!0,contains:[{ + beginKeywords:"extends implements"},e.UNDERSCORE_TITLE_MODE]},{ + beginKeywords:"namespace",relevance:0,end:";",illegal:/[.']/, + contains:[e.UNDERSCORE_TITLE_MODE]},{beginKeywords:"use",relevance:0,end:";", + contains:[e.UNDERSCORE_TITLE_MODE]},l,s]}}})()); + hljs.registerLanguage("php-template",(()=>{"use strict";return n=>({ + name:"PHP template",subLanguage:"xml",contains:[{begin:/<\?(php|=)?/,end:/\?>/, + subLanguage:"php",contains:[{begin:"/\\*",end:"\\*/",skip:!0},{begin:'b"', + end:'"',skip:!0},{begin:"b'",end:"'",skip:!0},n.inherit(n.APOS_STRING_MODE,{ + illegal:null,className:null,contains:null,skip:!0 + }),n.inherit(n.QUOTE_STRING_MODE,{illegal:null,className:null,contains:null, + skip:!0})]}]})})()); + hljs.registerLanguage("plaintext",(()=>{"use strict";return t=>({ + name:"Plain text",aliases:["text","txt"],disableAutodetect:!0})})()); + hljs.registerLanguage("properties",(()=>{"use strict";return e=>{ + var n="[ \\t\\f]*",a=n+"[:=]"+n,t="("+a+"|[ \\t\\f]+)",r="([^\\\\\\W:= \\t\\f\\n]|\\\\.)+",s="([^\\\\:= \\t\\f\\n]|\\\\.)+",i={ + end:t,relevance:0,starts:{className:"string",end:/$/,relevance:0,contains:[{ + begin:"\\\\\\\\"},{begin:"\\\\\\n"}]}};return{name:".properties", + case_insensitive:!0,illegal:/\S/,contains:[e.COMMENT("^\\s*[!#]","$"),{ + returnBegin:!0,variants:[{begin:r+a,relevance:1},{begin:r+"[ \\t\\f]+", + relevance:0}],contains:[{className:"attr",begin:r,endsParent:!0,relevance:0}], + starts:i},{begin:s+t,returnBegin:!0,relevance:0,contains:[{className:"meta", + begin:s,endsParent:!0,relevance:0}],starts:i},{className:"attr",relevance:0, + begin:s+n+"$"}]}}})()); + hljs.registerLanguage("python",(()=>{"use strict";return e=>{const n={ + $pattern:/[A-Za-z]\w+|__\w+__/, + keyword:["and","as","assert","async","await","break","class","continue","def","del","elif","else","except","finally","for","from","global","if","import","in","is","lambda","nonlocal|10","not","or","pass","raise","return","try","while","with","yield"], + built_in:["__import__","abs","all","any","ascii","bin","bool","breakpoint","bytearray","bytes","callable","chr","classmethod","compile","complex","delattr","dict","dir","divmod","enumerate","eval","exec","filter","float","format","frozenset","getattr","globals","hasattr","hash","help","hex","id","input","int","isinstance","issubclass","iter","len","list","locals","map","max","memoryview","min","next","object","oct","open","ord","pow","print","property","range","repr","reversed","round","set","setattr","slice","sorted","staticmethod","str","sum","super","tuple","type","vars","zip"], + literal:["__debug__","Ellipsis","False","None","NotImplemented","True"], + type:["Any","Callable","Coroutine","Dict","List","Literal","Generic","Optional","Sequence","Set","Tuple","Type","Union"] + },a={className:"meta",begin:/^(>>>|\.\.\.) /},i={className:"subst",begin:/\{/, + end:/\}/,keywords:n,illegal:/#/},s={begin:/\{\{/,relevance:0},t={ + className:"string",contains:[e.BACKSLASH_ESCAPE],variants:[{ + begin:/([uU]|[bB]|[rR]|[bB][rR]|[rR][bB])?'''/,end:/'''/, + contains:[e.BACKSLASH_ESCAPE,a],relevance:10},{ + begin:/([uU]|[bB]|[rR]|[bB][rR]|[rR][bB])?"""/,end:/"""/, + contains:[e.BACKSLASH_ESCAPE,a],relevance:10},{ + begin:/([fF][rR]|[rR][fF]|[fF])'''/,end:/'''/, + contains:[e.BACKSLASH_ESCAPE,a,s,i]},{begin:/([fF][rR]|[rR][fF]|[fF])"""/, + end:/"""/,contains:[e.BACKSLASH_ESCAPE,a,s,i]},{begin:/([uU]|[rR])'/,end:/'/, + relevance:10},{begin:/([uU]|[rR])"/,end:/"/,relevance:10},{ + begin:/([bB]|[bB][rR]|[rR][bB])'/,end:/'/},{begin:/([bB]|[bB][rR]|[rR][bB])"/, + end:/"/},{begin:/([fF][rR]|[rR][fF]|[fF])'/,end:/'/, + contains:[e.BACKSLASH_ESCAPE,s,i]},{begin:/([fF][rR]|[rR][fF]|[fF])"/,end:/"/, + contains:[e.BACKSLASH_ESCAPE,s,i]},e.APOS_STRING_MODE,e.QUOTE_STRING_MODE] + },r="[0-9](_?[0-9])*",l=`(\\b(${r}))?\\.(${r})|\\b(${r})\\.`,b={ + className:"number",relevance:0,variants:[{ + begin:`(\\b(${r})|(${l}))[eE][+-]?(${r})[jJ]?\\b`},{begin:`(${l})[jJ]?`},{ + begin:"\\b([1-9](_?[0-9])*|0+(_?0)*)[lLjJ]?\\b"},{ + begin:"\\b0[bB](_?[01])+[lL]?\\b"},{begin:"\\b0[oO](_?[0-7])+[lL]?\\b"},{ + begin:"\\b0[xX](_?[0-9a-fA-F])+[lL]?\\b"},{begin:`\\b(${r})[jJ]\\b`}]},o={ + className:"comment", + begin:(d=/# type:/,((...e)=>e.map((e=>(e=>e?"string"==typeof e?e:e.source:null)(e))).join(""))("(?=",d,")")), + end:/$/,keywords:n,contains:[{begin:/# type:/},{begin:/#/,end:/\b\B/, + endsWithParent:!0}]},c={className:"params",variants:[{className:"", + begin:/\(\s*\)/,skip:!0},{begin:/\(/,end:/\)/,excludeBegin:!0,excludeEnd:!0, + keywords:n,contains:["self",a,b,t,e.HASH_COMMENT_MODE]}]};var d + ;return i.contains=[t,b,a],{name:"Python",aliases:["py","gyp","ipython"], + keywords:n,illegal:/(<\/|->|\?)|=>/,contains:[a,b,{begin:/\bself\b/},{ + beginKeywords:"if",relevance:0},t,o,e.HASH_COMMENT_MODE,{variants:[{ + className:"function",beginKeywords:"def"},{className:"class", + beginKeywords:"class"}],end:/:/,illegal:/[${=;\n,]/, + contains:[e.UNDERSCORE_TITLE_MODE,c,{begin:/->/,endsWithParent:!0,keywords:n}] + },{className:"meta",begin:/^[\t ]*@/,end:/(?=#)|$/,contains:[b,c,t]}]}}})()); + hljs.registerLanguage("python-repl",(()=>{"use strict";return s=>({ + aliases:["pycon"],contains:[{className:"meta",starts:{end:/ |$/,starts:{end:"$", + subLanguage:"python"}},variants:[{begin:/^>>>(?=[ ]|$)/},{ + begin:/^\.\.\.(?=[ ]|$)/}]}]})})()); + hljs.registerLanguage("r",(()=>{"use strict";function e(...e){return e.map((e=>{ + return(a=e)?"string"==typeof a?a:a.source:null;var a})).join("")}return a=>{ + const n=/(?:(?:[a-zA-Z]|\.[._a-zA-Z])[._a-zA-Z0-9]*)|\.(?!\d)/;return{name:"R", + illegal:/->/,keywords:{$pattern:n, + keyword:"function if in break next repeat else for while", + literal:"NULL NA TRUE FALSE Inf NaN NA_integer_|10 NA_real_|10 NA_character_|10 NA_complex_|10", + built_in:"LETTERS letters month.abb month.name pi T F abs acos acosh all any anyNA Arg as.call as.character as.complex as.double as.environment as.integer as.logical as.null.default as.numeric as.raw asin asinh atan atanh attr attributes baseenv browser c call ceiling class Conj cos cosh cospi cummax cummin cumprod cumsum digamma dim dimnames emptyenv exp expression floor forceAndCall gamma gc.time globalenv Im interactive invisible is.array is.atomic is.call is.character is.complex is.double is.environment is.expression is.finite is.function is.infinite is.integer is.language is.list is.logical is.matrix is.na is.name is.nan is.null is.numeric is.object is.pairlist is.raw is.recursive is.single is.symbol lazyLoadDBfetch length lgamma list log max min missing Mod names nargs nzchar oldClass on.exit pos.to.env proc.time prod quote range Re rep retracemem return round seq_along seq_len seq.int sign signif sin sinh sinpi sqrt standardGeneric substitute sum switch tan tanh tanpi tracemem trigamma trunc unclass untracemem UseMethod xtfrm" + },compilerExtensions:[(a,n)=>{if(!a.beforeMatch)return + ;if(a.starts)throw Error("beforeMatch cannot be used with starts") + ;const i=Object.assign({},a);Object.keys(a).forEach((e=>{delete a[e] + })),a.begin=e(i.beforeMatch,e("(?=",i.begin,")")),a.starts={relevance:0, + contains:[Object.assign(i,{endsParent:!0})]},a.relevance=0,delete i.beforeMatch + }],contains:[a.COMMENT(/#'/,/$/,{contains:[{className:"doctag", + begin:"@examples",starts:{contains:[{begin:/\n/},{begin:/#'\s*(?=@[a-zA-Z]+)/, + endsParent:!0},{begin:/#'/,end:/$/,excludeBegin:!0}]}},{className:"doctag", + begin:"@param",end:/$/,contains:[{className:"variable",variants:[{begin:n},{ + begin:/`(?:\\.|[^`\\])+`/}],endsParent:!0}]},{className:"doctag", + begin:/@[a-zA-Z]+/},{className:"meta-keyword",begin:/\\[a-zA-Z]+/}] + }),a.HASH_COMMENT_MODE,{className:"string",contains:[a.BACKSLASH_ESCAPE], + variants:[a.END_SAME_AS_BEGIN({begin:/[rR]"(-*)\(/,end:/\)(-*)"/ + }),a.END_SAME_AS_BEGIN({begin:/[rR]"(-*)\{/,end:/\}(-*)"/ + }),a.END_SAME_AS_BEGIN({begin:/[rR]"(-*)\[/,end:/\](-*)"/ + }),a.END_SAME_AS_BEGIN({begin:/[rR]'(-*)\(/,end:/\)(-*)'/ + }),a.END_SAME_AS_BEGIN({begin:/[rR]'(-*)\{/,end:/\}(-*)'/ + }),a.END_SAME_AS_BEGIN({begin:/[rR]'(-*)\[/,end:/\](-*)'/}),{begin:'"',end:'"', + relevance:0},{begin:"'",end:"'",relevance:0}]},{className:"number",relevance:0, + beforeMatch:/([^a-zA-Z0-9._])/,variants:[{ + match:/0[xX][0-9a-fA-F]+\.[0-9a-fA-F]*[pP][+-]?\d+i?/},{ + match:/0[xX][0-9a-fA-F]+([pP][+-]?\d+)?[Li]?/},{ + match:/(\d+(\.\d*)?|\.\d+)([eE][+-]?\d+)?[Li]?/}]},{begin:"%",end:"%"},{ + begin:e(/[a-zA-Z][a-zA-Z_0-9]*/,"\\s+<-\\s+")},{begin:"`",end:"`",contains:[{ + begin:/\\./}]}]}}})()); + hljs.registerLanguage("ruby",(()=>{"use strict";function e(...e){ + return e.map((e=>{return(n=e)?"string"==typeof n?n:n.source:null;var n + })).join("")}return n=>{ + const a="([a-zA-Z_]\\w*[!?=]?|[-+~]@|<<|>>|=~|===?|<=>|[<>]=?|\\*\\*|[-/+%^&*~`|]|\\[\\]=?)",i={ + keyword:"and then defined module in return redo if BEGIN retry end for self when next until do begin unless END rescue else break undef not super class case require yield alias while ensure elsif or include attr_reader attr_writer attr_accessor __FILE__", + built_in:"proc lambda",literal:"true false nil"},s={className:"doctag", + begin:"@[A-Za-z]+"},r={begin:"#<",end:">"},b=[n.COMMENT("#","$",{contains:[s] + }),n.COMMENT("^=begin","^=end",{contains:[s],relevance:10 + }),n.COMMENT("^__END__","\\n$")],c={className:"subst",begin:/#\{/,end:/\}/, + keywords:i},t={className:"string",contains:[n.BACKSLASH_ESCAPE,c],variants:[{ + begin:/'/,end:/'/},{begin:/"/,end:/"/},{begin:/`/,end:/`/},{begin:/%[qQwWx]?\(/, + end:/\)/},{begin:/%[qQwWx]?\[/,end:/\]/},{begin:/%[qQwWx]?\{/,end:/\}/},{ + begin:/%[qQwWx]?/},{begin:/%[qQwWx]?\//,end:/\//},{begin:/%[qQwWx]?%/, + end:/%/},{begin:/%[qQwWx]?-/,end:/-/},{begin:/%[qQwWx]?\|/,end:/\|/},{ + begin:/\B\?(\\\d{1,3})/},{begin:/\B\?(\\x[A-Fa-f0-9]{1,2})/},{ + begin:/\B\?(\\u\{?[A-Fa-f0-9]{1,6}\}?)/},{ + begin:/\B\?(\\M-\\C-|\\M-\\c|\\c\\M-|\\M-|\\C-\\M-)[\x20-\x7e]/},{ + begin:/\B\?\\(c|C-)[\x20-\x7e]/},{begin:/\B\?\\?\S/},{ + begin:/<<[-~]?'?(\w+)\n(?:[^\n]*\n)*?\s*\1\b/,returnBegin:!0,contains:[{ + begin:/<<[-~]?'?/},n.END_SAME_AS_BEGIN({begin:/(\w+)/,end:/(\w+)/, + contains:[n.BACKSLASH_ESCAPE,c]})]}]},g="[0-9](_?[0-9])*",d={className:"number", + relevance:0,variants:[{ + begin:`\\b([1-9](_?[0-9])*|0)(\\.(${g}))?([eE][+-]?(${g})|r)?i?\\b`},{ + begin:"\\b0[dD][0-9](_?[0-9])*r?i?\\b"},{begin:"\\b0[bB][0-1](_?[0-1])*r?i?\\b" + },{begin:"\\b0[oO][0-7](_?[0-7])*r?i?\\b"},{ + begin:"\\b0[xX][0-9a-fA-F](_?[0-9a-fA-F])*r?i?\\b"},{ + begin:"\\b0(_?[0-7])+r?i?\\b"}]},l={className:"params",begin:"\\(",end:"\\)", + endsParent:!0,keywords:i},o=[t,{className:"class",beginKeywords:"class module", + end:"$|;",illegal:/=/,contains:[n.inherit(n.TITLE_MODE,{ + begin:"[A-Za-z_]\\w*(::\\w+)*(\\?|!)?"}),{begin:"<\\s*",contains:[{ + begin:"("+n.IDENT_RE+"::)?"+n.IDENT_RE,relevance:0}]}].concat(b)},{ + className:"function",begin:e(/def\s+/,(_=a+"\\s*(\\(|;|$)",e("(?=",_,")"))), + relevance:0,keywords:"def",end:"$|;",contains:[n.inherit(n.TITLE_MODE,{begin:a + }),l].concat(b)},{begin:n.IDENT_RE+"::"},{className:"symbol", + begin:n.UNDERSCORE_IDENT_RE+"(!|\\?)?:",relevance:0},{className:"symbol", + begin:":(?!\\s)",contains:[t,{begin:a}],relevance:0},d,{className:"variable", + begin:"(\\$\\W)|((\\$|@@?)(\\w+))(?=[^@$?])(?![A-Za-z])(?![@$?'])"},{ + className:"params",begin:/\|/,end:/\|/,relevance:0,keywords:i},{ + begin:"("+n.RE_STARTERS_RE+"|unless)\\s*",keywords:"unless",contains:[{ + className:"regexp",contains:[n.BACKSLASH_ESCAPE,c],illegal:/\n/,variants:[{ + begin:"/",end:"/[a-z]*"},{begin:/%r\{/,end:/\}[a-z]*/},{begin:"%r\\(", + end:"\\)[a-z]*"},{begin:"%r!",end:"![a-z]*"},{begin:"%r\\[",end:"\\][a-z]*"}] + }].concat(r,b),relevance:0}].concat(r,b);var _;c.contains=o,l.contains=o + ;const E=[{begin:/^\s*=>/,starts:{end:"$",contains:o}},{className:"meta", + begin:"^([>?]>|[\\w#]+\\(\\w+\\):\\d+:\\d+>|(\\w+-)?\\d+\\.\\d+\\.\\d+(p\\d+)?[^\\d][^>]+>)(?=[ ])", + starts:{end:"$",contains:o}}];return b.unshift(r),{name:"Ruby", + aliases:["rb","gemspec","podspec","thor","irb"],keywords:i,illegal:/\/\*/, + contains:[n.SHEBANG({binary:"ruby"})].concat(E).concat(b).concat(o)}}})()); + hljs.registerLanguage("rust",(()=>{"use strict";return e=>{ + const n="([ui](8|16|32|64|128|size)|f(32|64))?",t="drop i8 i16 i32 i64 i128 isize u8 u16 u32 u64 u128 usize f32 f64 str char bool Box Option Result String Vec Copy Send Sized Sync Drop Fn FnMut FnOnce ToOwned Clone Debug PartialEq PartialOrd Eq Ord AsRef AsMut Into From Default Iterator Extend IntoIterator DoubleEndedIterator ExactSizeIterator SliceConcatExt ToString assert! assert_eq! bitflags! bytes! cfg! col! concat! concat_idents! debug_assert! debug_assert_eq! env! panic! file! format! format_args! include_bin! include_str! line! local_data_key! module_path! option_env! print! println! select! stringify! try! unimplemented! unreachable! vec! write! writeln! macro_rules! assert_ne! debug_assert_ne!" + ;return{name:"Rust",aliases:["rs"],keywords:{$pattern:e.IDENT_RE+"!?", + keyword:"abstract as async await become box break const continue crate do dyn else enum extern false final fn for if impl in let loop macro match mod move mut override priv pub ref return self Self static struct super trait true try type typeof unsafe unsized use virtual where while yield", + literal:"true false Some None Ok Err",built_in:t},illegal:""}]}}})()); + hljs.registerLanguage("scss",(()=>{"use strict" + ;const e=["a","abbr","address","article","aside","audio","b","blockquote","body","button","canvas","caption","cite","code","dd","del","details","dfn","div","dl","dt","em","fieldset","figcaption","figure","footer","form","h1","h2","h3","h4","h5","h6","header","hgroup","html","i","iframe","img","input","ins","kbd","label","legend","li","main","mark","menu","nav","object","ol","p","q","quote","samp","section","span","strong","summary","sup","table","tbody","td","textarea","tfoot","th","thead","time","tr","ul","var","video"],t=["any-hover","any-pointer","aspect-ratio","color","color-gamut","color-index","device-aspect-ratio","device-height","device-width","display-mode","forced-colors","grid","height","hover","inverted-colors","monochrome","orientation","overflow-block","overflow-inline","pointer","prefers-color-scheme","prefers-contrast","prefers-reduced-motion","prefers-reduced-transparency","resolution","scan","scripting","update","width","min-width","max-width","min-height","max-height"],i=["active","any-link","blank","checked","current","default","defined","dir","disabled","drop","empty","enabled","first","first-child","first-of-type","fullscreen","future","focus","focus-visible","focus-within","has","host","host-context","hover","indeterminate","in-range","invalid","is","lang","last-child","last-of-type","left","link","local-link","not","nth-child","nth-col","nth-last-child","nth-last-col","nth-last-of-type","nth-of-type","only-child","only-of-type","optional","out-of-range","past","placeholder-shown","read-only","read-write","required","right","root","scope","target","target-within","user-invalid","valid","visited","where"],o=["after","backdrop","before","cue","cue-region","first-letter","first-line","grammar-error","marker","part","placeholder","selection","slotted","spelling-error"],r=["align-content","align-items","align-self","animation","animation-delay","animation-direction","animation-duration","animation-fill-mode","animation-iteration-count","animation-name","animation-play-state","animation-timing-function","auto","backface-visibility","background","background-attachment","background-clip","background-color","background-image","background-origin","background-position","background-repeat","background-size","border","border-bottom","border-bottom-color","border-bottom-left-radius","border-bottom-right-radius","border-bottom-style","border-bottom-width","border-collapse","border-color","border-image","border-image-outset","border-image-repeat","border-image-slice","border-image-source","border-image-width","border-left","border-left-color","border-left-style","border-left-width","border-radius","border-right","border-right-color","border-right-style","border-right-width","border-spacing","border-style","border-top","border-top-color","border-top-left-radius","border-top-right-radius","border-top-style","border-top-width","border-width","bottom","box-decoration-break","box-shadow","box-sizing","break-after","break-before","break-inside","caption-side","clear","clip","clip-path","color","column-count","column-fill","column-gap","column-rule","column-rule-color","column-rule-style","column-rule-width","column-span","column-width","columns","content","counter-increment","counter-reset","cursor","direction","display","empty-cells","filter","flex","flex-basis","flex-direction","flex-flow","flex-grow","flex-shrink","flex-wrap","float","font","font-display","font-family","font-feature-settings","font-kerning","font-language-override","font-size","font-size-adjust","font-smoothing","font-stretch","font-style","font-variant","font-variant-ligatures","font-variation-settings","font-weight","height","hyphens","icon","image-orientation","image-rendering","image-resolution","ime-mode","inherit","initial","justify-content","left","letter-spacing","line-height","list-style","list-style-image","list-style-position","list-style-type","margin","margin-bottom","margin-left","margin-right","margin-top","marks","mask","max-height","max-width","min-height","min-width","nav-down","nav-index","nav-left","nav-right","nav-up","none","normal","object-fit","object-position","opacity","order","orphans","outline","outline-color","outline-offset","outline-style","outline-width","overflow","overflow-wrap","overflow-x","overflow-y","padding","padding-bottom","padding-left","padding-right","padding-top","page-break-after","page-break-before","page-break-inside","perspective","perspective-origin","pointer-events","position","quotes","resize","right","src","tab-size","table-layout","text-align","text-align-last","text-decoration","text-decoration-color","text-decoration-line","text-decoration-style","text-indent","text-overflow","text-rendering","text-shadow","text-transform","text-underline-position","top","transform","transform-origin","transform-style","transition","transition-delay","transition-duration","transition-property","transition-timing-function","unicode-bidi","vertical-align","visibility","white-space","widows","width","word-break","word-spacing","word-wrap","z-index"].reverse() + ;return a=>{const n=(e=>({IMPORTANT:{className:"meta",begin:"!important"}, + HEXCOLOR:{className:"number",begin:"#([a-fA-F0-9]{6}|[a-fA-F0-9]{3})"}, + ATTRIBUTE_SELECTOR_MODE:{className:"selector-attr",begin:/\[/,end:/\]/, + illegal:"$",contains:[e.APOS_STRING_MODE,e.QUOTE_STRING_MODE]} + }))(a),l=o,s=i,d="@[a-z-]+",c={className:"variable", + begin:"(\\$[a-zA-Z-][a-zA-Z0-9_-]*)\\b"};return{name:"SCSS",case_insensitive:!0, + illegal:"[=/|']",contains:[a.C_LINE_COMMENT_MODE,a.C_BLOCK_COMMENT_MODE,{ + className:"selector-id",begin:"#[A-Za-z0-9_-]+",relevance:0},{ + className:"selector-class",begin:"\\.[A-Za-z0-9_-]+",relevance:0 + },n.ATTRIBUTE_SELECTOR_MODE,{className:"selector-tag", + begin:"\\b("+e.join("|")+")\\b",relevance:0},{className:"selector-pseudo", + begin:":("+s.join("|")+")"},{className:"selector-pseudo", + begin:"::("+l.join("|")+")"},c,{begin:/\(/,end:/\)/,contains:[a.CSS_NUMBER_MODE] + },{className:"attribute",begin:"\\b("+r.join("|")+")\\b"},{ + begin:"\\b(whitespace|wait|w-resize|visible|vertical-text|vertical-ideographic|uppercase|upper-roman|upper-alpha|underline|transparent|top|thin|thick|text|text-top|text-bottom|tb-rl|table-header-group|table-footer-group|sw-resize|super|strict|static|square|solid|small-caps|separate|se-resize|scroll|s-resize|rtl|row-resize|ridge|right|repeat|repeat-y|repeat-x|relative|progress|pointer|overline|outside|outset|oblique|nowrap|not-allowed|normal|none|nw-resize|no-repeat|no-drop|newspaper|ne-resize|n-resize|move|middle|medium|ltr|lr-tb|lowercase|lower-roman|lower-alpha|loose|list-item|line|line-through|line-edge|lighter|left|keep-all|justify|italic|inter-word|inter-ideograph|inside|inset|inline|inline-block|inherit|inactive|ideograph-space|ideograph-parenthesis|ideograph-numeric|ideograph-alpha|horizontal|hidden|help|hand|groove|fixed|ellipsis|e-resize|double|dotted|distribute|distribute-space|distribute-letter|distribute-all-lines|disc|disabled|default|decimal|dashed|crosshair|collapse|col-resize|circle|char|center|capitalize|break-word|break-all|bottom|both|bolder|bold|block|bidi-override|below|baseline|auto|always|all-scroll|absolute|table|table-cell)\\b" + },{begin:":",end:";", + contains:[c,n.HEXCOLOR,a.CSS_NUMBER_MODE,a.QUOTE_STRING_MODE,a.APOS_STRING_MODE,n.IMPORTANT] + },{begin:"@(page|font-face)",lexemes:d,keywords:"@page @font-face"},{begin:"@", + end:"[{;]",returnBegin:!0,keywords:{$pattern:/[a-z-]+/, + keyword:"and or not only",attribute:t.join(" ")},contains:[{begin:d, + className:"keyword"},{begin:/[a-z-]+(?=:)/,className:"attribute" + },c,a.QUOTE_STRING_MODE,a.APOS_STRING_MODE,n.HEXCOLOR,a.CSS_NUMBER_MODE]}]}} + })()); + hljs.registerLanguage("shell",(()=>{"use strict";return s=>({ + name:"Shell Session",aliases:["console"],contains:[{className:"meta", + begin:/^\s{0,3}[/~\w\d[\]()@-]*[>%$#]/,starts:{end:/[^\\](?=\s*$)/, + subLanguage:"bash"}}]})})()); + hljs.registerLanguage("sql",(()=>{"use strict";function e(e){ + return e?"string"==typeof e?e:e.source:null}function r(...r){ + return r.map((r=>e(r))).join("")}function t(...r){ + return"("+r.map((r=>e(r))).join("|")+")"}return e=>{ + const n=e.COMMENT("--","$"),a=["true","false","unknown"],i=["bigint","binary","blob","boolean","char","character","clob","date","dec","decfloat","decimal","float","int","integer","interval","nchar","nclob","national","numeric","real","row","smallint","time","timestamp","varchar","varying","varbinary"],s=["abs","acos","array_agg","asin","atan","avg","cast","ceil","ceiling","coalesce","corr","cos","cosh","count","covar_pop","covar_samp","cume_dist","dense_rank","deref","element","exp","extract","first_value","floor","json_array","json_arrayagg","json_exists","json_object","json_objectagg","json_query","json_table","json_table_primitive","json_value","lag","last_value","lead","listagg","ln","log","log10","lower","max","min","mod","nth_value","ntile","nullif","percent_rank","percentile_cont","percentile_disc","position","position_regex","power","rank","regr_avgx","regr_avgy","regr_count","regr_intercept","regr_r2","regr_slope","regr_sxx","regr_sxy","regr_syy","row_number","sin","sinh","sqrt","stddev_pop","stddev_samp","substring","substring_regex","sum","tan","tanh","translate","translate_regex","treat","trim","trim_array","unnest","upper","value_of","var_pop","var_samp","width_bucket"],o=["create table","insert into","primary key","foreign key","not null","alter table","add constraint","grouping sets","on overflow","character set","respect nulls","ignore nulls","nulls first","nulls last","depth first","breadth first"],c=s,l=["abs","acos","all","allocate","alter","and","any","are","array","array_agg","array_max_cardinality","as","asensitive","asin","asymmetric","at","atan","atomic","authorization","avg","begin","begin_frame","begin_partition","between","bigint","binary","blob","boolean","both","by","call","called","cardinality","cascaded","case","cast","ceil","ceiling","char","char_length","character","character_length","check","classifier","clob","close","coalesce","collate","collect","column","commit","condition","connect","constraint","contains","convert","copy","corr","corresponding","cos","cosh","count","covar_pop","covar_samp","create","cross","cube","cume_dist","current","current_catalog","current_date","current_default_transform_group","current_path","current_role","current_row","current_schema","current_time","current_timestamp","current_path","current_role","current_transform_group_for_type","current_user","cursor","cycle","date","day","deallocate","dec","decimal","decfloat","declare","default","define","delete","dense_rank","deref","describe","deterministic","disconnect","distinct","double","drop","dynamic","each","element","else","empty","end","end_frame","end_partition","end-exec","equals","escape","every","except","exec","execute","exists","exp","external","extract","false","fetch","filter","first_value","float","floor","for","foreign","frame_row","free","from","full","function","fusion","get","global","grant","group","grouping","groups","having","hold","hour","identity","in","indicator","initial","inner","inout","insensitive","insert","int","integer","intersect","intersection","interval","into","is","join","json_array","json_arrayagg","json_exists","json_object","json_objectagg","json_query","json_table","json_table_primitive","json_value","lag","language","large","last_value","lateral","lead","leading","left","like","like_regex","listagg","ln","local","localtime","localtimestamp","log","log10","lower","match","match_number","match_recognize","matches","max","member","merge","method","min","minute","mod","modifies","module","month","multiset","national","natural","nchar","nclob","new","no","none","normalize","not","nth_value","ntile","null","nullif","numeric","octet_length","occurrences_regex","of","offset","old","omit","on","one","only","open","or","order","out","outer","over","overlaps","overlay","parameter","partition","pattern","per","percent","percent_rank","percentile_cont","percentile_disc","period","portion","position","position_regex","power","precedes","precision","prepare","primary","procedure","ptf","range","rank","reads","real","recursive","ref","references","referencing","regr_avgx","regr_avgy","regr_count","regr_intercept","regr_r2","regr_slope","regr_sxx","regr_sxy","regr_syy","release","result","return","returns","revoke","right","rollback","rollup","row","row_number","rows","running","savepoint","scope","scroll","search","second","seek","select","sensitive","session_user","set","show","similar","sin","sinh","skip","smallint","some","specific","specifictype","sql","sqlexception","sqlstate","sqlwarning","sqrt","start","static","stddev_pop","stddev_samp","submultiset","subset","substring","substring_regex","succeeds","sum","symmetric","system","system_time","system_user","table","tablesample","tan","tanh","then","time","timestamp","timezone_hour","timezone_minute","to","trailing","translate","translate_regex","translation","treat","trigger","trim","trim_array","true","truncate","uescape","union","unique","unknown","unnest","update ","upper","user","using","value","values","value_of","var_pop","var_samp","varbinary","varchar","varying","versioning","when","whenever","where","width_bucket","window","with","within","without","year","add","asc","collation","desc","final","first","last","view"].filter((e=>!s.includes(e))),u={ + begin:r(/\b/,t(...c),/\s*\(/),keywords:{built_in:c}};return{name:"SQL", + case_insensitive:!0,illegal:/[{}]|<\//,keywords:{$pattern:/\b[\w\.]+/, + keyword:((e,{exceptions:r,when:t}={})=>{const n=t + ;return r=r||[],e.map((e=>e.match(/\|\d+$/)||r.includes(e)?e:n(e)?e+"|0":e)) + })(l,{when:e=>e.length<3}),literal:a,type:i, + built_in:["current_catalog","current_date","current_default_transform_group","current_path","current_role","current_schema","current_transform_group_for_type","current_user","session_user","system_time","system_user","current_time","localtime","current_timestamp","localtimestamp"] + },contains:[{begin:t(...o),keywords:{$pattern:/[\w\.]+/,keyword:l.concat(o), + literal:a,type:i}},{className:"type", + begin:t("double precision","large object","with timezone","without timezone") + },u,{className:"variable",begin:/@[a-z0-9]+/},{className:"string",variants:[{ + begin:/'/,end:/'/,contains:[{begin:/''/}]}]},{begin:/"/,end:/"/,contains:[{ + begin:/""/}]},e.C_NUMBER_MODE,e.C_BLOCK_COMMENT_MODE,n,{className:"operator", + begin:/[-+*/=%^~]|&&?|\|\|?|!=?|<(?:=>?|<|>)?|>[>=]?/,relevance:0}]}}})()); + hljs.registerLanguage("swift",(()=>{"use strict";function e(e){ + return e?"string"==typeof e?e:e.source:null}function n(e){return a("(?=",e,")")} + function a(...n){return n.map((n=>e(n))).join("")}function t(...n){ + return"("+n.map((n=>e(n))).join("|")+")"} + const i=e=>a(/\b/,e,/\w$/.test(e)?/\b/:/\B/),s=["Protocol","Type"].map(i),u=["init","self"].map(i),c=["Any","Self"],r=["associatedtype","async","await",/as\?/,/as!/,"as","break","case","catch","class","continue","convenience","default","defer","deinit","didSet","do","dynamic","else","enum","extension","fallthrough",/fileprivate\(set\)/,"fileprivate","final","for","func","get","guard","if","import","indirect","infix",/init\?/,/init!/,"inout",/internal\(set\)/,"internal","in","is","lazy","let","mutating","nonmutating",/open\(set\)/,"open","operator","optional","override","postfix","precedencegroup","prefix",/private\(set\)/,"private","protocol",/public\(set\)/,"public","repeat","required","rethrows","return","set","some","static","struct","subscript","super","switch","throws","throw",/try\?/,/try!/,"try","typealias",/unowned\(safe\)/,/unowned\(unsafe\)/,"unowned","var","weak","where","while","willSet"],o=["false","nil","true"],l=["assignment","associativity","higherThan","left","lowerThan","none","right"],m=["#colorLiteral","#column","#dsohandle","#else","#elseif","#endif","#error","#file","#fileID","#fileLiteral","#filePath","#function","#if","#imageLiteral","#keyPath","#line","#selector","#sourceLocation","#warn_unqualified_access","#warning"],d=["abs","all","any","assert","assertionFailure","debugPrint","dump","fatalError","getVaList","isKnownUniquelyReferenced","max","min","numericCast","pointwiseMax","pointwiseMin","precondition","preconditionFailure","print","readLine","repeatElement","sequence","stride","swap","swift_unboxFromSwiftValueWithType","transcode","type","unsafeBitCast","unsafeDowncast","withExtendedLifetime","withUnsafeMutablePointer","withUnsafePointer","withVaList","withoutActuallyEscaping","zip"],p=t(/[/=\-+!*%<>&|^~?]/,/[\u00A1-\u00A7]/,/[\u00A9\u00AB]/,/[\u00AC\u00AE]/,/[\u00B0\u00B1]/,/[\u00B6\u00BB\u00BF\u00D7\u00F7]/,/[\u2016-\u2017]/,/[\u2020-\u2027]/,/[\u2030-\u203E]/,/[\u2041-\u2053]/,/[\u2055-\u205E]/,/[\u2190-\u23FF]/,/[\u2500-\u2775]/,/[\u2794-\u2BFF]/,/[\u2E00-\u2E7F]/,/[\u3001-\u3003]/,/[\u3008-\u3020]/,/[\u3030]/),F=t(p,/[\u0300-\u036F]/,/[\u1DC0-\u1DFF]/,/[\u20D0-\u20FF]/,/[\uFE00-\uFE0F]/,/[\uFE20-\uFE2F]/),b=a(p,F,"*"),h=t(/[a-zA-Z_]/,/[\u00A8\u00AA\u00AD\u00AF\u00B2-\u00B5\u00B7-\u00BA]/,/[\u00BC-\u00BE\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u00FF]/,/[\u0100-\u02FF\u0370-\u167F\u1681-\u180D\u180F-\u1DBF]/,/[\u1E00-\u1FFF]/,/[\u200B-\u200D\u202A-\u202E\u203F-\u2040\u2054\u2060-\u206F]/,/[\u2070-\u20CF\u2100-\u218F\u2460-\u24FF\u2776-\u2793]/,/[\u2C00-\u2DFF\u2E80-\u2FFF]/,/[\u3004-\u3007\u3021-\u302F\u3031-\u303F\u3040-\uD7FF]/,/[\uF900-\uFD3D\uFD40-\uFDCF\uFDF0-\uFE1F\uFE30-\uFE44]/,/[\uFE47-\uFEFE\uFF00-\uFFFD]/),f=t(h,/\d/,/[\u0300-\u036F\u1DC0-\u1DFF\u20D0-\u20FF\uFE20-\uFE2F]/),w=a(h,f,"*"),y=a(/[A-Z]/,f,"*"),g=["autoclosure",a(/convention\(/,t("swift","block","c"),/\)/),"discardableResult","dynamicCallable","dynamicMemberLookup","escaping","frozen","GKInspectable","IBAction","IBDesignable","IBInspectable","IBOutlet","IBSegueAction","inlinable","main","nonobjc","NSApplicationMain","NSCopying","NSManaged",a(/objc\(/,w,/\)/),"objc","objcMembers","propertyWrapper","requires_stored_property_inits","testable","UIApplicationMain","unknown","usableFromInline"],E=["iOS","iOSApplicationExtension","macOS","macOSApplicationExtension","macCatalyst","macCatalystApplicationExtension","watchOS","watchOSApplicationExtension","tvOS","tvOSApplicationExtension","swift"] + ;return e=>{const p={match:/\s+/,relevance:0},h=e.COMMENT("/\\*","\\*/",{ + contains:["self"]}),v=[e.C_LINE_COMMENT_MODE,h],N={className:"keyword", + begin:a(/\./,n(t(...s,...u))),end:t(...s,...u),excludeBegin:!0},A={ + match:a(/\./,t(...r)),relevance:0 + },C=r.filter((e=>"string"==typeof e)).concat(["_|0"]),_={variants:[{ + className:"keyword", + match:t(...r.filter((e=>"string"!=typeof e)).concat(c).map(i),...u)}]},D={ + $pattern:t(/\b\w+/,/#\w+/),keyword:C.concat(m),literal:o},B=[N,A,_],k=[{ + match:a(/\./,t(...d)),relevance:0},{className:"built_in", + match:a(/\b/,t(...d),/(?=\()/)}],M={match:/->/,relevance:0},S=[M,{ + className:"operator",relevance:0,variants:[{match:b},{match:`\\.(\\.|${F})+`}] + }],x="([0-9a-fA-F]_*)+",I={className:"number",relevance:0,variants:[{ + match:"\\b(([0-9]_*)+)(\\.(([0-9]_*)+))?([eE][+-]?(([0-9]_*)+))?\\b"},{ + match:`\\b0x(${x})(\\.(${x}))?([pP][+-]?(([0-9]_*)+))?\\b`},{ + match:/\b0o([0-7]_*)+\b/},{match:/\b0b([01]_*)+\b/}]},O=(e="")=>({ + className:"subst",variants:[{match:a(/\\/,e,/[0\\tnr"']/)},{ + match:a(/\\/,e,/u\{[0-9a-fA-F]{1,8}\}/)}]}),T=(e="")=>({className:"subst", + match:a(/\\/,e,/[\t ]*(?:[\r\n]|\r\n)/)}),L=(e="")=>({className:"subst", + label:"interpol",begin:a(/\\/,e,/\(/),end:/\)/}),P=(e="")=>({begin:a(e,/"""/), + end:a(/"""/,e),contains:[O(e),T(e),L(e)]}),$=(e="")=>({begin:a(e,/"/), + end:a(/"/,e),contains:[O(e),L(e)]}),K={className:"string", + variants:[P(),P("#"),P("##"),P("###"),$(),$("#"),$("##"),$("###")]},j={ + match:a(/`/,w,/`/)},z=[j,{className:"variable",match:/\$\d+/},{ + className:"variable",match:`\\$${f}+`}],q=[{match:/(@|#)available/, + className:"keyword",starts:{contains:[{begin:/\(/,end:/\)/,keywords:E, + contains:[...S,I,K]}]}},{className:"keyword",match:a(/@/,t(...g))},{ + className:"meta",match:a(/@/,w)}],U={match:n(/\b[A-Z]/),relevance:0,contains:[{ + className:"type", + match:a(/(AV|CA|CF|CG|CI|CL|CM|CN|CT|MK|MP|MTK|MTL|NS|SCN|SK|UI|WK|XC)/,f,"+") + },{className:"type",match:y,relevance:0},{match:/[?!]+/,relevance:0},{ + match:/\.\.\./,relevance:0},{match:a(/\s+&\s+/,n(y)),relevance:0}]},Z={ + begin://,keywords:D,contains:[...v,...B,...q,M,U]};U.contains.push(Z) + ;const G={begin:/\(/,end:/\)/,relevance:0,keywords:D,contains:["self",{ + match:a(w,/\s*:/),keywords:"_|0",relevance:0 + },...v,...B,...k,...S,I,K,...z,...q,U]},H={beginKeywords:"func",contains:[{ + className:"title",match:t(j.match,w,b),endsParent:!0,relevance:0},p]},R={ + begin://,contains:[...v,U]},V={begin:/\(/,end:/\)/,keywords:D, + contains:[{begin:t(n(a(w,/\s*:/)),n(a(w,/\s+/,w,/\s*:/))),end:/:/,relevance:0, + contains:[{className:"keyword",match:/\b_\b/},{className:"params",match:w}] + },...v,...B,...S,I,K,...q,U,G],endsParent:!0,illegal:/["']/},W={ + className:"function",match:n(/\bfunc\b/),contains:[H,R,V,p],illegal:[/\[/,/%/] + },X={className:"function",match:/\b(subscript|init[?!]?)\s*(?=[<(])/,keywords:{ + keyword:"subscript init init? init!",$pattern:/\w+[?!]?/},contains:[R,V,p], + illegal:/\[|%/},J={beginKeywords:"operator",end:e.MATCH_NOTHING_RE,contains:[{ + className:"title",match:b,endsParent:!0,relevance:0}]},Q={ + beginKeywords:"precedencegroup",end:e.MATCH_NOTHING_RE,contains:[{ + className:"title",match:y,relevance:0},{begin:/{/,end:/}/,relevance:0, + endsParent:!0,keywords:[...l,...o],contains:[U]}]};for(const e of K.variants){ + const n=e.contains.find((e=>"interpol"===e.label));n.keywords=D + ;const a=[...B,...k,...S,I,K,...z];n.contains=[...a,{begin:/\(/,end:/\)/, + contains:["self",...a]}]}return{name:"Swift",keywords:D,contains:[...v,W,X,{ + className:"class",beginKeywords:"struct protocol class extension enum", + end:"\\{",excludeEnd:!0,keywords:D,contains:[e.inherit(e.TITLE_MODE,{ + begin:/[A-Za-z$_][\u00C0-\u02B80-9A-Za-z$_]*/}),...B]},J,Q,{ + beginKeywords:"import",end:/$/,contains:[...v],relevance:0 + },...B,...k,...S,I,K,...z,...q,U,G]}}})()); + hljs.registerLanguage("typescript",(()=>{"use strict" + ;const e="[A-Za-z$_][0-9A-Za-z$_]*",n=["as","in","of","if","for","while","finally","var","new","function","do","return","void","else","break","catch","instanceof","with","throw","case","default","try","switch","continue","typeof","delete","let","yield","const","class","debugger","async","await","static","import","from","export","extends"],a=["true","false","null","undefined","NaN","Infinity"],s=[].concat(["setInterval","setTimeout","clearInterval","clearTimeout","require","exports","eval","isFinite","isNaN","parseFloat","parseInt","decodeURI","decodeURIComponent","encodeURI","encodeURIComponent","escape","unescape"],["arguments","this","super","console","window","document","localStorage","module","global"],["Intl","DataView","Number","Math","Date","String","RegExp","Object","Function","Boolean","Error","Symbol","Set","Map","WeakSet","WeakMap","Proxy","Reflect","JSON","Promise","Float64Array","Int16Array","Int32Array","Int8Array","Uint16Array","Uint32Array","Float32Array","Array","Uint8Array","Uint8ClampedArray","ArrayBuffer","BigInt64Array","BigUint64Array","BigInt"],["EvalError","InternalError","RangeError","ReferenceError","SyntaxError","TypeError","URIError"]) + ;function t(e){return r("(?=",e,")")}function r(...e){return e.map((e=>{ + return(n=e)?"string"==typeof n?n:n.source:null;var n})).join("")}return i=>{ + const c={$pattern:e, + keyword:n.concat(["type","namespace","typedef","interface","public","private","protected","implements","declare","abstract","readonly"]), + literal:a, + built_in:s.concat(["any","void","number","boolean","string","object","never","enum"]) + },o={className:"meta",begin:"@[A-Za-z$_][0-9A-Za-z$_]*"},l=(e,n,a)=>{ + const s=e.contains.findIndex((e=>e.label===n)) + ;if(-1===s)throw Error("can not find mode to replace");e.contains.splice(s,1,a) + },b=(i=>{const c=e,o={begin:/<[A-Za-z0-9\\._:-]+/, + end:/\/[A-Za-z0-9\\._:-]+>|\/>/,isTrulyOpeningTag:(e,n)=>{ + const a=e[0].length+e.index,s=e.input[a];"<"!==s?">"===s&&(((e,{after:n})=>{ + const a="", + returnBegin:!0,end:"\\s*=>",contains:[{className:"params",variants:[{ + begin:i.UNDERSCORE_IDENT_RE,relevance:0},{className:null,begin:/\(\s*\)/,skip:!0 + },{begin:/\(/,end:/\)/,excludeBegin:!0,excludeEnd:!0,keywords:l,contains:f}]}] + },{begin:/,/,relevance:0},{className:"",begin:/\s/,end:/\s*/,skip:!0},{ + variants:[{begin:"<>",end:""},{begin:o.begin,"on:begin":o.isTrulyOpeningTag, + end:o.end}],subLanguage:"xml",contains:[{begin:o.begin,end:o.end,skip:!0, + contains:["self"]}]}],relevance:0},{className:"function", + beginKeywords:"function",end:/[{;]/,excludeEnd:!0,keywords:l, + contains:["self",i.inherit(i.TITLE_MODE,{begin:c}),A],illegal:/%/},{ + beginKeywords:"while if switch catch for"},{className:"function", + begin:i.UNDERSCORE_IDENT_RE+"\\([^()]*(\\([^()]*(\\([^()]*\\)[^()]*)*\\)[^()]*)*\\)\\s*\\{", + returnBegin:!0,contains:[A,i.inherit(i.TITLE_MODE,{begin:c})]},{variants:[{ + begin:"\\."+c},{begin:"\\$"+c}],relevance:0},{className:"class", + beginKeywords:"class",end:/[{;=]/,excludeEnd:!0,illegal:/[:"[\]]/,contains:[{ + beginKeywords:"extends"},i.UNDERSCORE_TITLE_MODE]},{begin:/\b(?=constructor)/, + end:/[{;]/,excludeEnd:!0,contains:[i.inherit(i.TITLE_MODE,{begin:c}),"self",A] + },{begin:"(get|set)\\s+(?="+c+"\\()",end:/\{/,keywords:"get set", + contains:[i.inherit(i.TITLE_MODE,{begin:c}),{begin:/\(\)/},A]},{begin:/\$[(.]/}] + }})(i) + ;return Object.assign(b.keywords,c),b.exports.PARAMS_CONTAINS.push(o),b.contains=b.contains.concat([o,{ + beginKeywords:"namespace",end:/\{/,excludeEnd:!0},{beginKeywords:"interface", + end:/\{/,excludeEnd:!0,keywords:"interface extends" + }]),l(b,"shebang",i.SHEBANG()),l(b,"use_strict",{className:"meta",relevance:10, + begin:/^\s*['"]use strict['"]/ + }),b.contains.find((e=>"function"===e.className)).relevance=0,Object.assign(b,{ + name:"TypeScript",aliases:["ts","tsx"]}),b}})()); + hljs.registerLanguage("vbnet",(()=>{"use strict";function e(e){ + return e?"string"==typeof e?e:e.source:null}function n(...n){ + return n.map((n=>e(n))).join("")}function t(...n){ + return"("+n.map((n=>e(n))).join("|")+")"}return e=>{ + const a=/\d{1,2}\/\d{1,2}\/\d{4}/,i=/\d{4}-\d{1,2}-\d{1,2}/,s=/(\d|1[012])(:\d+){0,2} *(AM|PM)/,r=/\d{1,2}(:\d{1,2}){1,2}/,o={ + className:"literal",variants:[{begin:n(/# */,t(i,a),/ *#/)},{ + begin:n(/# */,r,/ *#/)},{begin:n(/# */,s,/ *#/)},{ + begin:n(/# */,t(i,a),/ +/,t(s,r),/ *#/)}]},l=e.COMMENT(/'''/,/$/,{contains:[{ + className:"doctag",begin:/<\/?/,end:/>/}]}),c=e.COMMENT(null,/$/,{variants:[{ + begin:/'/},{begin:/([\t ]|^)REM(?=\s)/}]});return{name:"Visual Basic .NET", + aliases:["vb"],case_insensitive:!0,classNameAliases:{label:"symbol"},keywords:{ + keyword:"addhandler alias aggregate ansi as async assembly auto binary by byref byval call case catch class compare const continue custom declare default delegate dim distinct do each equals else elseif end enum erase error event exit explicit finally for friend from function get global goto group handles if implements imports in inherits interface into iterator join key let lib loop me mid module mustinherit mustoverride mybase myclass namespace narrowing new next notinheritable notoverridable of off on operator option optional order overloads overridable overrides paramarray partial preserve private property protected public raiseevent readonly redim removehandler resume return select set shadows shared skip static step stop structure strict sub synclock take text then throw to try unicode until using when where while widening with withevents writeonly yield", + built_in:"addressof and andalso await directcast gettype getxmlnamespace is isfalse isnot istrue like mod nameof new not or orelse trycast typeof xor cbool cbyte cchar cdate cdbl cdec cint clng cobj csbyte cshort csng cstr cuint culng cushort", + type:"boolean byte char date decimal double integer long object sbyte short single string uinteger ulong ushort", + literal:"true false nothing"}, + illegal:"//|\\{|\\}|endif|gosub|variant|wend|^\\$ ",contains:[{ + className:"string",begin:/"(""|[^/n])"C\b/},{className:"string",begin:/"/, + end:/"/,illegal:/\n/,contains:[{begin:/""/}]},o,{className:"number",relevance:0, + variants:[{begin:/\b\d[\d_]*((\.[\d_]+(E[+-]?[\d_]+)?)|(E[+-]?[\d_]+))[RFD@!#]?/ + },{begin:/\b\d[\d_]*((U?[SIL])|[%&])?/},{begin:/&H[\dA-F_]+((U?[SIL])|[%&])?/},{ + begin:/&O[0-7_]+((U?[SIL])|[%&])?/},{begin:/&B[01_]+((U?[SIL])|[%&])?/}]},{ + className:"label",begin:/^\w+:/},l,c,{className:"meta", + begin:/[\t ]*#(const|disable|else|elseif|enable|end|externalsource|if|region)\b/, + end:/$/,keywords:{ + "meta-keyword":"const disable else elseif enable end externalsource if region then" + },contains:[c]}]}}})()); + hljs.registerLanguage("yaml",(()=>{"use strict";return e=>{ + var n="true false yes no null",a="[\\w#;/?:@&=+$,.~*'()[\\]]+",s={ + className:"string",relevance:0,variants:[{begin:/'/,end:/'/},{begin:/"/,end:/"/ + },{begin:/\S+/}],contains:[e.BACKSLASH_ESCAPE,{className:"template-variable", + variants:[{begin:/\{\{/,end:/\}\}/},{begin:/%\{/,end:/\}/}]}]},i=e.inherit(s,{ + variants:[{begin:/'/,end:/'/},{begin:/"/,end:/"/},{begin:/[^\s,{}[\]]+/}]}),l={ + end:",",endsWithParent:!0,excludeEnd:!0,keywords:n,relevance:0},t={begin:/\{/, + end:/\}/,contains:[l],illegal:"\\n",relevance:0},g={begin:"\\[",end:"\\]", + contains:[l],illegal:"\\n",relevance:0},b=[{className:"attr",variants:[{ + begin:"\\w[\\w :\\/.-]*:(?=[ \t]|$)"},{begin:'"\\w[\\w :\\/.-]*":(?=[ \t]|$)'},{ + begin:"'\\w[\\w :\\/.-]*':(?=[ \t]|$)"}]},{className:"meta",begin:"^---\\s*$", + relevance:10},{className:"string", + begin:"[\\|>]([1-9]?[+-])?[ ]*\\n( +)[^ ][^\\n]*\\n(\\2[^\\n]+\\n?)*"},{ + begin:"<%[%=-]?",end:"[%-]?%>",subLanguage:"ruby",excludeBegin:!0,excludeEnd:!0, + relevance:0},{className:"type",begin:"!\\w+!"+a},{className:"type", + begin:"!<"+a+">"},{className:"type",begin:"!"+a},{className:"type",begin:"!!"+a + },{className:"meta",begin:"&"+e.UNDERSCORE_IDENT_RE+"$"},{className:"meta", + begin:"\\*"+e.UNDERSCORE_IDENT_RE+"$"},{className:"bullet",begin:"-(?=[ ]|$)", + relevance:0},e.HASH_COMMENT_MODE,{beginKeywords:n,keywords:{literal:n}},{ + className:"number", + begin:"\\b[0-9]{4}(-[0-9][0-9]){0,2}([Tt \\t][0-9][0-9]?(:[0-9][0-9]){2})?(\\.[0-9]*)?([ \\t])*(Z|[-+][0-9][0-9]?(:[0-9][0-9])?)?\\b" + },{className:"number",begin:e.C_NUMBER_RE+"\\b",relevance:0},t,g,s],r=[...b] + ;return r.pop(),r.push(i),l.contains=r,{name:"YAML",case_insensitive:!0, + aliases:["yml"],contains:b}}})()); \ No newline at end of file diff --git a/docs/js/highlight.js.LICENSE b/docs/js/highlight.js.LICENSE new file mode 100644 index 00000000000..d4906cd67cb --- /dev/null +++ b/docs/js/highlight.js.LICENSE @@ -0,0 +1,11 @@ +Copyright (c) 2006-2021, Ivan Sagalaev + +Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: + +1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. + +2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. + +3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/docs/js/main.js b/docs/js/main.js new file mode 100644 index 00000000000..eb8abfe8b2d --- /dev/null +++ b/docs/js/main.js @@ -0,0 +1,255 @@ +// ID Scroll +const links = document.querySelectorAll("div.item-wrapper"); +const contents = document.querySelectorAll("#content")[0]; + +lastActive = null; + +if (contents) { + contents.addEventListener('scroll', (e) => { + links.forEach((ha) => { + const rect = ha.getBoundingClientRect(); + if (rect.top > 0 && rect.top < 150) { + const location = window.location.toString().split("#")[0]; + history.replaceState(null, null, location + "#" + ha.id); + + if (lastActive != null) { + lastActive.classList.remove("active-item"); + } + + lastActive = document.querySelectorAll(`#nav-contents a[href="#${ha.id}"]`)[0]; + if (lastActive != null) { + lastActive.classList.add("active-item"); + } + } + }); + }); +} + + + // Active Tab +const pageLink = window.location.toString().replaceAll(/(.*)\/(.+?).html(.*)/gi, '$2'); +if (pageLink === "" || pageLink == window.location.toString()) // home page - when there is no `.+?.html` pageLink will = windown.location due to current regex + document.querySelectorAll('#global-navigation a[href="index.html"]')[0].classList.add("active-tab"); +else + document.querySelectorAll(`#global-navigation a[href="${pageLink}.html"]`)[0].classList.add("active-tab"); + + +// No Left Panel +for (e in {"content-no-docs": 0, "content": 1}) { + let noLeftPanel = document.querySelectorAll(`#${e}.no-left-panel`)[0]; + if (noLeftPanel != null) + document.querySelectorAll('#side-nav')[0].classList.add('no-left-panel'); +} + +// <> Magic Text +function getRandomChar() { + chars = "ÂÃÉÊÐÑÙÚÛÜéêëãòóôēĔąĆćŇň1234567890abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ~!@#$%^&*()-=_+{}["; + return chars.charAt(Math.floor(Math.random() * chars.length) + 1) +} + +function magicTextGen(element) { + var msg = element.textContent; + var length = msg.length; + + setInterval(() => { + var newMsg = ""; + for (i = 0; i <= length; i++) { + newMsg += getRandomChar(msg.charAt(i)); + } + element.textContent = newMsg; + + }, 30) +} + +function renderMagicText() { + document.querySelectorAll('.magic-text').forEach((e) => { + magicTextGen(e); + }) +} +renderMagicText(); + +// Magic Text + +// <> Mobile anchor correction due to doubled size header) +function offsetAnchor(event, element) { + if (window.innerWidth <= 768) { + event.preventDefault(); + content = document.querySelectorAll("#content")[0]; + actualElement = document.getElementById(element.getAttribute("href").replace("#", "")); + content.scroll(0, actualElement.offsetTop - 15); + } +} + +document.querySelectorAll("#nav-contents a").forEach((e) => { + e.addEventListener("click", (event) => { + offsetAnchor(event, e); + }); +}) +// Mobile anchor correction + +// <> Anchor click copy link +function copyToClipboard() { + setTimeout(() => { + var cb = document.body.appendChild(document.createElement("input")); + cb.value = window.location.href; + cb.focus(); + cb.select(); + document.execCommand('copy'); + cb.parentNode.removeChild(cb); + }, 50) +} +function showNotification(text, bgColor, color) { + var noti = document.body.appendChild(document.createElement("span")); + noti.id = "notification-box"; + + setTimeout(() => { + noti.textContent = text; + if (bgColor) + noti.styles.backgroundColor = bgColor; + if (color) + noti.styles.backgroundColor = color; + noti.classList.add("activate-notification"); + setTimeout(() => { + noti.classList.remove("activate-notification"); + setTimeout(() => { + noti.parentNode.removeChild(noti); + }, 200); + }, 1500); + }, 50); +} + +const currentPageLink = window.location.toString().replaceAll(/(.+?.html)(.*)/gi, '$1'); +document.querySelectorAll(".item-title > a").forEach((e) => { + e.addEventListener("click", (event) => { + copyToClipboard(); + showNotification("✅ Link copied successfully.") + }); +}) +// Anchor click copy link + +// <> Search Bar +function versionCompare(base, target) { // Return -1, 0, 1 + base = base.replaceAll(/(\d\.\d(\.\d|)).*/gi, "$1").replaceAll(/[^0-9]/gi, ""); // Handle special chars and versions like -dev21 and filter non digits + target = target.replaceAll(/(\d\.\d(\.\d|)).*/gi, "$1").replaceAll(/[^0-9]/gi, ""); + + base = parseInt(base) < 100 ? parseInt(base) * 10 : parseInt(base); // convert ten's to hundred's to fix (2.5.1+ not reiggering 2.6 by converting 26 -> 260) + target = parseInt(target) < 100 ? parseInt(target) * 10 : parseInt(target); + + + if (target > base) + return 1 + if (target == base) + return 0 + if (target < base) + return -1 +} + +var content = document.getElementById("content"); +if (content) { + content.insertAdjacentHTML('afterbegin', ''); +} + +var searchBar = document.getElementById("search-bar"); +if (searchBar) { + searchBar.focus() // To easily search without the need to click + searchBar.addEventListener('keydown', (event) => { + setTimeout(() => { // Important to actually get the value after typing or deleting + let allElements = document.querySelectorAll(".item-wrapper"); + let searchValue = searchBar.value; + let count = 0; // Check if any matches found + let pass; + + let version = searchValue.replaceAll(/v(?:ersion|)\:(\d\.\d(?:\.\d)?)\+?/gi, "$1").replaceAll(/[^0-9.]/gi, ""); + let versionAndUp = searchValue.replaceAll(/v(?:ersion|)\:\d\.\d(?:\.\d)?(\+?)/gi, "$1").replaceAll(/[^+]/g, "") == "+"; + searchValue = searchValue.replaceAll(/ ?v(ersion|)\:(\d\.\d(\.\d)?)\+?/gi, "") // Don't include filters in the search + searchValue = searchValue.replaceAll(/( ){2,}/gi, " ") // Filter duplicate spaces + + searchValue = searchValue.replaceAll(/[^a-zA-Z0-9 ]/gi, ""); // Filter none alphabet and digits to avoid regex errors + + allElements.forEach((e) => { + let patterns = document.querySelectorAll(`#${e.id} .item-details .skript-code-block`); + for (let i = 0; i < patterns.length; i++) { // Search in the patterns for better results + let pattern = patterns[i]; + // let regex = new RegExp("\\b" + searchValue + "\\b", "gi") // Makes live character update useless + let regex = new RegExp(searchValue, "gi") + let name = document.querySelectorAll(`#${e.id} .item-title h1`)[0].textContent // Syntax Name + let versionFound; + + if (version != "") { + versionFound = document.querySelectorAll(`#${e.id} .item-details:nth-child(2) td:nth-child(2)`)[0].textContent.includes(version); + + if (versionAndUp) { + let versions = document.querySelectorAll(`#${e.id} .item-details:nth-child(2) td:nth-child(2)`)[0].textContent.split(","); + for (const v in versions) { // split on ',' without space in case some version didn't have space and versionCompare will handle it + if (versionCompare(version, versions[v]) == 1 == true) { + versionFound = true; + break; // Performance + } + } + } + } else { + versionFound = true; + } + if ((regex.test(pattern.textContent) || regex.test(name) || searchValue == "") && versionFound) { + pass = true + break; // Performance + } + } + + // Filter + let sideNavItem = document.querySelectorAll(`#nav-contents a[href="#${e.id}"]`)[0]; + if (pass) { + e.style.display = null; + if (sideNavItem) + sideNavItem.style.display = null; + count++; + } else { + e.style.display = "none"; + if (sideNavItem) + sideNavItem.style.display = "none"; + } + + pass = false; // reset + }) + + if (count == 0) { + if (document.getElementById("no-matches") == null) + document.getElementById("content").insertAdjacentHTML('beforeend', '

No matches found.

'); + } else { + if (document.getElementById("no-matches") != null) + document.getElementById("no-matches").remove(); + } + + count = 0; // reset + }, 100); // Spam delay for better performance + + }); +} +// Search Bar + +// <> HighlightJS +document.querySelectorAll('pre.code').forEach(el => { // Apply the code formatting on the same
 not the  inside to not break the styling
+  hljs.highlightElement(el);
+});
+document.querySelectorAll('div .skript-code-block').forEach(el => { // This lags the docs pages due to the huge amount of elements being parsed, we can disable this if lag is so bad for some people or keep it because it looks AMAZING!
+  hljs.highlightElement(el);
+});
+// HighlightJS 
+
+// <> Placeholders
+function replacePlaceholders(html) {
+  let innerHTML = html.innerHTML;
+  if (innerHTML.includes("${latest-version}")) {
+    let lv = $.getJSON("https://api.github.com/repos/SkriptLang/Skript/releases?per_page=1", (data) => {
+      html.innerHTML = html.innerHTML.replaceAll("${latest-version}", data[0]["tag_name"]);
+    })
+  }
+  if (innerHTML.includes("${contributors-size}")) {
+    let lv = $.getJSON("https://api.github.com/repos/SkriptLang/Skript/contributors?per_page=500", (data) => {
+      html.innerHTML = html.innerHTML.replaceAll("${contributors-size}", data.length);
+    })
+  }
+}
+replacePlaceholders(document.querySelector("body"));
+// Placeholders 
+
diff --git a/docs/template.html b/docs/template.html
index ea88756d215..0596815789c 100644
--- a/docs/template.html
+++ b/docs/template.html
@@ -3,8 +3,31 @@
 
   
   
+
+  
+
+  
+  
+  
+  
+  
+  
+  
+
   Skript Documentation - ${skript.version}
   
+
+  
+  
+
+   
+
+  
+  
+
+  
+  
+
 
 
   ${include navbar.html}
@@ -13,6 +36,9 @@
       ${generate ${pagename} desc_nav.html}
     
+ ${content} + + diff --git a/docs/templates/desc_full.html b/docs/templates/desc_full.html index cc8c8dd2091..9a88a31ec74 100644 --- a/docs/templates/desc_full.html +++ b/docs/templates/desc_full.html @@ -1,51 +1,47 @@ -
- ${element.name} - 🔗 -
-
- - - - - - - - - - - - - ${if events} - - - - - ${end} - - ${if required-plugins} - - - - - ${end} - -
Patterns: -
    - ${generate element.patterns pattern_element.html} -
-
Since:${element.since}
Usable in events:${element.events}
Requirements:${element.required-plugins}
- -
- ${element.desc} +
+
+

${element.name}

🔗
+
+ + + + + + + + + + + + ${if events} + + + + + + ${end} ${if required-plugins} + + + + + ${end} +
Patterns: +
    + ${generate element.patterns pattern_element.html} +
+
Since:${element.since}
Usable in events:${element.events}
Requirements:${element.required-plugins}
+ +
+ ${element.desc} +
-
- - Examples: +
+

Examples:

-
- ${element.examples} +
+ ${element.examples} +
-
diff --git a/docs/templates/navbar.html b/docs/templates/navbar.html index ecdc86dde21..a764d5912aa 100644 --- a/docs/templates/navbar.html +++ b/docs/templates/navbar.html @@ -1,10 +1,13 @@ - + diff --git a/docs/text.html b/docs/text.html index 629e8e63d56..a199fa4e222 100644 --- a/docs/text.html +++ b/docs/text.html @@ -1,218 +1,332 @@

Text in Scripts

-
-Skript allows you to write pieces of text (programmers usually call them strings) -in the scripts. This is done by putting the text inside double quotes, as follows: -
-"this is text" -
-Simple, isn't it? If an effect, expression, condition, trigger or function -accepts something of type text or string, you can use this format to write it -right there! -

Formatting Text

-But isn't just text a bit boring? Worry not, as Minecraft has support for colors, -styles and other formatting options in chat. Most of the options also work with -item and entity names. +
+

Text (String)

+

+ Skript allows you to write pieces of text (programmers usually call them strings) in the scripts. This is done by putting the text inside double quotes, as follows: +

+
"this is text"
+

+ Simple, isn't it? If an effect, expression, condition, trigger or function accepts something of type text or string, you can use this format to write it right there! +

+

Formatting Text

+

+ But isn't just text a bit boring? Worry not, as Minecraft has support for colors, styles and other formatting options in chat. Most of the options also work with item and entity names. +

+

Colors

+

+ Minecraft has 16 pre-set color codes to be used in text. Skript supports them in two different ways: +

+

+ Color name tags, for example <red>
Minecraft color codes, like §c; using & works, too +

+

+ Here's a table of all colors, including both Skript names and color codes: +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
ColorCodeNameAlternative Names
§0black
§1bluedark blue
§2greendark green
§3cyanaqua, dark cyan, dark aqua, dark turquoise, dark turquois
§4reddark red
§5purpledark purple
§6orangeorange, gold, dark yellow
§7greylight grey, gray, light gray, silver
§8greylight grey, gray, light gray, silver
§9light bluelight blue, indigo
§alight greenlime, lime green
§blight cyanlight aqua, turquoise, turquois, light blue
§clight redpink
§dmagentalight purple
§eyellowlight yellow
§fwhite
+

+ In Minecraft 1.16, support was added for + 6-digit hexadecimal colors to specify custom colors other than the 16 default color codes. A new tag can be used to format with these colors. The tag looks like this: +

+
<##hex code>
+

Here's what the tag would look like when used in a script:

+
+ send "<##123456>Hey %player%!" to player +
+

+ For information not related to Skript, see + Minecraft Wiki page + concerning colors. Note that depending on Skript configuration, color + codes may do more than just change color of text after them. By default, + for backwards compatibility, they clear following styles: magic, bold, + strikethrough, underlined, italic. Other styles are not affected, and + this feature can be toggled of in config.sk. +

+

Other Styles

+

+ Minecraft also has various other styles available. The following are + available everywhere, including item and entity names: +

-

Colors

-Minecraft has 16 pre-set color codes to be used in text. Skript supports them -in two different ways: -
    -
  • Color name tags, for example <red>
  • -
  • (Old) Minecraft color codes, like §c; using & works, too
  • -
-

-Here's a table of all colors, including both Skript names and color codes: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
CodeNameAlternative Names
§0black
§1bluedark blue
§2greendark green
§3cyanaqua, dark cyan, dark aqua, dark turquoise, dark turquois
§4reddark red
§5purpledark purple
§6orangeorange, gold, dark yellow
§7greylight grey, gray, light gray, silver
§8greylight grey, gray, light gray, silver
§9light bluelight blue, indigo
§alight greenlime, lime green
§blight cyanlight aqua, turquoise, turquois, light blue
§clight redpink
§dmagentalight purple
§eyellowlight yellow
§fwhite
-

-In Minecraft 1.16, support was added for 6-digit hexadecimal colors to specify custom colors other than the 16 default color codes. -A new tag can be used to format with these colors. The tag looks like this: <#hex code>. -
-Here's what the tag would look like when used in a script: send "<#123456>Hey %player%!" to player -

-For information not related to Skript, see -Minecraft -Wiki page concerning colors. - -Note that depending on Skript configuration, color codes may do more than just -change color of text after them. By default, for backwards compatibility, they -clear following styles: magic, bold, strikethrough, underlined, italic. Other -styles are not affected, and this feature can be toggled of in config.sk. - -

Other Styles

-Minecraft also has various other styles available. The following are available -everywhere, including item and entity names: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
CodeNameAlternative Names
§kmagicobfuscated
§lboldb
§mstrikethroughstrike, s
§nunderlinedunderline, u
§oitalicitalics, i
§rresetr
-If it wasn't clear from the table, §r clears all other formatting and colors. -You'll probably use it quite often when sending chat messages from scripts. -

-Skript also supports certain newer features, which are only available in chat. -Those do not have formatting codes, so you must use tags for them. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameAlternative NamesDescription
linkopen url, urlOpens a link when player clicks on text
run commandcommand, cmdMakes player execute a chat command when they click on text
suggest commandAdds a command to chat prompt of player when clicked
tooltipshow textShows a tooltip when player hovers over text with their mouse
fontfChange the font of the text 1.16+
- -All of these styles require a parameter, in format -<name:parameter> -For link, parameter must be either http or https url if you want clients to -recognize it. For others, it can be any text you'd like -(you can make player run invalid commands if you wish). - -

Text and Variables

-Variable names are text, but obviously formatting that text does no good. -However, everything else you can do for text, you can do for variable names. -A guide about this is coming... some day. -

-Guide written by bensku. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
CodeNameAlternative Names
§kmagic testobfuscated
§lboldb
§mstrikethroughstrike, s
§nunderlinedunderline, u
§oitalicitalics, i
§rresetr
+

+ If it wasn't clear from the table, §r clears all other formatting and + colors. You'll probably use it quite often when sending chat messages + from scripts. +

+

+ Skript also supports certain newer features, which are only available in + chat. Those do not have formatting codes, so you must use tags for them. +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameAlternative NamesDescription
linkopen url, urlOpens a link when player clicks on text
run commandcommand, cmdMakes player execute a chat command when they click on text
suggest commandsgtAdds a command to chat prompt of player when clicked
tooltipshow text, ttpShows a tooltip when player hovers over text with their mouse
insertioninsert, insWill append a text at player's current cursor in chat input only while holding SHIFT.
+

All of these styles require a parameter, in format

+
+ <name:parameter> +
+

+ For link, parameter must be either http or https url if you want clients + to recognize it. For others, it can be any text you'd like (you can make + player run invalid commands if you wish). +

+

Text and Variables

+

+ Variable names are text, but obviously formatting that text does no + good. However, everything else you can do for text, you can do for + variable names. A guide about this is coming... some day. +

+

+ Guide written by bensku. +

+
\ No newline at end of file diff --git a/docs/tutorials.html b/docs/tutorials.html new file mode 100644 index 00000000000..d4e74bb75c6 --- /dev/null +++ b/docs/tutorials.html @@ -0,0 +1,16 @@ +

Tutorials

+
+

Note:

+
+ Skript Tutorials are coming soon. +

+
    +
  1. Loops
  2. +
  3. Commands
  4. +
  5. Functions
  6. +
  7. Variables
  8. +
  9. Visual effects
  10. +
+
+
+
\ No newline at end of file diff --git a/src/main/java/ch/njol/skript/classes/ClassInfo.java b/src/main/java/ch/njol/skript/classes/ClassInfo.java index 24c6f1c0f9f..01c3cc3d808 100644 --- a/src/main/java/ch/njol/skript/classes/ClassInfo.java +++ b/src/main/java/ch/njol/skript/classes/ClassInfo.java @@ -394,7 +394,7 @@ public String getDocName() { * @return Documentation id override, or null. */ @Nullable - public String getDocumentationId() { + public String getDocumentationID() { return documentationId; } diff --git a/src/main/java/ch/njol/skript/classes/data/BukkitClasses.java b/src/main/java/ch/njol/skript/classes/data/BukkitClasses.java index a15d670371c..b4a9579d16b 100644 --- a/src/main/java/ch/njol/skript/classes/data/BukkitClasses.java +++ b/src/main/java/ch/njol/skript/classes/data/BukkitClasses.java @@ -947,11 +947,17 @@ public boolean mustSyncDeserialization() { .description("A player or the console.") .usage("use the console for the console", "see player for players.") - .examples("on command /pm:", - " command sender is not the console", - " chance of 10%", - " give coal to the player", - " message \"You got a piece of coal for sending that PM!\"") + .examples("command /push [<player>]:", + "\ttrigger:", + "\t\tif arg-1 is not set:", + "\t\t\tif command sender is console:", + "\t\t\t\tsend \"You can't push yourself as a console :\\\" to sender", + "\t\t\t\tstop", + "\t\t\tpush sender upwards with force 2", + "\t\t\tsend \"Yay!\"", + "\t\telse:", + "\t\t\tpush arg-1 upwards with force 2", + "\t\t\tsend \"Yay!\" to sender and arg-1") .since("1.0") .defaultExpression(new EventValueExpression<>(CommandSender.class)) .parser(new Parser() { diff --git a/src/main/java/ch/njol/skript/classes/data/SkriptClasses.java b/src/main/java/ch/njol/skript/classes/data/SkriptClasses.java index 5a381056440..9b3b331c75b 100644 --- a/src/main/java/ch/njol/skript/classes/data/SkriptClasses.java +++ b/src/main/java/ch/njol/skript/classes/data/SkriptClasses.java @@ -195,7 +195,7 @@ public String getVariableNamePattern() { "and unlike items they are well suited for checking whether an inventory contains a certain item or whether a certain item is of a certain type.", "An item type can also have one or more enchantments with or without a specific level defined, " + "and can optionally start with 'all' or 'every' to make this item type represent all types that the alias represents, including data ranges.") - .usage("[<number> [of]] [all/every] <alias> [of <enchantment> [<level>] [,/and <more enchantments...>]]") + .usage("[<number> [of]] [all/every] <alias> [of <enchantment> [<level>] [,/and <more enchantments...>]]") .examples("give 4 torches to the player", "add all slabs to the inventory of the block", "player's tool is a diamond sword of sharpness", @@ -211,17 +211,17 @@ public String getVariableNamePattern() { public ItemType parse(final String s, final ParseContext context) { return Aliases.parseItemType(s); } - + @Override public String toString(final ItemType t, final int flags) { return t.toString(flags); } - + @Override public String getDebugMessage(final ItemType t) { return t.getDebugMessage(); } - + @Override public String toVariableNameString(final ItemType t) { final StringBuilder b = new StringBuilder("itemtype:"); @@ -244,7 +244,7 @@ public String toVariableNameString(final ItemType t) { } return "" + b.toString(); } - + @Override public String getVariableNamePattern() { return "itemtype:.+"; @@ -252,14 +252,14 @@ public String getVariableNamePattern() { }) .cloner(ItemType::clone) .serializer(new YggdrasilSerializer<>())); - + Classes.registerClass(new ClassInfo<>(Time.class, "time") .user("times?") .name("Time") .description("A time is a point in a minecraft day's time (i.e. ranges from 0:00 to 23:59), which can vary per world.", "See date and timespan for the other time types of Skript.") - .usage("##:##", - "##[:##][ ]am/pm") + .usage("##:##", + "##[:##][ ]am/pm") .examples("at 20:00:", " time is 8 pm", " broadcast \"It's %time%\"") @@ -271,17 +271,17 @@ public String getVariableNamePattern() { public Time parse(final String s, final ParseContext context) { return Time.parse(s); } - + @Override public String toString(final Time t, final int flags) { return t.toString(); } - + @Override public String toVariableNameString(final Time o) { return "time:" + o.getTicks(); } - + @Override public String getVariableNamePattern() { return "time:\\d+"; @@ -297,20 +297,20 @@ public Time deserialize(final String s) { return null; } } - + @Override public boolean mustSyncDeserialization() { return false; } })); - + Classes.registerClass(new ClassInfo<>(Timespan.class, "timespan") .user("time ?spans?") .name("Timespan") .description("A timespan is a difference of two different dates or times, e.g '10 minutes'. Timespans are always displayed as real life time, but can be defined as minecraft time, e.g. '5 minecraft days and 12 hours'.", "See date and time for the other time types of Skript.") - .usage("<number> [minecraft/mc/real/rl/irl] ticks/seconds/minutes/hours/days [[,/and] <more...>]", - "[###:]##:##[.####] ([hours:]minutes:seconds[.milliseconds])") + .usage("<number> [minecraft/mc/real/rl/irl] ticks/seconds/minutes/hours/days [[,/and] <more...>]", + "[###:]##:##[.####] ([hours:]minutes:seconds[.milliseconds])") .examples("every 5 minecraft days:", " wait a minecraft second and 5 ticks", "every 10 mc days and 12 hours:", @@ -327,17 +327,17 @@ public Timespan parse(final String s, final ParseContext context) { return null; } } - + @Override public String toString(final Timespan t, final int flags) { return t.toString(flags); } - + @Override public String toVariableNameString(final Timespan o) { return "timespan:" + o.getMilliSeconds(); } - + @Override public String getVariableNamePattern() { return "timespan:\\d+"; @@ -353,7 +353,7 @@ public Timespan deserialize(final String s) { return null; } } - + @Override public boolean mustSyncDeserialization() { return false; @@ -364,12 +364,12 @@ public boolean mustSyncDeserialization() { public Timespan difference(final Timespan t1, final Timespan t2) { return new Timespan(Math.abs(t1.getMilliSeconds() - t2.getMilliSeconds())); } - + @Override public Timespan add(final Timespan value, final Timespan difference) { return new Timespan(value.getMilliSeconds() + difference.getMilliSeconds()); } - + @Override public Timespan subtract(final Timespan value, final Timespan difference) { return new Timespan(Math.max(0, value.getMilliSeconds() - difference.getMilliSeconds())); @@ -390,14 +390,14 @@ public Timespan power(Timespan value, Timespan exponent) { throw new UnsupportedOperationException(); } })); - + // TODO remove Classes.registerClass(new ClassInfo<>(Timeperiod.class, "timeperiod") .user("time ?periods?", "durations?") .name("Timeperiod") .description("A period of time between two times. Mostly useful since you can use this to test for whether it's day, night, dusk or dawn in a specific world.", "This type might be removed in the future as you can use 'time of world is between x and y' as a replacement.") - .usage("##:## - ##:##", + .usage("##:## - ##:##", "dusk/day/dawn/night") .examples("time in world is night") .since("1.0") @@ -429,17 +429,17 @@ public Timeperiod parse(final String s, final ParseContext context) { return null; return new Timeperiod(t1.getTicks(), t2.getTicks()); } - + @Override public String toString(final Timeperiod o, final int flags) { return o.toString(); } - + @Override public String toVariableNameString(final Timeperiod o) { return "timeperiod:" + o.start + "-" + o.end; } - + @Override public String getVariableNamePattern() { return "timeperiod:\\d+-\\d+"; @@ -459,7 +459,7 @@ public Timeperiod deserialize(final String s) { } } })); - + Classes.registerClass(new ClassInfo<>(Date.class, "date") .user("dates?") .name("Date") @@ -486,12 +486,12 @@ public Date deserialize(final String s) { public Timespan difference(final Date first, final Date second) { return first.difference(second); } - + @Override public Date add(final Date value, final Timespan difference) { return new Date(value.getTimestamp() + difference.getMilliSeconds()); } - + @Override public Date subtract(final Date value, final Timespan difference) { return new Date(value.getTimestamp() - difference.getMilliSeconds()); @@ -512,7 +512,7 @@ public Date power(Date value, Timespan exponent) { throw new UnsupportedOperationException(); } })); - + Classes.registerClass(new ClassInfo<>(Direction.class, "direction") .user("directions?") .name("Direction") @@ -531,22 +531,22 @@ public Date power(Date value, Timespan exponent) { public Direction parse(final String s, final ParseContext context) { return null; } - + @Override public boolean canParse(final ParseContext context) { return false; } - + @Override public String toString(final Direction o, final int flags) { return o.toString(); } - + @Override public String toVariableNameString(final Direction o) { return o.toString(); } - + @Override public String getVariableNamePattern() { return ".*"; @@ -561,7 +561,7 @@ public Direction deserialize(final String s) { return Direction.deserialize(s); } })); - + Classes.registerClass(new ClassInfo<>(Slot.class, "slot") .user("(inventory )?slots?") .name("Inventory Slot") @@ -589,7 +589,7 @@ public Class[] acceptChange(final ChangeMode mode) { return new Class[] {ItemType[].class, ItemStack[].class}; return new Class[] {ItemType.class, ItemStack.class}; } - + @Override public void change(final Slot[] slots, final @Nullable Object[] deltas, final ChangeMode mode) { if (mode == ChangeMode.SET) { @@ -663,7 +663,7 @@ public void change(final Slot[] slots, final @Nullable Object[] deltas, final Ch public boolean canParse(final ParseContext context) { return false; } - + @Override public String toString(Slot o, int flags) { ItemStack i = o.getItem(); @@ -671,19 +671,19 @@ public String toString(Slot o, int flags) { return new ItemType(Material.AIR).toString(flags); return ItemType.toString(i, flags); } - + @Override public String toVariableNameString(Slot o) { return "slot:" + o.toString(); } - + @Override public String getVariableNamePattern() { return "slot:.+"; } }) .serializeAs(ItemStack.class)); - + Classes.registerClass(new ClassInfo<>(Color.class, "color") .user("colou?rs?") .name("Colour") @@ -702,28 +702,28 @@ public Color parse(String input, ParseContext context) { return rgbColor; return SkriptColor.fromName(input); } - + @Override public String toString(Color c, int flags) { return c.getName(); } - + @Override public String toVariableNameString(Color color) { return "" + color.getName().toLowerCase(Locale.ENGLISH).replace('_', ' '); } - + @Override public String getVariableNamePattern() { return "[a-z ]+"; } })); - + Classes.registerClass(new ClassInfo<>(StructureType.class, "structuretype") .user("tree ?types?", "trees?") .name("Tree Type") .description("A tree type represents a tree species or a huge mushroom species. These can be generated in a world with the generate tree effect.") - .usage("[any] <general tree/mushroom type>, e.g. tree/any jungle tree/etc.", "<specific tree/mushroom species>, e.g. red mushroom/small jungle tree/big regular tree/etc.") + .usage("[any] <general tree/mushroom type>, e.g. tree/any jungle tree/etc.", "<specific tree/mushroom species>, e.g. red mushroom/small jungle tree/big regular tree/etc.") .examples("grow any regular tree at the block", "grow a huge red mushroom above the block") .since("") @@ -734,28 +734,28 @@ public String getVariableNamePattern() { public StructureType parse(final String s, final ParseContext context) { return StructureType.fromName(s); } - + @Override public String toString(final StructureType o, final int flags) { return o.toString(flags); } - + @Override public String toVariableNameString(final StructureType o) { return "" + o.name().toLowerCase(); } - + @Override public String getVariableNamePattern() { return "[a-z ]+"; } }).serializer(new EnumSerializer<>(StructureType.class))); - + Classes.registerClass(new ClassInfo<>(EnchantmentType.class, "enchantmenttype") .user("enchant(ing|ment) types?") .name("Enchantment Type") .description("An enchantment with an optional level, e.g. 'sharpness 2' or 'fortune'.") - .usage("<enchantment> [<level>]") + .usage("<enchantment> [<level>]") .examples("enchant the player's tool with sharpness 5", "helmet is enchanted with waterbreathing") .since("1.4.6") @@ -765,17 +765,17 @@ public String getVariableNamePattern() { public EnchantmentType parse(final String s, final ParseContext context) { return EnchantmentType.parse(s); } - + @Override public String toString(final EnchantmentType t, final int flags) { return t.toString(); } - + @Override public String toVariableNameString(final EnchantmentType o) { return o.toString(); } - + @Override public String getVariableNamePattern() { return ".+"; @@ -799,13 +799,13 @@ public EnchantmentType deserialize(final String s) { } } })); - + Classes.registerClass(new ClassInfo<>(Experience.class, "experience") .user("experience ?(points?)?") .name("Experience") .description("Experience points. Please note that Bukkit only allows to give XP, but not remove XP from players. " + "You can however change a player's level and level progress freely.") - .usage("[<number>] ([e]xp|experience [point[s]])") + .usage("[<number>] ([e]xp|experience [point[s]])") .examples("give 10 xp to the player") .since("2.0") .parser(new Parser() { diff --git a/src/main/java/ch/njol/skript/conditions/CondCanSee.java b/src/main/java/ch/njol/skript/conditions/CondCanSee.java index 9aa47e02e8d..3e5d66d1bb3 100644 --- a/src/main/java/ch/njol/skript/conditions/CondCanSee.java +++ b/src/main/java/ch/njol/skript/conditions/CondCanSee.java @@ -37,7 +37,7 @@ @Name("Can See") @Description("Checks whether the given players can see another players.") @Examples({"if the player can't see the player-argument:", - "\tmessage \"The player %player-argument% is not online!\""}) + "\tmessage \"<light red>The player %player-argument% is not online!\""}) @Since("2.3") public class CondCanSee extends Condition { diff --git a/src/main/java/ch/njol/skript/doc/Documentation.java b/src/main/java/ch/njol/skript/doc/Documentation.java index cad74a50cb9..8ae1b4b3777 100644 --- a/src/main/java/ch/njol/skript/doc/Documentation.java +++ b/src/main/java/ch/njol/skript/doc/Documentation.java @@ -51,12 +51,12 @@ /** * TODO list special expressions for events and event values * TODO compare doc in code with changed one of the webserver and warn about differences? - * + * * @author Peter Güttinger */ @SuppressFBWarnings("ES_COMPARING_STRINGS_WITH_EQ") public class Documentation { - + public static void generate() { if (!generate) return; @@ -73,9 +73,9 @@ public static void generate() { return; } } - + public final static boolean generate = Skript.testing() && new File(Skript.getInstance().getDataFolder(), "generate-doc").exists(); // don't generate the documentation on normal servers - + private static void asSql(final PrintWriter pw) { pw.println("-- syntax elements"); // pw.println("DROP TABLE IF EXISTS syntax_elements;"); @@ -113,7 +113,7 @@ private static void asSql(final PrintWriter pw) { assert info != null; insertEvent(pw, info); } - + pw.println(); pw.println(); pw.println("-- classes"); @@ -133,7 +133,7 @@ private static void asSql(final PrintWriter pw) { assert info != null; insertClass(pw, info); } - + pw.println(); pw.println(); pw.println("-- functions"); @@ -149,63 +149,127 @@ private static void asSql(final PrintWriter pw) { insertFunction(pw, func); } } - - private static String convertRegex(final String regex) { + + private static String convertRegex(String regex, boolean escapeHTML) { if (StringUtils.containsAny(regex, ".[]\\*+")) Skript.error("Regex '" + regex + "' contains unconverted Regex syntax"); - return escapeHTML("" + regex - .replaceAll("\\((.+?)\\)\\?", "[$1]") - .replaceAll("(.)\\?", "[$1]")); + regex = escapeHTML ? escapeHTML(regex) : regex; + return regex.replaceAll("\\((.+?)\\)\\?", "[$1]").replaceAll("(.)\\?", "[$1]"); } - - private static String cleanPatterns(final String patterns) { - final String s = StringUtils.replaceAll("" + - escapeHTML(patterns) // escape HTML - .replaceAll("(?<=[\\(\\|])[-0-9]+?¦", "") // remove marks - .replace("()", "") // remove empty mark setting groups (mark¦) - .replaceAll("\\(([^|]+?)\\|\\)", "[$1]") // replace (mark¦x|) groups with [x] - .replaceAll("\\(\\|([^|]+?)\\)", "[$1]") // dito - .replaceAll("\\((.+?)\\|\\)", "[($1)]") // replace (a|b|) with [(a|b)] - .replaceAll("\\(\\|(.+?)\\)", "[($1)]") // dito - , "(?() { // link & fancy types - @Override - public String run(final Matcher m) { - String s = m.group(1); - if (s.startsWith("-")) - s = s.substring(1); - String flag = ""; - if (s.startsWith("*") || s.startsWith("~")) { - flag = s.substring(0, 1); - s = s.substring(1); - } - final int a = s.indexOf("@"); - if (a != -1) - s = s.substring(0, a); - final StringBuilder b = new StringBuilder("%"); - b.append(flag); - boolean first = true; - for (final String c : s.split("/")) { - assert c != null; - if (!first) - b.append("/"); - first = false; - final NonNullPair p = Utils.getEnglishPlural(c); - final ClassInfo ci = Classes.getClassInfoNoError(p.getFirst()); - if (ci != null && ci.getDocName() != null && ci.getDocName() != ClassInfo.NO_DOC) { - b.append("").append(ci.getName().toString(p.getSecond())).append(""); - } else { - b.append(c); - if (ci != null && ci.getDocName() != ClassInfo.NO_DOC) - Skript.warning("Used class " + p.getFirst() + " has no docName/name defined"); + + private static String convertRegex(String regex) { + return convertRegex(regex, true); + } + + protected static String cleanPatterns(final String patterns) { + return cleanPatterns(patterns, true); + } + + protected static String cleanPatterns(final String patterns, boolean escapeHTML) { + + String cleanedPatterns = + (escapeHTML ? escapeHTML(patterns) : patterns) // Escape HTML if escapeHTML == true + .replaceAll("(?<=[(|])[-0-9]+?¦", "") // Remove marks + .replace("()", ""); // Remove empty mark setting groups (mark¦) + + Callback callback = m -> { // Replace optional parentheses with optional brackets + String group = m.group(); + + boolean startToEnd = group.contains("(|"); // Due to regex limitation we search from the beginning to the end but if it has '|)' we will begin from the opposite direction + + int depth = 0; + int charIndex = 0; + char[] chars = group.toCharArray(); + for (int i = (startToEnd ? 0 : chars.length - 1); (startToEnd ? i < chars.length : i >= 0); i = (startToEnd ? i+1 : i-1)) { + char c = chars[i]; + if (c == ')') { + depth++; + if (startToEnd && depth == 0) { // Break if the nearest closing parentheses pair is found if startToEnd == true + charIndex = i; + break; + } + } else if (c == '(') { + depth--; + if (!startToEnd && depth == 0) { // Break if the nearest opening parentheses pair is found if startToEnd == false + charIndex = i; + break; } + } else if (c == '\\') { // Escape escaping characters + i--; } - return "" + b.append("%").toString(); } - }); + if (depth == 0 && charIndex != 0) { + if (startToEnd) { + return "[" + + group.substring(0, charIndex) + .replace("(|", "") + // Ex. (|(t|y)) -> [(t|y)] & (|x(t|y)) -> [x(t|y)] + "]" + + group.substring(charIndex + 1, chars.length); // Restore the unchanged after part + } + else { + return group.substring(0, charIndex) + // Restore the unchanged before part + "[" + + group.substring(charIndex + 1, chars.length) + .replace("|)", "") + // Ex. ((t|y)|) -> [(t|y)] & ((t|y)x|) -> [(t|y)x] + "]"; + } + } else { + return group; + } + }; + + cleanedPatterns = cleanedPatterns.replaceAll("\\(([^()]+?)\\|\\)", "[($1)]"); // Matches optional syntaxes that doesn't have nested parentheses + cleanedPatterns = cleanedPatterns.replaceAll("\\(\\|([^()]+?)\\)", "[($1)]"); + + cleanedPatterns = StringUtils.replaceAll(cleanedPatterns, "\\((.+)\\|\\)", callback); // Matches complex optional parentheses at has nested parentheses + assert cleanedPatterns != null; + cleanedPatterns = StringUtils.replaceAll(cleanedPatterns, "\\((.+?)\\|\\)", callback); + assert cleanedPatterns != null; + cleanedPatterns = StringUtils.replaceAll(cleanedPatterns, "\\(\\|(.+)\\)", callback); + assert cleanedPatterns != null; + cleanedPatterns = StringUtils.replaceAll(cleanedPatterns, "\\(\\|(.+?)\\)", callback); + assert cleanedPatterns != null; + + final String s = StringUtils.replaceAll(cleanedPatterns, "(?() { + @Override + public String run(final Matcher m) { + String s = m.group(1); + if (s.startsWith("-")) + s = s.substring(1); + String flag = ""; + if (s.startsWith("*") || s.startsWith("~")) { + flag = s.substring(0, 1); + s = s.substring(1); + } + final int a = s.indexOf("@"); + if (a != -1) + s = s.substring(0, a); + final StringBuilder b = new StringBuilder("%"); + b.append(flag); + boolean first = true; + for (final String c : s.split("/")) { + assert c != null; + if (!first) + b.append("/"); + first = false; + final NonNullPair p = Utils.getEnglishPlural(c); + final ClassInfo ci = Classes.getClassInfoNoError(p.getFirst()); + if (ci != null && ci.getDocName() != null && ci.getDocName() != ClassInfo.NO_DOC) { + b.append("").append(ci.getName().toString(p.getSecond())).append(""); + } else { + b.append(c); + if (ci != null && !ci.getDocName().equals(ClassInfo.NO_DOC)) + Skript.warning("Used class " + p.getFirst() + " has no docName/name defined"); + } + } + return "" + b.append("%").toString(); + } + }); assert s != null : patterns; return s; } - + private static void insertSyntaxElement(final PrintWriter pw, final SyntaxElementInfo info, final String type) { if (info.c.getAnnotation(NoDoc.class) != null) return; @@ -231,7 +295,7 @@ private static void insertSyntaxElement(final PrintWriter pw, final SyntaxElemen escapeHTML(StringUtils.join(info.c.getAnnotation(Examples.class).value(), "\n")), since); } - + private static void insertEvent(final PrintWriter pw, final SkriptEventInfo info) { if (info.getDescription() == SkriptEventInfo.NO_DOC) return; @@ -263,7 +327,7 @@ private static void insertEvent(final PrintWriter pw, final SkriptEventInfo i escapeHTML(StringUtils.join(info.getExamples(), "\n")), since); } - + private static void insertClass(final PrintWriter pw, final ClassInfo info) { if (info.getDocName() == ClassInfo.NO_DOC) return; @@ -290,7 +354,7 @@ private static void insertClass(final PrintWriter pw, final ClassInfo info) { escapeHTML(StringUtils.join(info.getExamples(), "\n")), since); } - + private static void insertFunction(final PrintWriter pw, final JavaFunction func) { final StringBuilder params = new StringBuilder(); for (final Parameter p : func.getParameters()) { @@ -311,27 +375,27 @@ private static void insertFunction(final PrintWriter pw, final JavaFunction f escapeHTML(StringUtils.join(func.getExamples(), "\n")), since); } - + private static void insertOnDuplicateKeyUpdate(final PrintWriter pw, final String table, final String fields, final String update, final String... values) { for (int i = 0; i < values.length; i++) values[i] = escapeSQL("" + values[i]); pw.println("INSERT INTO " + table + " (" + fields + ") VALUES ('" + StringUtils.join(values, "','") + "') ON DUPLICATE KEY UPDATE " + update + ";"); } - + private static void replaceInto(final PrintWriter pw, final String table, final String fields, final String... values) { for (int i = 0; i < values.length; i++) values[i] = escapeSQL("" + values[i]); pw.println("REPLACE INTO " + table + " (" + fields + ") VALUES ('" + StringUtils.join(values, "','") + "');"); } - + private static ArrayList validation = new ArrayList<>(); static { validation.add(Pattern.compile("<" + "(?!a href='|/a>|br ?/|/?(i|b|u|code|pre|ul|li|em)>)")); validation.add(Pattern.compile("(?")); } - + private final static String[] urls = {"expressions", "effects", "conditions"}; - + @Nullable private static String validateHTML(@Nullable String html, final String baseURL) { if (html == null) { @@ -377,11 +441,11 @@ private static String validateHTML(@Nullable String html, final String baseURL) } return html; } - + private static String escapeSQL(final String s) { return "" + s.replace("'", "\\'").replace("\"", "\\\""); } - + public static String escapeHTML(final @Nullable String s) { if (s == null) { assert false; @@ -389,5 +453,5 @@ public static String escapeHTML(final @Nullable String s) { } return "" + s.replace("&", "&").replace("<", "<").replace(">", ">").replace("\"", """); } - + } diff --git a/src/main/java/ch/njol/skript/doc/HTMLGenerator.java b/src/main/java/ch/njol/skript/doc/HTMLGenerator.java index 76013b9df13..69f42460397 100644 --- a/src/main/java/ch/njol/skript/doc/HTMLGenerator.java +++ b/src/main/java/ch/njol/skript/doc/HTMLGenerator.java @@ -21,13 +21,10 @@ import java.io.File; import java.io.IOException; import java.nio.charset.StandardCharsets; -import java.util.ArrayList; -import java.util.Collections; -import java.util.Comparator; -import java.util.Iterator; -import java.util.List; -import java.util.regex.Matcher; +import java.text.SimpleDateFormat; +import java.util.*; +import org.apache.commons.lang.StringUtils; import org.eclipse.jdt.annotation.Nullable; import com.google.common.base.Joiner; @@ -45,10 +42,6 @@ import ch.njol.skript.lang.function.JavaFunction; import ch.njol.skript.lang.function.Parameter; import ch.njol.skript.registrations.Classes; -import ch.njol.skript.util.Utils; -import ch.njol.util.Callback; -import ch.njol.util.NonNullPair; -import ch.njol.util.StringUtils; /** * Template engine, primarily used for generating Skript documentation @@ -193,57 +186,75 @@ public int compare(@Nullable JavaFunction o1, @Nullable JavaFunction o2) { } private static final FunctionComparator functionComparator = new FunctionComparator(); - + /** * Generates documentation using template and output directories * given in the constructor. */ public void generate() { - for (File f : template.listFiles()) { - if (f.getName().equals("css")) { // Copy CSS files - File cssTo = new File(output + "/css"); - cssTo.mkdirs(); - for (File css : new File(template + "/css").listFiles()) { - writeFile(new File(cssTo + "/" + css.getName()), readFile(css)); + for (File f : template.listFiles()) { + if (f.getName().matches("css|js|assets")) { // Copy CSS/JS/Assets folders + String slashName = "/" + f.getName(); + File fileTo = new File(output + slashName); + fileTo.mkdirs(); + for (File filesInside : new File(template + slashName).listFiles()) { + if (filesInside.isDirectory()) + continue; + + if (!filesInside.getName().toLowerCase().endsWith(".png")) { // Copy images + writeFile(new File(fileTo + "/" + filesInside.getName()), readFile(filesInside)); + } + + else if (!filesInside.getName().matches("(?i)(.*)\\.(html?|js|css|json)")) { + try { + Files.copy(filesInside, new File(fileTo + "/" + filesInside.getName())); + } catch (IOException e) { + e.printStackTrace(); + } + + } } continue; } else if (f.isDirectory()) // Ignore other directories continue; if (f.getName().endsWith("template.html") || f.getName().endsWith(".md")) continue; // Ignore skeleton and README + Skript.info("Creating documentation for " + f.getName()); - + String content = readFile(f); String page; if (f.getName().endsWith(".html")) page = skeleton.replace("${content}", content); // Content to inside skeleton else // Not HTML, so don't even try to use template.html page = content; - + page = page.replace("${skript.version}", Skript.getVersion().toString()); // Skript version + page = page.replace("${skript.build.date}", new SimpleDateFormat("dd/MM/yyyy").format(new Date())); // Build date page = page.replace("${pagename}", f.getName().replace(".html", "")); - + List replace = Lists.newArrayList(); int include = page.indexOf("${include"); // Single file includes while (include != -1) { int endIncl = page.indexOf("}", include); String name = page.substring(include + 10, endIncl); replace.add(name); - + include = page.indexOf("${include", endIncl); } - + for (String name : replace) { String temp = readFile(new File(template + "/templates/" + name)); + temp = temp.replace("${skript.version}", Skript.getVersion().toString()); page = page.replace("${include " + name + "}", temp); } - + int generate = page.indexOf("${generate"); // Generate expressions etc. while (generate != -1) { int nextBracket = page.indexOf("}", generate); String[] genParams = page.substring(generate + 11, nextBracket).split(" "); - String generated = ""; - + StringBuilder generated = new StringBuilder(); + String descTemp = readFile(new File(template + "/templates/" + genParams[1])); String genType = genParams[0]; if (genType.equals("expressions")) { @@ -253,8 +264,8 @@ public void generate() { assert info != null; if (info.c.getAnnotation(NoDoc.class) != null) continue; - String desc = generateAnnotated(descTemp, info); - generated += desc; + String desc = generateAnnotated(descTemp, info, generated.toString()); + generated.append(desc); } } else if (genType.equals("effects")) { List> effects = new ArrayList<>(Skript.getEffects()); @@ -263,7 +274,7 @@ public void generate() { assert info != null; if (info.c.getAnnotation(NoDoc.class) != null) continue; - generated += generateAnnotated(descTemp, info); + generated.append(generateAnnotated(descTemp, info, generated.toString())); } } else if (genType.equals("conditions")) { List> conditions = new ArrayList<>(Skript.getConditions()); @@ -272,7 +283,7 @@ public void generate() { assert info != null; if (info.c.getAnnotation(NoDoc.class) != null) continue; - generated += generateAnnotated(descTemp, info); + generated.append(generateAnnotated(descTemp, info, generated.toString())); } } else if (genType.equals("events")) { List> events = new ArrayList<>(Skript.getEvents()); @@ -281,7 +292,7 @@ public void generate() { assert info != null; if (info.c.getAnnotation(NoDoc.class) != null) continue; - generated += generateEvent(descTemp, info); + generated.append(generateEvent(descTemp, info, generated.toString())); } } else if (genType.equals("classes")) { List> classes = new ArrayList<>(Classes.getClassInfos()); @@ -290,18 +301,18 @@ public void generate() { if (ClassInfo.NO_DOC.equals(info.getDocName())) continue; assert info != null; - generated += generateClass(descTemp, info); + generated.append(generateClass(descTemp, info, generated.toString())); } } else if (genType.equals("functions")) { List> functions = new ArrayList<>(Functions.getJavaFunctions()); Collections.sort(functions, functionComparator); for (JavaFunction info : functions) { assert info != null; - generated += generateFunction(descTemp, info); + generated.append(generateFunction(descTemp, info)); } } - page = page.replace(page.substring(generate, nextBracket + 1), generated); + page = page.replace(page.substring(generate, nextBracket + 1), generated.toString()); generate = page.indexOf("${generate", nextBracket); } @@ -334,7 +345,11 @@ private static String minifyHtml(String page) { i += Character.charCount(c); } - return sb.toString(); + return replaceBR(sb.toString()); + } + + private static String replaceBR(String page) { // Replaces specifically `
` with `\n` - This is useful in code blocks where you can't use newlines due to the minifyHtml method (Execute after minifyHtml) + return page.replaceAll("
", "\n"); } private static String handleIf(String desc, String start, boolean value) { @@ -361,26 +376,39 @@ private static String handleIf(String desc, String start, boolean value) { * annotations. This means expressions, effects and conditions. * @param descTemp Template for description. * @param info Syntax element info. + * @param page The page's code to check for ID duplications, can be left empty. * @return Generated HTML entry. */ - private String generateAnnotated(String descTemp, SyntaxElementInfo info) { + private String generateAnnotated(String descTemp, SyntaxElementInfo info, @Nullable String page) { Class c = info.c; String desc = ""; - + Name name = c.getAnnotation(Name.class); - desc = descTemp.replace("${element.name}", name == null ? "Unknown Name" : name.value()); + desc = descTemp.replace("${element.name}", getNullOrEmptyDefault(name.value(), "Unknown Name")); + Since since = c.getAnnotation(Since.class); - desc = desc.replace("${element.since}", since == null ? "unknown" : since.value()); + desc = desc.replace("${element.since}", getNullOrEmptyDefault(since.value(), "Unknown")); + Description description = c.getAnnotation(Description.class); - desc = desc.replace("${element.desc}", description == null ? "missing description" : Joiner.on("\n").join(description.value()).replace("\n\n", "

")); - desc = desc.replace("${element.desc-safe}", description == null ? "missing description" : Joiner.on("\n").join(description.value()) + desc = desc.replace("${element.desc}", Joiner.on("\n").join(getNullOrEmptyDefault(description.value(), "Unknown description.")).replace("\n\n", "

")); + desc = desc.replace("${element.desc-safe}", Joiner.on("\n").join(getNullOrEmptyDefault(description.value(), "Unknown description.")) .replace("\\", "\\\\").replace("\"", "\\\"").replace("\t", " ")); + Examples examples = c.getAnnotation(Examples.class); - desc = desc.replace("${element.examples}", examples == null ? "no examples available" : Joiner.on("
").join(examples.value())); - desc = desc.replace("${element.examples-safe}", examples == null ? "no examples available" : Joiner.on("\\n").join(examples.value()) + desc = desc.replace("${element.examples}", Joiner.on("
").join(getNullOrEmptyDefault(examples.value(), "Missing examples."))); + desc = desc.replace("${element.examples-safe}", Joiner.on("\\n").join(getNullOrEmptyDefault(examples.value(), "Missing examples.")) .replace("\\", "\\\\").replace("\"", "\\\"").replace("\t", " ")); - desc = desc.replace("${element.id}", info.c.getSimpleName()); - + + DocumentationId DocID = c.getAnnotation(DocumentationId.class); + String ID = DocID != null ? DocID.value() : info.c.getSimpleName(); + // Fix duplicated IDs + if (page != null) { + if (page.contains("#" + ID + "\"")) { + ID = ID + "-" + (StringUtils.countMatches(page, "#" + ID + "\"") + 1); + } + } + desc = desc.replace("${element.id}", ID); + Events events = c.getAnnotation(Events.class); assert desc != null; desc = handleIf(desc, "${if events}", events != null); @@ -389,7 +417,7 @@ private String generateAnnotated(String descTemp, SyntaxElementInfo info) { String[] eventLinks = new String[eventNames.length]; for (int i = 0; i < eventNames.length; i++) { String eventName = eventNames[i]; - eventLinks[i] = "" + eventName + ""; + eventLinks[i] = "" + eventName + ""; } desc = desc.replace("${element.events}", Joiner.on(", ").join(eventLinks)); } @@ -417,41 +445,54 @@ private String generateAnnotated(String descTemp, SyntaxElementInfo info) { String[] split = data.split(" "); String pattern = readFile(new File(template + "/templates/" + split[1])); //Skript.info("Pattern is " + pattern); - String patterns = ""; - for (String line : info.patterns) { + StringBuilder patterns = new StringBuilder(); + for (String line : getNullOrEmptyDefault(info.patterns, "Missing patterns.")) { assert line != null; line = cleanPatterns(line); String parsed = pattern.replace("${element.pattern}", line); //Skript.info("parsed is " + parsed); - patterns += parsed; + patterns.append(parsed); } String toReplace = "${generate element.patterns " + split[1] + "}"; //Skript.info("toReplace " + toReplace); - desc = desc.replace(toReplace, patterns); - desc = desc.replace("${generate element.patterns-safe " + split[1] + "}", patterns.replace("\\", "\\\\")); + desc = desc.replace(toReplace, patterns.toString()); + desc = desc.replace("${generate element.patterns-safe " + split[1] + "}", patterns.toString().replace("\\", "\\\\")); } - + assert desc != null; return desc; } - private String generateEvent(String descTemp, SkriptEventInfo info) { + private String generateEvent(String descTemp, SkriptEventInfo info, @Nullable String page) { String desc = ""; - String docName = info.getName(); + String docName = getNullOrEmptyDefault(info.getName(), "Unknown Name"); desc = descTemp.replace("${element.name}", docName); - String since = info.getSince(); - desc = desc.replace("${element.since}", since == null ? "unknown" : since); - String[] description = info.getDescription(); - desc = desc.replace("${element.desc}", Joiner.on("\n").join(description == null ? new String[0] : description).replace("\n\n", "

")); - desc = desc.replace("${element.desc-safe}", Joiner.on("\\n").join(description == null ? new String[0] : description) + + String since = getNullOrEmptyDefault(info.getSince(), "Unknown"); + desc = desc.replace("${element.since}", since); + + String[] description = getNullOrEmptyDefault(info.getDescription(), "Missing description."); + desc = desc.replace("${element.desc}", Joiner.on("\n").join(description).replace("\n\n", "

")); + desc = desc + .replace("${element.desc-safe}", Joiner.on("\\n").join(description) .replace("\\", "\\\\").replace("\"", "\\\"").replace("\t", " ")); - String[] examples = info.getExamples(); - desc = desc.replace("${element.examples}", Joiner.on("\n
").join(examples == null ? new String[0] : examples)); - desc = desc.replace("${element.examples-safe}", Joiner.on("\\n").join(examples == null ? new String[0] : examples) + + String[] examples = getNullOrEmptyDefault(info.getExamples(), "Missing examples."); + desc = desc.replace("${element.examples}", Joiner.on("\n
").join(examples)); + desc = desc + .replace("${element.examples-safe}", Joiner.on("\\n").join(examples) .replace("\\", "\\\\").replace("\"", "\\\"").replace("\t", " ")); - desc = desc.replace("${element.id}", info.getId()); + + String ID = info.getDocumentationID() != null ? info.getDocumentationID() : info.getId(); + // Fix duplicated IDs + if (page != null) { + if (page.contains("#" + ID + "\"")) { + ID = ID + "-" + (StringUtils.countMatches(page, "#" + ID + "\"") + 1); + } + } + desc = desc.replace("${element.id}", ID); assert desc != null; desc = handleIf(desc, "${if events}", false); @@ -471,39 +512,51 @@ private String generateEvent(String descTemp, SkriptEventInfo info) { for (String data : toGen) { String[] split = data.split(" "); String pattern = readFile(new File(template + "/templates/" + split[1])); - String patterns = ""; - for (String line : info.patterns) { + StringBuilder patterns = new StringBuilder(); + for (String line : getNullOrEmptyDefault(info.patterns, "Missing patterns.")) { assert line != null; - line = cleanPatterns(line); + line = cleanPatterns(info.getName().startsWith("On ") ? "[on] " + line : line); String parsed = pattern.replace("${element.pattern}", line); - patterns += parsed; + patterns.append(parsed); } - desc = desc.replace("${generate element.patterns " + split[1] + "}", patterns); - desc = desc.replace("${generate element.patterns-safe " + split[1] + "}", patterns.replace("\\", "\\\\")); + desc = desc.replace("${generate element.patterns " + split[1] + "}", patterns.toString()); + desc = desc.replace("${generate element.patterns-safe " + split[1] + "}", patterns.toString().replace("\\", "\\\\")); } - + assert desc != null; return desc; } - private String generateClass(String descTemp, ClassInfo info) { + private String generateClass(String descTemp, ClassInfo info, @Nullable String page) { String desc = ""; - String docName = info.getDocName(); - desc = descTemp.replace("${element.name}", docName == null ? "Unknown Name" : docName); - String since = info.getSince(); - desc = desc.replace("${element.since}", since == null ? "unknown" : since); - String[] description = info.getDescription(); - desc = desc.replace("${element.desc}", Joiner.on("\n").join(description == null ? new String[0] : description).replace("\n\n", "

")); - desc = desc.replace("${element.desc-safe}", Joiner.on("\\n").join(description == null ? new String[0] : description) - .replace("\\", "\\\\").replace("\"", "\\\"").replace("\t", " ")); - String[] examples = info.getExamples(); - desc = desc.replace("${element.examples}", Joiner.on("\n
").join(examples == null ? new String[0] : examples)); - desc = desc.replace("${element.examples-safe}", Joiner.on("\\n").join(examples == null ? new String[0] : examples) + String docName = getNullOrEmptyDefault(info.getDocName(), "Unknown Name"); + desc = descTemp.replace("${element.name}", docName); + + String since = getNullOrEmptyDefault(info.getSince(), "Unknown"); + desc = desc.replace("${element.since}", since); + + String[] description = getNullOrEmptyDefault(info.getDescription(), "Missing description."); + desc = desc.replace("${element.desc}", Joiner.on("\n").join(description).replace("\n\n", "

")); + desc = desc + .replace("${element.desc-safe}", Joiner.on("\\n").join(description) .replace("\\", "\\\\").replace("\"", "\\\"").replace("\t", " ")); - desc = desc.replace("${element.id}", info.getCodeName()); + String[] examples = getNullOrEmptyDefault(info.getExamples(), "Missing examples."); + desc = desc.replace("${element.examples}", Joiner.on("\n
").join(examples)); + desc = desc.replace("${element.examples-safe}", Joiner.on("\\n").join(examples) + .replace("\\", "\\\\").replace("\"", "\\\"").replace("\t", " ")); + + String ID = info.getDocumentationID() != null ? info.getDocumentationID() : info.getCodeName(); + // Fix duplicated IDs + if (page != null) { + if (page.contains("#" + ID + "\"")) { + ID = ID + "-" + (StringUtils.countMatches(page, "#" + ID + "\"") + 1); + } + } + desc = desc.replace("${element.id}", ID); + assert desc != null; desc = handleIf(desc, "${if events}", false); desc = handleIf(desc, "${if required-plugins}", false); @@ -522,19 +575,19 @@ private String generateClass(String descTemp, ClassInfo info) { for (String data : toGen) { String[] split = data.split(" "); String pattern = readFile(new File(template + "/templates/" + split[1])); - String patterns = ""; - String[] lines = info.getUsage(); + StringBuilder patterns = new StringBuilder(); + String[] lines = getNullOrEmptyDefault(info.getUsage(), "Missing patterns."); if (lines == null) continue; for (String line : lines) { assert line != null; - line = cleanPatterns(line); + line = cleanPatterns(line, false); String parsed = pattern.replace("${element.pattern}", line); - patterns += parsed; + patterns.append(parsed); } - desc = desc.replace("${generate element.patterns " + split[1] + "}", patterns); - desc = desc.replace("${generate element.patterns-safe " + split[1] + "}", patterns.replace("\\", "\\\\")); + desc = desc.replace("${generate element.patterns " + split[1] + "}", patterns.toString()); + desc = desc.replace("${generate element.patterns-safe " + split[1] + "}", patterns.toString().replace("\\", "\\\\")); } assert desc != null; @@ -544,18 +597,24 @@ private String generateClass(String descTemp, ClassInfo info) { private String generateFunction(String descTemp, JavaFunction info) { String desc = ""; - String docName = info.getName(); + String docName = getNullOrEmptyDefault(info.getName(), "Unknown Name"); desc = descTemp.replace("${element.name}", docName); - String since = info.getSince(); - desc = desc.replace("${element.since}", since == null ? "unknown" : since); - String[] description = info.getDescription(); - desc = desc.replace("${element.desc}", Joiner.on("\n").join(description == null ? new String[0] : description)); - desc = desc.replace("${element.desc-safe}", Joiner.on("\\n").join(description == null ? new String[0] : description) + + String since = getNullOrEmptyDefault(info.getSince(), "Unknown"); + desc = desc.replace("${element.since}", since); + + String[] description = getNullOrEmptyDefault(info.getDescription(), "Missing description."); + desc = desc.replace("${element.desc}", Joiner.on("\n").join(description)); + desc = desc + .replace("${element.desc-safe}", Joiner.on("\\n").join(description) .replace("\\", "\\\\").replace("\"", "\\\"").replace("\t", " ")); - String[] examples = info.getExamples(); - desc = desc.replace("${element.examples}", Joiner.on("\n
").join(examples == null ? new String[0] : examples)); - desc = desc.replace("${element.examples-safe}", Joiner.on("\\n").join(examples == null ? new String[0] : examples) + + String[] examples = getNullOrEmptyDefault(info.getExamples(), "Missing examples."); + desc = desc.replace("${element.examples}", Joiner.on("\n
").join(examples)); + desc = desc + .replace("${element.examples-safe}", Joiner.on("\\n").join(examples) .replace("\\", "\\\\").replace("\"", "\\\"").replace("\t", " ")); + desc = desc.replace("${element.id}", info.getName()); assert desc != null; @@ -582,7 +641,7 @@ private String generateFunction(String descTemp, JavaFunction info) { for (int i = 0; i < types.length; i++) { types[i] = params[i].toString(); } - String line = docName + "(" + Joiner.on(", ").join(types) + ")"; + String line = docName + "(" + Joiner.on(", ").join(types) + ")"; // Better not have nulls patterns += pattern.replace("${element.pattern}", line); desc = desc.replace("${generate element.patterns " + split[1] + "}", patterns); @@ -611,52 +670,30 @@ private static void writeFile(File f, String data) { } } - static String cleanPatterns(final String patterns) { - final String s = StringUtils.replaceAll("" + - Documentation.escapeHTML(patterns) // escape HTML - .replaceAll("(?<=[\\(\\|])[-0-9]+?¦", "") // remove marks - .replace("()", "") // remove empty mark setting groups (mark¦) - .replaceAll("\\(([^|]+?)\\|\\)", "[$1]") // replace (mark¦x|) groups with [x] - .replaceAll("\\(\\|([^|]+?)\\)", "[$1]") // dito - .replaceAll("\\((.+?)\\|\\)", "[($1)]") // replace (a|b|) with [(a|b)] - .replaceAll("\\(\\|(.+?)\\)", "[($1)]") // dito - , "(?() { // link & fancy types - @Override - public String run(final Matcher m) { - String s = m.group(1); - if (s.startsWith("-")) - s = s.substring(1); - String flag = ""; - if (s.startsWith("*") || s.startsWith("~")) { - flag = s.substring(0, 1); - s = s.substring(1); - } - final int a = s.indexOf("@"); - if (a != -1) - s = s.substring(0, a); - final StringBuilder b = new StringBuilder("%"); - b.append(flag); - boolean first = true; - for (final String c : s.split("/")) { - assert c != null; - if (!first) - b.append("/"); - first = false; - final NonNullPair p = Utils.getEnglishPlural(c); - final ClassInfo ci = Classes.getClassInfoNoError(p.getFirst()); - if (ci != null && ci.getDocName() != null && ci.getDocName() != ClassInfo.NO_DOC) { - b.append("").append(ci.getName().toString(p.getSecond())).append(""); - } else { - b.append(c); - if (ci != null && ci.getDocName() != ClassInfo.NO_DOC) - Skript.warning("Used class " + p.getFirst() + " has no docName/name defined"); - } - } - return "" + b.append("%").toString(); - } - }); - assert s != null : patterns; - return s; + private static String cleanPatterns(final String patterns) { + return Documentation.cleanPatterns(patterns); } + + private static String cleanPatterns(final String patterns, boolean escapeHTML) { + if (escapeHTML) + return Documentation.cleanPatterns(patterns); + else + return Documentation.cleanPatterns(patterns, false); + } + + /** + * Checks if a string is empty or null then it will return the message provided + * + * @param string the String to check + * @param message the String to return if either condition is true + */ + public String getNullOrEmptyDefault(@Nullable String string, String message) { + return (string == null || string.isEmpty()) ? message : string; // Null check first otherwise NullPointerException is thrown + } + + public String[] getNullOrEmptyDefault(@Nullable String[] string, String message) { + return (string == null || string.length == 0 || string[0].equals("")) ? new String[]{ message } : string; // Null check first otherwise NullPointerException is thrown + } + } diff --git a/src/main/java/ch/njol/skript/effects/EffCancelCooldown.java b/src/main/java/ch/njol/skript/effects/EffCancelCooldown.java index c5e1be91cd9..b45319061b4 100644 --- a/src/main/java/ch/njol/skript/effects/EffCancelCooldown.java +++ b/src/main/java/ch/njol/skript/effects/EffCancelCooldown.java @@ -36,7 +36,7 @@ @Name("Cancel Command Cooldown") @Description({"Only usable in commands. Makes it so the current command usage isn't counted towards the cooldown."}) @Examples({ - "command /nick :", + "command /nick <text>:", "\texecutable by: players", "\tcooldown: 10 seconds", "\ttrigger:", diff --git a/src/main/java/ch/njol/skript/effects/EffChange.java b/src/main/java/ch/njol/skript/effects/EffChange.java index b896e9ac9a1..793dcf1d80d 100644 --- a/src/main/java/ch/njol/skript/effects/EffChange.java +++ b/src/main/java/ch/njol/skript/effects/EffChange.java @@ -54,7 +54,7 @@ @Name("Change: Set/Add/Remove/Delete/Reset") @Description("A very general effect that can change many expressions. Many expressions can only be set and/or deleted, while some can have things added to or removed from them.") @Examples({"# set:", - "Set the player's display name to \"%name of player%\"", + "Set the player's display name to \"<red>%name of player%\"", "set the block above the victim to lava", "# add:", "add 2 to the player's health # preferably use 'heal' for this", diff --git a/src/main/java/ch/njol/skript/events/EvtChat.java b/src/main/java/ch/njol/skript/events/EvtChat.java index 5e6e24d154e..ebcd75e400b 100644 --- a/src/main/java/ch/njol/skript/events/EvtChat.java +++ b/src/main/java/ch/njol/skript/events/EvtChat.java @@ -50,11 +50,11 @@ public class EvtChat extends SelfRegisteringSkriptEvent { .description("Called whenever a player chats. Use chat format to change message format, use chat recipients to edit chat recipients.") .examples("on chat:", " if player has permission \"owner\":", - " set chat format to \"[player]: [message]\"", + " set chat format to \"<red>[player]<light gray>: <light red>[message]\"", " else if player has permission \"admin\":", - " set chat format to \"[player]: [message]\"", + " set chat format to \"<light red>[player]<light gray>: <orange>[message]\"", " else: #default message format", - " set chat format to \"[player]: [message]\"") + " set chat format to \"<orange>[player]<light gray>: <white>[message]\"") .since("1.4.1"); } diff --git a/src/main/java/ch/njol/skript/events/SimpleEvents.java b/src/main/java/ch/njol/skript/events/SimpleEvents.java index 532f77823e6..a0eec608774 100644 --- a/src/main/java/ch/njol/skript/events/SimpleEvents.java +++ b/src/main/java/ch/njol/skript/events/SimpleEvents.java @@ -324,7 +324,7 @@ public class SimpleEvents { .description("Called when a player starts or stops sneaking. Use is sneaking to get whether the player was sneaking before the event was called.") .examples("# make players that stop sneaking jump", "on sneak toggle:", - " player was sneaking", + " player is sneaking", " push the player upwards at speed 0.5") .since("1.0"); Skript.registerEvent("Sprint Toggle", SimpleEvent.class, PlayerToggleSprintEvent.class, "[player] toggl(e|ing) sprint", "[player] sprint toggl(e|ing)") @@ -366,7 +366,7 @@ public class SimpleEvents { .description("As signs are placed empty, this event is called when a player is done editing a sign.") .examples("on sign change:", " line 2 is empty", - " set line 1 to \"%line 1%\"") + " set line 1 to \"<red>%line 1%\"") .since("1.0"); Skript.registerEvent("Spawn Change", SimpleEvent.class, SpawnChangeEvent.class, "[world] spawn change") .description("Called when the spawn point of a world changes.") diff --git a/src/main/java/ch/njol/skript/expressions/ExprAmount.java b/src/main/java/ch/njol/skript/expressions/ExprAmount.java index 293247283f8..ec887869b6a 100644 --- a/src/main/java/ch/njol/skript/expressions/ExprAmount.java +++ b/src/main/java/ch/njol/skript/expressions/ExprAmount.java @@ -46,13 +46,17 @@ "Please note that amount of %items% will not return the number of items, but the number of stacks, e.g. 1 for a stack of 64 torches. To get the amount of items in a stack, see the item amount expression.", "", "Also, you can get the recursive size of a list, which will return the recursive size of the list with sublists included, e.g.", - "{list::*} Structure", - " ├──── {list::1}: 1", - " ├──── {list::2}: 2", - " │ ├──── {list::2::1}: 3", - " │ │ └──── {list::2::1::1}: 4", - " │ └──── {list::2::2}: 5", - " └──── {list::3}: 6", + "", + "

",
+		"{list::*} Structure
", + " ├──── {list::1}: 1
", + " ├──── {list::2}: 2
", + " │ ├──── {list::2::1}: 3
", + " │ │ └──── {list::2::1::1}: 4
", + " │ └──── {list::2::2}: 5
", + " └──── {list::3}: 6", + "
", + "", "Where using %size of {list::*}% will only return 3 (the first layer of indices only), while %recursive size of {list::*}% will return 6 (the entire list)", "Please note that getting a list's recursive size can cause lag if the list is large, so only use this expression if you need to!"}) @Examples({"message \"There are %number of all players% players online!\""}) diff --git a/src/main/java/ch/njol/skript/expressions/ExprChatFormat.java b/src/main/java/ch/njol/skript/expressions/ExprChatFormat.java index 59292a0e58e..dd1400e4895 100644 --- a/src/main/java/ch/njol/skript/expressions/ExprChatFormat.java +++ b/src/main/java/ch/njol/skript/expressions/ExprChatFormat.java @@ -38,7 +38,7 @@ @Name("Chat Format") @Description("Can be used to get/retrieve the chat format. The sender of a message is " + "represented by [player] or [sender], and the message by [message] or [msg].") -@Examples({"set the chat format to \"[player]: [message]\""}) +@Examples({"set the chat format to \"<yellow>[player]<light gray>: <green>[message]\""}) @Since("2.2-dev31") public class ExprChatFormat extends SimpleExpression{ static { diff --git a/src/main/java/ch/njol/skript/expressions/ExprHash.java b/src/main/java/ch/njol/skript/expressions/ExprHash.java index f2890129834..b3177846117 100644 --- a/src/main/java/ch/njol/skript/expressions/ExprHash.java +++ b/src/main/java/ch/njol/skript/expressions/ExprHash.java @@ -45,10 +45,10 @@ "When hashing data, you must specify algorithms that will be used for security reasons! ", "

Please note that a hash cannot be reversed under normal circumstanses. You will not be able to get original value from a hash with Skript."}) @Examples({ - "command /setpass :", + "command /setpass <text>:", "\ttrigger:", "\t\tset {password::%uuid of player%} to text-argument hashed with SHA-256", - "command /login :", + "command /login <text>:", "\ttrigger:", "\t\tif text-argument hashed with SHA-256 is {password::%uuid of player%}:", "\t\t\tmessage \"Login successful.\"", diff --git a/src/main/java/ch/njol/skript/expressions/ExprHiddenPlayers.java b/src/main/java/ch/njol/skript/expressions/ExprHiddenPlayers.java index fc9633602a3..029e1c4bc9b 100644 --- a/src/main/java/ch/njol/skript/expressions/ExprHiddenPlayers.java +++ b/src/main/java/ch/njol/skript/expressions/ExprHiddenPlayers.java @@ -36,7 +36,7 @@ @Name("Hidden Players") @Description({"The players hidden from a player that were hidden using the player visibility effect."}) -@Examples({"message \"You are currently hiding: %hidden players of the player%\""}) +@Examples({"message \"<light red>You are currently hiding: <light gray>%hidden players of the player%\""}) @Since("2.3") public class ExprHiddenPlayers extends SimpleExpression { diff --git a/src/main/java/ch/njol/skript/expressions/ExprHoverList.java b/src/main/java/ch/njol/skript/expressions/ExprHoverList.java index 9c4c67ac6d0..afafbcb33c7 100644 --- a/src/main/java/ch/njol/skript/expressions/ExprHoverList.java +++ b/src/main/java/ch/njol/skript/expressions/ExprHoverList.java @@ -52,9 +52,9 @@ "in the server and the hover list is set to 3 values, Minecraft will show \"... and 2 more ...\" at end of the list."}) @Examples({"on server list ping:", "\tclear the hover list", - "\tadd \"Welcome to the Minecraft server!\" to the hover list", + "\tadd \"&aWelcome to the &6Minecraft &aserver!\" to the hover list", "\tadd \"\" to the hover list # A blank line", - "\tadd \"There are %online players count% online players!\" to the hover list"}) + "\tadd \"&cThere are &6%online players count% &conline players!\" to the hover list"}) @Since("2.3") @RequiredPlugins("Paper 1.12.2 or newer") @Events("server list ping") diff --git a/src/main/java/ch/njol/skript/expressions/ExprInventoryInfo.java b/src/main/java/ch/njol/skript/expressions/ExprInventoryInfo.java index 7f2b1c19917..950e9b736f3 100644 --- a/src/main/java/ch/njol/skript/expressions/ExprInventoryInfo.java +++ b/src/main/java/ch/njol/skript/expressions/ExprInventoryInfo.java @@ -39,7 +39,9 @@ import ch.njol.util.Kleenean; @Name("Inventory Holder/Viewers/Rows/Slots") -@Description("Gets the amount of rows/slots, viewers and holder of an inventory.") +@Description("Gets the amount of rows/slots, viewers and holder of an inventory." + + "" + + "NOTE: 'Viewers' expression returns a list of players viewing the inventory. Note that a player is considered to be viewing their own inventory and internal crafting screen even when said inventory is not open.") @Examples({"event-inventory's amount of rows", "holder of player's top inventory", "{_inventory}'s viewers"}) diff --git a/src/main/java/ch/njol/skript/expressions/ExprLore.java b/src/main/java/ch/njol/skript/expressions/ExprLore.java index beb8b62e5ab..9c2d9331b71 100644 --- a/src/main/java/ch/njol/skript/expressions/ExprLore.java +++ b/src/main/java/ch/njol/skript/expressions/ExprLore.java @@ -57,7 +57,7 @@ */ @Name("Lore") @Description("An item's lore.") -@Examples("set the 1st line of the item's lore to \"Excalibur 2.0\"") +@Examples("set the 1st line of the item's lore to \"<orange>Excalibur 2.0\"") @Since("2.1") public class ExprLore extends SimpleExpression { diff --git a/src/main/java/ch/njol/skript/expressions/ExprMessage.java b/src/main/java/ch/njol/skript/expressions/ExprMessage.java index afca7df9ee6..9074e018e72 100644 --- a/src/main/java/ch/njol/skript/expressions/ExprMessage.java +++ b/src/main/java/ch/njol/skript/expressions/ExprMessage.java @@ -52,7 +52,7 @@ @Description("The (chat) message of a chat event, the join message of a join event, the quit message of a quit event, or the death message on a death event. This expression is mostly useful for being changed.") @Examples({"on chat:", " player has permission \"admin\"", - " set message to \"%message%\"", + " set message to \"&c%message%\"", "", "on first join:", " set join message to \"Welcome %player% to our awesome server!\"", diff --git a/src/main/java/ch/njol/skript/expressions/ExprName.java b/src/main/java/ch/njol/skript/expressions/ExprName.java index fc5466c07fd..c0c26f40e8c 100644 --- a/src/main/java/ch/njol/skript/expressions/ExprName.java +++ b/src/main/java/ch/njol/skript/expressions/ExprName.java @@ -95,8 +95,8 @@ ""}) @Examples({"on join:", " player has permission \"name.red\"", - " set the player's display name to \"[admin] %name of player%\"", - " set the player's tab list name to \"%player's name%\"", + " set the player's display name to \"<red>[admin] <gold>%name of player%\"", + " set the player's tab list name to \"<green>%player's name%\"", "set the name of the player's tool to \"Legendary Sword of Awesomeness\""}) @Since("before 2.1, 2.2-dev20 (inventory name), 2.4 (non-living entity support, changeable inventory name)") public class ExprName extends SimplePropertyExpression { diff --git a/src/main/java/ch/njol/skript/expressions/ExprNamed.java b/src/main/java/ch/njol/skript/expressions/ExprNamed.java index 6a85c5c08fe..c01724bb7f2 100644 --- a/src/main/java/ch/njol/skript/expressions/ExprNamed.java +++ b/src/main/java/ch/njol/skript/expressions/ExprNamed.java @@ -45,9 +45,9 @@ @Name("Named Item/Inventory") @Description("Directly names an item/inventory, useful for defining a named item/inventory in a script. " + "If you want to (re)name existing items/inventories you can either use this expression or use set name of <item/inventory> to <text>.") -@Examples({"give a diamond sword of sharpness 100 named \"Excalibur\" to the player", - "set tool of player to the player's tool named \"Wand\"", - "set the name of the player's tool to \"Wand\"", +@Examples({"give a diamond sword of sharpness 100 named \"<gold>Excalibur\" to the player", + "set tool of player to the player's tool named \"<gold>Wand\"", + "set the name of the player's tool to \"<gold>Wand\"", "open hopper inventory named \"Magic Hopper\" to player"}) @Since("2.0, 2.2-dev34 (inventories)") public class ExprNamed extends PropertyExpression { diff --git a/src/main/java/ch/njol/skript/expressions/ExprNumberOfCharacters.java b/src/main/java/ch/njol/skript/expressions/ExprNumberOfCharacters.java index 0caf3eaa885..046d966bd92 100644 --- a/src/main/java/ch/njol/skript/expressions/ExprNumberOfCharacters.java +++ b/src/main/java/ch/njol/skript/expressions/ExprNumberOfCharacters.java @@ -38,7 +38,7 @@ "on chat:", "\tif number of uppercase chars in message / length of message > 0.5", "\t\tcancel event", - "\t\tsend \"Your message has to many caps!\" to player"}) + "\t\tsend \"<red>Your message has to many caps!\" to player"}) @Since("2.5") public class ExprNumberOfCharacters extends SimpleExpression { diff --git a/src/main/java/ch/njol/skript/expressions/ExprParseError.java b/src/main/java/ch/njol/skript/expressions/ExprParseError.java index d028483b7b9..e34d6953db9 100644 --- a/src/main/java/ch/njol/skript/expressions/ExprParseError.java +++ b/src/main/java/ch/njol/skript/expressions/ExprParseError.java @@ -40,9 +40,9 @@ @Examples({"set {var} to line 1 parsed as integer", "if {var} is not set:", " parse error is set:", - " message \"Line 1 is invalid: %last parse error%\"", + " message \"<red>Line 1 is invalid: %last parse error%\"", " else:", - " message \"Please put an integer on line 1!\""}) + " message \"<red>Please put an integer on line 1!\""}) @Since("2.0") public class ExprParseError extends SimpleExpression { static { diff --git a/src/main/java/ch/njol/skript/expressions/ExprProtocolVersion.java b/src/main/java/ch/njol/skript/expressions/ExprProtocolVersion.java index c858a76ef12..7689e55a4d9 100644 --- a/src/main/java/ch/njol/skript/expressions/ExprProtocolVersion.java +++ b/src/main/java/ch/njol/skript/expressions/ExprProtocolVersion.java @@ -51,7 +51,7 @@ "This can be set in a server list ping event only", "(increase and decrease effects cannot be used because that wouldn't make sense).",}) @Examples({"on server list ping:", - "\tset the version string to \"Version: %minecraft version%\"", + "\tset the version string to \"<light green>Version: <orange>%minecraft version%\"", "\tset the protocol version to 0 # 13w41a (1.7) - so the player will see the custom version string almost always"}) @Since("2.3") @RequiredPlugins("Paper 1.12.2 or newer") diff --git a/src/main/java/ch/njol/skript/expressions/ExprTargetedBlock.java b/src/main/java/ch/njol/skript/expressions/ExprTargetedBlock.java index d8709a8686a..58a1091577f 100644 --- a/src/main/java/ch/njol/skript/expressions/ExprTargetedBlock.java +++ b/src/main/java/ch/njol/skript/expressions/ExprTargetedBlock.java @@ -48,7 +48,7 @@ @Name("Targeted Block") @Description("The block at the crosshair. This regards all blocks that are not air as fully solid, e.g. torches will be like a solid stone block for this expression.") @Examples({"# A command to set the block a player looks at to a specific type:", - "command /setblock :", + "command /setblock <material>:", "\ttrigger:", "\t\tset targeted block to argument"}) @Since("1.0") diff --git a/src/main/java/ch/njol/skript/expressions/ExprVersionString.java b/src/main/java/ch/njol/skript/expressions/ExprVersionString.java index 818968fae2e..85d050ab2fd 100644 --- a/src/main/java/ch/njol/skript/expressions/ExprVersionString.java +++ b/src/main/java/ch/njol/skript/expressions/ExprVersionString.java @@ -44,7 +44,7 @@ "This can only be set in a server list ping event."}) @Examples({"on server list ping:", " set the protocol version to 0 # 13w41a (1.7), so it will show the version string always", - " set the version string to \"Version: %minecraft version%\""}) + " set the version string to \"<light green>Version: <orange>%minecraft version%\""}) @Since("2.3") @RequiredPlugins("Paper 1.12.2 or newer") @Events("server list ping") diff --git a/src/main/java/ch/njol/skript/hooks/chat/expressions/ExprPrefixSuffix.java b/src/main/java/ch/njol/skript/hooks/chat/expressions/ExprPrefixSuffix.java index 30375363d8c..b36fa02718e 100644 --- a/src/main/java/ch/njol/skript/hooks/chat/expressions/ExprPrefixSuffix.java +++ b/src/main/java/ch/njol/skript/hooks/chat/expressions/ExprPrefixSuffix.java @@ -42,7 +42,7 @@ @Examples({"on chat:", " cancel event", " broadcast \"%player's prefix%%player's display name%%player's suffix%: %message%\" to the player's world", - "set the player's prefix to \"[Admin] \""}) + "set the player's prefix to \"[<red>Admin] \""}) @Since("2.0") public class ExprPrefixSuffix extends SimplePropertyExpression { static { diff --git a/src/main/java/ch/njol/skript/hooks/permission/expressions/ExprAllGroups.java b/src/main/java/ch/njol/skript/hooks/permission/expressions/ExprAllGroups.java index ee8cec5e80b..b653678d540 100644 --- a/src/main/java/ch/njol/skript/hooks/permission/expressions/ExprAllGroups.java +++ b/src/main/java/ch/njol/skript/hooks/permission/expressions/ExprAllGroups.java @@ -35,7 +35,7 @@ @Name("All Groups") @Description("All the groups a player can have. This expression requires Vault and a compatible permissions plugin to be installed.") -@Examples({"command /group :", +@Examples({"command /group <text>:", "\ttrigger:", "\t\tif argument is \"list\":", "\t\t\tsend \"%all groups%\""}) diff --git a/src/main/java/ch/njol/skript/hooks/regions/conditions/CondCanBuild.java b/src/main/java/ch/njol/skript/hooks/regions/conditions/CondCanBuild.java index 09ea90cf180..45bfcea47c8 100644 --- a/src/main/java/ch/njol/skript/hooks/regions/conditions/CondCanBuild.java +++ b/src/main/java/ch/njol/skript/hooks/regions/conditions/CondCanBuild.java @@ -42,7 +42,7 @@ @Name("Can Build") @Description({"Tests whether a player is allowed to build at a certain location.", "This condition requires a supported regions plugin to be installed."}) -@Examples({"command /setblock :", +@Examples({"command /setblock <material>:", " description: set the block at your crosshair to a different type", " trigger:", " player cannot build at the targeted block:", diff --git a/src/main/java/ch/njol/skript/hooks/regions/expressions/ExprRegionsAt.java b/src/main/java/ch/njol/skript/hooks/regions/expressions/ExprRegionsAt.java index 0ad4a811f5e..c3a44e010e9 100644 --- a/src/main/java/ch/njol/skript/hooks/regions/expressions/ExprRegionsAt.java +++ b/src/main/java/ch/njol/skript/hooks/regions/expressions/ExprRegionsAt.java @@ -50,7 +50,7 @@ " if {_regions::*} is empty:", " message \"No regions exist at this sign.\"", " else:", - " message \"Regions containing this sign: %{_regions::*}%.\""}) + " message \"Regions containing this sign: <gold>%{_regions::*}%.\""}) @Since("2.1") public class ExprRegionsAt extends SimpleExpression { static {