tiddlywiki 5.3.7 → 5.4.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1823) hide show
  1. package/.claude/settings.json +34 -0
  2. package/.claude/settings.local.json +21 -0
  3. package/.gitattributes +4 -0
  4. package/.github/ISSUE_TEMPLATE/bug_report.md +62 -0
  5. package/.github/ISSUE_TEMPLATE/feature_request.md +8 -2
  6. package/.github/workflows/ci.yml +8 -8
  7. package/.github/workflows/eslint.yml +40 -0
  8. package/.github/workflows/pr-check-build-size.yml +4 -4
  9. package/.github/workflows/pr-comment-build-size.yml +1 -1
  10. package/.github/workflows/pr-validation.yml +37 -0
  11. package/bin/build-site.sh +1 -24
  12. package/bin/build-tw-org.sh +1 -1
  13. package/bin/optimise-svgs.js +32 -32
  14. package/boot/boot.js +112 -96
  15. package/boot/bootprefix.js +4 -0
  16. package/community/docs/Community Cards Caveats.tid +5 -0
  17. package/community/docs/Community Cards.tid +11 -0
  18. package/community/docs/Displaying Community Cards.tid +26 -0
  19. package/community/docs/Submitting a Community Card.tid +36 -0
  20. package/community/people/Arlen22.tid +10 -0
  21. package/community/people/ChristianByron.tid +14 -0
  22. package/community/people/EricShulman.tid +29 -0
  23. package/community/people/Jermolene.tid +21 -0
  24. package/community/people/LinOnetwo.tid +19 -0
  25. package/community/people/MotovunJack.tid +11 -0
  26. package/community/people/PMario.tid +25 -0
  27. package/community/people/SaqImtiaz.tid +16 -0
  28. package/community/people/kjharcombe.tid +7 -0
  29. package/community/project/TiddlyWiki People.tid +10 -0
  30. package/community/project/TiddlyWiki Project.tid +10 -0
  31. package/community/project/Vacant Positions.tid +4 -0
  32. package/community/project/teams/Core Team.tid +8 -0
  33. package/community/project/teams/Developer Experience Team.tid +19 -0
  34. package/community/project/teams/Infrastructure Team.tid +16 -0
  35. package/community/project/teams/MultiWikiServer Team.tid +8 -0
  36. package/community/project/teams/Project Team.tid +15 -0
  37. package/community/project/teams/Quality Assurance Team.tid +11 -0
  38. package/community/project/teams/Succession Team.tid +13 -0
  39. package/community/project/teams/TiddlyWiki Newsletter Team.tid +15 -0
  40. package/community/project/teams/tagCommunityTeam.tid +5 -0
  41. package/community/readme.md +3 -0
  42. package/community/tools/cards/DefaultColourMappings.multids +15 -0
  43. package/community/tools/cards/Procedures.tid +168 -0
  44. package/community/tools/cards/Styles.tid +158 -0
  45. package/community/tools/cards/ViewTemplateBodyCascade.tid +6 -0
  46. package/community/tools/cards/ViewTemplateBodyTemplatePerson.tid +3 -0
  47. package/community/tools/cards/ViewTemplateBodyTemplateTeam.tid +3 -0
  48. package/community/tools/icons/person.tid +7 -0
  49. package/community/tools/icons/project-team.tid +7 -0
  50. package/community/tools/icons/team.tid +9 -0
  51. package/contributing.md +1 -1
  52. package/core/acknowledgements.tid +2 -1
  53. package/core/language/en-GB/ControlPanel.multids +2 -1
  54. package/core/language/en-GB/Draft.multids +4 -0
  55. package/core/language/en-GB/Import.multids +2 -0
  56. package/core/language/en-GB/Misc.multids +1 -0
  57. package/core/language/en-GB/TiddlerInfo.multids +5 -0
  58. package/core/modules/background-actions.js +116 -0
  59. package/core/modules/editor/engines/framed.js +4 -4
  60. package/core/modules/editor/engines/simple.js +2 -1
  61. package/core/modules/editor/factory.js +11 -11
  62. package/core/modules/editor/operations/text/excise.js +1 -1
  63. package/core/modules/editor/operations/text/wrap-lines.js +1 -1
  64. package/core/modules/editor/operations/text/wrap-selection.js +1 -1
  65. package/core/modules/filter-tracker.js +106 -0
  66. package/core/modules/filterrunprefixes/cascade.js +2 -2
  67. package/core/modules/filterrunprefixes/filter.js +2 -2
  68. package/core/modules/filterrunprefixes/let.js +39 -0
  69. package/core/modules/filterrunprefixes/map.js +3 -3
  70. package/core/modules/filterrunprefixes/reduce.js +2 -2
  71. package/core/modules/filterrunprefixes/sort.js +3 -3
  72. package/core/modules/filters/compare.js +1 -1
  73. package/core/modules/filters/deserialize.js +1 -1
  74. package/core/modules/filters/each.js +2 -2
  75. package/core/modules/filters/field.js +1 -1
  76. package/core/modules/filters/fields.js +1 -1
  77. package/core/modules/filters/filter.js +1 -1
  78. package/core/modules/filters/format/json.js +2 -6
  79. package/core/modules/filters/format/timestamp.js +1 -1
  80. package/core/modules/filters/function.js +2 -2
  81. package/core/modules/filters/getindex.js +1 -1
  82. package/core/modules/filters/json-ops.js +71 -21
  83. package/core/modules/filters/lookup.js +1 -1
  84. package/core/modules/filters/math.js +29 -25
  85. package/core/modules/filters/range.js +4 -4
  86. package/core/modules/filters/removesuffix.js +1 -1
  87. package/core/modules/filters/strings.js +26 -80
  88. package/core/modules/filters/suffix.js +1 -1
  89. package/core/modules/filters/title.js +3 -2
  90. package/core/modules/filters/unknown.js +2 -2
  91. package/core/modules/filters/variables.js +1 -1
  92. package/core/modules/filters/x-listops.js +168 -168
  93. package/core/modules/filters.js +92 -45
  94. package/core/modules/indexers/back-indexer.js +8 -8
  95. package/core/modules/indexers/field-indexer.js +3 -3
  96. package/core/modules/info/dimensions.js +86 -0
  97. package/core/modules/info/mediaquerytracker.js +67 -0
  98. package/core/modules/info/platform.js +0 -7
  99. package/core/modules/keyboard.js +15 -16
  100. package/core/modules/macros/csvtiddlers.js +8 -9
  101. package/core/modules/macros/displayshortcuts.js +2 -2
  102. package/core/modules/parsers/audioparser.js +18 -8
  103. package/core/modules/parsers/binaryparser.js +1 -1
  104. package/core/modules/parsers/csvparser.js +8 -4
  105. package/core/modules/parsers/imageparser.js +6 -7
  106. package/core/modules/parsers/parseutils.js +274 -57
  107. package/core/modules/parsers/pdfparser.js +4 -5
  108. package/core/modules/parsers/videoparser.js +7 -8
  109. package/core/modules/parsers/wikiparser/rules/codeblock.js +5 -5
  110. package/core/modules/parsers/wikiparser/rules/commentblock.js +12 -3
  111. package/core/modules/parsers/wikiparser/rules/commentinline.js +9 -2
  112. package/core/modules/parsers/wikiparser/rules/conditional.js +1 -1
  113. package/core/modules/parsers/wikiparser/rules/emphasis/strikethrough.js +1 -1
  114. package/core/modules/parsers/wikiparser/rules/entity.js +0 -2
  115. package/core/modules/parsers/wikiparser/rules/extlink.js +2 -2
  116. package/core/modules/parsers/wikiparser/rules/fnprocdef.js +4 -4
  117. package/core/modules/parsers/wikiparser/rules/hardlinebreaks.js +3 -1
  118. package/core/modules/parsers/wikiparser/rules/html.js +10 -10
  119. package/core/modules/parsers/wikiparser/rules/image.js +1 -1
  120. package/core/modules/parsers/wikiparser/rules/import.js +0 -1
  121. package/core/modules/parsers/wikiparser/rules/list.js +1 -0
  122. package/core/modules/parsers/wikiparser/rules/macrocallblock.js +1 -1
  123. package/core/modules/parsers/wikiparser/rules/macrocallinline.js +2 -0
  124. package/core/modules/parsers/wikiparser/rules/macrodef.js +5 -3
  125. package/core/modules/parsers/wikiparser/rules/mvvdisplayinline.js +95 -0
  126. package/core/modules/parsers/wikiparser/rules/parsermode.js +8 -2
  127. package/core/modules/parsers/wikiparser/rules/prettyextlink.js +3 -1
  128. package/core/modules/parsers/wikiparser/rules/prettylink.js +1 -1
  129. package/core/modules/parsers/wikiparser/rules/rules.js +9 -2
  130. package/core/modules/parsers/wikiparser/rules/styleblock.js +4 -1
  131. package/core/modules/parsers/wikiparser/rules/styleinline.js +1 -1
  132. package/core/modules/parsers/wikiparser/rules/table.js +2 -2
  133. package/core/modules/parsers/wikiparser/rules/transcludeblock.js +5 -5
  134. package/core/modules/parsers/wikiparser/rules/transcludeinline.js +4 -4
  135. package/core/modules/parsers/wikiparser/rules/typedblock.js +24 -11
  136. package/core/modules/parsers/wikiparser/wikiparser.js +12 -12
  137. package/core/modules/pluginswitcher.js +4 -5
  138. package/core/modules/relinkers/tiddlers.js +54 -0
  139. package/core/modules/saver-handler.js +4 -4
  140. package/core/modules/savers/andtidwiki.js +6 -6
  141. package/core/modules/savers/custom.js +1 -1
  142. package/core/modules/savers/download.js +3 -1
  143. package/core/modules/savers/gitea.js +1 -2
  144. package/core/modules/savers/github.js +1 -3
  145. package/core/modules/savers/gitlab.js +3 -5
  146. package/core/modules/savers/postmessage.js +62 -0
  147. package/core/modules/savers/put.js +1 -1
  148. package/core/modules/savers/upload.js +1 -2
  149. package/core/modules/startup/browser-messaging.js +1 -1
  150. package/core/modules/startup/eventbus.js +46 -0
  151. package/core/modules/startup/favicon.js +10 -8
  152. package/core/modules/startup/info.js +10 -4
  153. package/core/modules/startup/load-modules.js +29 -1
  154. package/core/modules/startup/plugins.js +0 -1
  155. package/core/modules/startup/render.js +8 -3
  156. package/core/modules/startup/rootwidget.js +1 -1
  157. package/core/modules/startup/startup.js +1 -16
  158. package/core/modules/startup/windows.js +6 -4
  159. package/core/modules/storyviews/classic.js +5 -8
  160. package/core/modules/storyviews/pop.js +7 -11
  161. package/core/modules/storyviews/zoomin.js +17 -11
  162. package/core/modules/syncer.js +7 -7
  163. package/core/modules/upgraders/plugins.js +1 -2
  164. package/core/modules/upgraders/system.js +1 -2
  165. package/core/modules/upgraders/themetweaks.js +1 -2
  166. package/core/modules/utils/base64.js +31 -0
  167. package/core/modules/utils/csv.js +22 -22
  168. package/core/modules/utils/deprecated.js +58 -0
  169. package/core/modules/utils/diff-match-patch/diff_match_patch.js +2 -53
  170. package/core/modules/utils/diff-match-patch/diff_match_patch_uncompressed.js +826 -1615
  171. package/core/modules/utils/dom/browser.js +36 -22
  172. package/core/modules/utils/dom/dom.js +5 -54
  173. package/core/modules/utils/dom/dragndrop.js +5 -6
  174. package/core/modules/utils/dom/http.js +8 -9
  175. package/core/modules/utils/dom/keyboard.js +1 -1
  176. package/core/modules/utils/dom/modal.js +9 -10
  177. package/core/modules/utils/dom/notifier.js +0 -2
  178. package/core/modules/utils/dom/popup.js +6 -6
  179. package/core/modules/utils/dom/scroller.js +2 -2
  180. package/core/modules/utils/errors.js +1 -0
  181. package/core/modules/utils/escapecss.js +2 -88
  182. package/core/modules/utils/fakedom.js +4 -4
  183. package/core/modules/utils/linked-list.js +1 -1
  184. package/core/modules/utils/logger.js +1 -1
  185. package/core/modules/utils/messaging.js +121 -0
  186. package/core/modules/utils/parsetree.js +16 -0
  187. package/core/modules/utils/performance.js +3 -3
  188. package/core/modules/utils/pluginmaker.js +5 -5
  189. package/core/modules/utils/transliterate.js +2 -2
  190. package/core/modules/utils/utils.js +137 -158
  191. package/core/modules/widgets/action-confirm.js +1 -1
  192. package/core/modules/widgets/action-createtiddler.js +4 -4
  193. package/core/modules/widgets/action-listops.js +2 -4
  194. package/core/modules/widgets/action-log.js +17 -9
  195. package/core/modules/widgets/audio.js +101 -0
  196. package/core/modules/widgets/browse.js +1 -1
  197. package/core/modules/widgets/button.js +23 -11
  198. package/core/modules/widgets/checkbox.js +3 -3
  199. package/core/modules/widgets/data.js +1 -1
  200. package/core/modules/widgets/diff-text.js +27 -10
  201. package/core/modules/widgets/draggable.js +3 -3
  202. package/core/modules/widgets/droppable.js +3 -4
  203. package/core/modules/widgets/dropzone.js +21 -22
  204. package/core/modules/widgets/edit-binary.js +2 -3
  205. package/core/modules/widgets/edit-bitmap.js +0 -1
  206. package/core/modules/widgets/element.js +3 -1
  207. package/core/modules/widgets/eventcatcher.js +239 -80
  208. package/core/modules/widgets/fields.js +5 -5
  209. package/core/modules/widgets/genesis.js +1 -1
  210. package/core/modules/widgets/image.js +33 -9
  211. package/core/modules/widgets/importvariables.js +4 -3
  212. package/core/modules/widgets/jsontiddler.js +0 -1
  213. package/core/modules/widgets/keyboard.js +8 -9
  214. package/core/modules/widgets/let.js +6 -5
  215. package/core/modules/widgets/link.js +27 -13
  216. package/core/modules/widgets/linkcatcher.js +3 -3
  217. package/core/modules/widgets/list.js +12 -12
  218. package/core/modules/widgets/log.js +2 -2
  219. package/core/modules/widgets/messagecatcher.js +1 -1
  220. package/core/modules/widgets/navigator.js +29 -29
  221. package/core/modules/widgets/parameters.js +5 -2
  222. package/core/modules/widgets/password.js +1 -1
  223. package/core/modules/widgets/radio.js +1 -1
  224. package/core/modules/widgets/range.js +7 -21
  225. package/core/modules/widgets/reveal.js +33 -12
  226. package/core/modules/widgets/scrollable.js +4 -5
  227. package/core/modules/widgets/select.js +19 -10
  228. package/core/modules/widgets/setmultiplevariables.js +31 -31
  229. package/core/modules/widgets/slot.js +0 -1
  230. package/core/modules/widgets/testcase.js +1 -1
  231. package/core/modules/widgets/transclude.js +64 -32
  232. package/core/modules/widgets/void.js +23 -0
  233. package/core/modules/widgets/widget.js +179 -64
  234. package/core/modules/widgets/wikify.js +5 -5
  235. package/core/modules/wiki-bulkops.js +5 -41
  236. package/core/modules/wiki.js +45 -59
  237. package/core/palettes/BrightMute.tid +11 -6
  238. package/core/palettes/FlexokiDark.tid +2 -2
  239. package/core/stylesheets/custom-properties.tid +30 -0
  240. package/core/templates/external-js/save-all-external-js.tid +1 -1
  241. package/core/templates/external-js/save-offline-external-js.tid +1 -1
  242. package/core/templates/external-js/tiddlywiki5-external-js.html.tid +8 -6
  243. package/core/templates/save-all.tid +1 -1
  244. package/core/templates/save-empty.tid +1 -1
  245. package/core/templates/save-lazy-all.tid +1 -1
  246. package/core/templates/save-lazy-images.tid +1 -1
  247. package/core/ui/AdvancedSearch/Filter.tid +23 -17
  248. package/core/ui/AdvancedSearch/Shadows.tid +9 -3
  249. package/core/ui/AdvancedSearch/Standard.tid +13 -7
  250. package/core/ui/AdvancedSearch/System.tid +9 -3
  251. package/core/ui/AlertTemplate.tid +3 -3
  252. package/core/ui/ControlPanel/Basics.tid +1 -0
  253. package/core/ui/EditTemplate/body-editor.tid +1 -1
  254. package/core/ui/EditTemplate/body-toolbar-button.tid +4 -2
  255. package/core/ui/EditTemplate/fields.tid +163 -139
  256. package/core/ui/EditTemplate/title.tid +5 -1
  257. package/core/ui/EditTemplate/type.tid +17 -2
  258. package/core/ui/Filters/StoryList.tid +1 -1
  259. package/core/ui/ImportListing.tid +35 -15
  260. package/core/ui/LayoutSwitcher.tid +18 -19
  261. package/core/ui/PageStylesheet.tid +2 -0
  262. package/core/ui/PageTemplate/alerts.tid +2 -2
  263. package/core/ui/SideBar/Open.tid +1 -1
  264. package/core/ui/SideBar/Tools.tid +1 -1
  265. package/core/ui/SideBarSegments/search.tid +11 -5
  266. package/core/ui/TiddlerInfo/Advanced/CascadeInfo.tid +43 -0
  267. package/core/ui/TiddlerInfo.tid +1 -1
  268. package/core/ui/ViewTemplate/title.tid +7 -3
  269. package/core/ui/WikiInformation.tid +3 -0
  270. package/core/wiki/config/MediaQueryTrackers/DarkLightPreferred.tid +5 -0
  271. package/core/wiki/config/OfficialPluginLibrary.tid +1 -1
  272. package/core/wiki/config/TiddlerInfoMode.tid +1 -1
  273. package/core/wiki/languageswitcher.tid +12 -12
  274. package/core/wiki/macros/CSS-property.tid +39 -0
  275. package/core/wiki/macros/CSS.tid +0 -50
  276. package/core/wiki/macros/colour-picker.tid +22 -19
  277. package/core/wiki/macros/deprecated.tid +43 -0
  278. package/core/wiki/macros/dumpvariables.tid +1 -1
  279. package/core/wiki/macros/image-picker.tid +16 -13
  280. package/core/wiki/macros/keyboard-driven-input.tid +16 -10
  281. package/core/wiki/macros/list.tid +83 -69
  282. package/core/wiki/macros/tabs.tid +4 -3
  283. package/core/wiki/macros/tag-picker.tid +3 -2
  284. package/core/wiki/macros/toc.tid +32 -5
  285. package/core/wiki/macros/translink.tid +13 -13
  286. package/core/wiki/macros/tree.tid +24 -20
  287. package/core/wiki/minifocuseditswitcher.tid +8 -0
  288. package/core/wiki/tags/TiddlerInfoAdvanced.tid +1 -1
  289. package/core/wiki/themeswitcher.tid +10 -9
  290. package/core/wiki/viewswitcher.tid +5 -4
  291. package/core-server/commander.js +176 -0
  292. package/core-server/commands/commands.js +36 -0
  293. package/core-server/commands/deletetiddlers.js +36 -0
  294. package/core-server/commands/fetch.js +170 -0
  295. package/core-server/commands/import.js +42 -0
  296. package/core-server/commands/init.js +53 -0
  297. package/core-server/commands/listen.js +42 -0
  298. package/core-server/commands/load.js +44 -0
  299. package/core-server/commands/output.js +32 -0
  300. package/core-server/commands/render.js +63 -0
  301. package/core-server/commands/rendertiddlers.js +62 -0
  302. package/core-server/commands/save.js +62 -0
  303. package/core-server/commands/savetiddlers.js +49 -0
  304. package/core-server/commands/savewikifolder.js +221 -0
  305. package/core-server/commands/server.js +49 -0
  306. package/core-server/commands/setfield.js +50 -0
  307. package/core-server/filesystem.js +541 -0
  308. package/core-server/plugin.info +11 -0
  309. package/core-server/readme.tid +7 -0
  310. package/core-server/server/authenticators/basic.js +87 -0
  311. package/core-server/server/routes/delete-tiddler.js +26 -0
  312. package/core-server/server/routes/get-favicon.js +22 -0
  313. package/core-server/server/routes/get-file.js +73 -0
  314. package/core-server/server/routes/get-index.js +25 -0
  315. package/core-server/server/routes/get-login-basic.js +34 -0
  316. package/core-server/server/routes/get-status.js +31 -0
  317. package/core-server/server/routes/get-tiddler-html.js +42 -0
  318. package/core-server/server/routes/get-tiddler.js +44 -0
  319. package/core-server/server/routes/get-tiddlers-json.js +48 -0
  320. package/core-server/server/routes/put-tiddler.js +50 -0
  321. package/core-server/server/server.js +393 -0
  322. package/core-server/utils/base64.js +30 -0
  323. package/core-server/utils/escapecss.js +95 -0
  324. package/core-server/utils/repository.js +45 -0
  325. package/editions/de-AT/tiddlers/external/tiddlywiki.files +2 -2
  326. package/editions/de-AT/tiddlers/system/$__editions_de-AT-DE_download-empty.tid +1 -1
  327. package/editions/de-AT/tiddlywiki.info +1 -2
  328. package/editions/de-DE/tiddlywiki.info +1 -2
  329. package/editions/dev/tiddlers/$__StoryList.tid +3 -0
  330. package/editions/dev/tiddlers/How to Create a Custom Cascade Entry.tid +127 -0
  331. package/editions/dev/tiddlers/build/Releasing a new version of TiddlyWiki.tid +11 -6
  332. package/editions/dev/tiddlers/from Heigele and Jurke/RootWidget and Rendering Startup.tid +5 -1
  333. package/editions/dev/tiddlers/javascript-widget-tutorial/hello-attribute-optimized.js +1 -1
  334. package/editions/dev/tiddlers/javascript-widget-tutorial/tiddlerfield-norefresh.js +1 -1
  335. package/editions/dev/tiddlers/javascript-widget-tutorial/tiddlerfield.js +1 -1
  336. package/editions/dev/tiddlers/new/Using TiddlyWiki as a library.tid +1 -1
  337. package/editions/empty/tiddlywiki.info +1 -2
  338. package/editions/es-ES/tiddlers/system/download-empty.tid +1 -1
  339. package/editions/es-ES/tiddlywiki.info +1 -2
  340. package/editions/fr-FR/tiddlers/$__editions_tw5.com_railroad_macro-parameter-value.tid +3 -1
  341. package/editions/fr-FR/tiddlers/Macro_Call_Syntax.tid +1 -1
  342. package/editions/fr-FR/tiddlers/Macro_Definition_Syntax.tid +1 -1
  343. package/editions/fr-FR/tiddlers/ReleaseTemplate.tid +1 -0
  344. package/editions/fr-FR/tiddlers/community/resources/_savetiddlers_ Extension for Firefox by buggyj.tid +17 -0
  345. package/editions/fr-FR/tiddlers/system/download-empty.tid +1 -1
  346. package/editions/fr-FR/tiddlywiki.info +1 -2
  347. package/editions/ja-JP/tiddlers/Concatenating a text reference to create a URL.tid +15 -0
  348. package/editions/ja-JP/tiddlers/Concatenating variables to create a URL.tid +15 -0
  349. package/editions/ja-JP/tiddlers/TiddlyWiki Docs PR Maker.tid +4 -5
  350. package/editions/ja-JP/tiddlers/Welcome.tid +10 -0
  351. package/editions/ja-JP/tiddlers/_TiddlyStudy_ by Kebi.tid +28 -0
  352. package/editions/ja-JP/tiddlers/_tw_shared/doc-utilities/wikitext-macros.tid +91 -0
  353. package/editions/ja-JP/tiddlers/about/Archive.tid +3 -3
  354. package/editions/ja-JP/tiddlers/about/Developers.tid +3 -21
  355. package/editions/ja-JP/tiddlers/about/Donations.tid +17 -0
  356. package/editions/ja-JP/tiddlers/about/Funding TiddlyWiki.tid +1 -1
  357. package/editions/ja-JP/tiddlers/about/History of TiddlyWiki.tid +7 -81
  358. package/editions/ja-JP/tiddlers/about/The Story of TiddlyWiki.tid +71 -0
  359. package/editions/ja-JP/tiddlers/about/TiddlyWiki Anniversaries.tid +33 -0
  360. package/editions/ja-JP/tiddlers/commands/BuildCommand.tid +13 -0
  361. package/editions/ja-JP/tiddlers/commands/ClearPasswordCommand.tid +6 -0
  362. package/editions/ja-JP/tiddlers/commands/Commands.tid +17 -0
  363. package/editions/ja-JP/tiddlers/commands/CommandsCommand.tid +10 -0
  364. package/editions/ja-JP/tiddlers/commands/DeleteTiddlersCommand.tid +9 -0
  365. package/editions/ja-JP/tiddlers/commands/EditionsCommand.tid +10 -0
  366. package/editions/ja-JP/tiddlers/commands/FetchCommand.tid +10 -0
  367. package/editions/ja-JP/tiddlers/commands/HelpCommand.tid +10 -0
  368. package/editions/ja-JP/tiddlers/commands/ImportCommand.tid +10 -0
  369. package/editions/ja-JP/tiddlers/commands/InitCommand.tid +14 -0
  370. package/editions/ja-JP/tiddlers/commands/ListenCommand.tid +12 -0
  371. package/editions/ja-JP/tiddlers/commands/LoadCommand.tid +10 -0
  372. package/editions/ja-JP/tiddlers/commands/MakeLibraryCommand.tid +12 -0
  373. package/editions/ja-JP/tiddlers/commands/OutputCommand.tid +10 -0
  374. package/editions/ja-JP/tiddlers/commands/PasswordCommand.tid +6 -0
  375. package/editions/ja-JP/tiddlers/commands/RenderCommand.tid +18 -0
  376. package/editions/ja-JP/tiddlers/commands/RenderTiddlerCommand.tid +9 -0
  377. package/editions/ja-JP/tiddlers/commands/RenderTiddlersCommand.tid +9 -0
  378. package/editions/ja-JP/tiddlers/commands/SaveCommand.tid +10 -0
  379. package/editions/ja-JP/tiddlers/commands/SaveTiddlerCommand.tid +10 -0
  380. package/editions/ja-JP/tiddlers/commands/SaveTiddlersCommand.tid +10 -0
  381. package/editions/ja-JP/tiddlers/commands/SaveWikiFolderCommand.tid +9 -0
  382. package/editions/ja-JP/tiddlers/commands/ServerCommand.tid +16 -0
  383. package/editions/ja-JP/tiddlers/commands/SetFieldCommand.tid +9 -0
  384. package/editions/ja-JP/tiddlers/commands/UnpackPluginCommand.tid +10 -0
  385. package/editions/ja-JP/tiddlers/commands/VerboseCommand.tid +6 -0
  386. package/editions/ja-JP/tiddlers/commands/VersionCommand.tid +6 -0
  387. package/editions/ja-JP/tiddlers/community/Articles.tid +3 -3
  388. package/editions/ja-JP/tiddlers/community/Community Editions.tid +2 -2
  389. package/editions/ja-JP/tiddlers/community/Community Links Aggregator.tid +13 -0
  390. package/editions/ja-JP/tiddlers/community/Community Palettes.tid +2 -2
  391. package/editions/ja-JP/tiddlers/community/Community Plugins.tid +2 -2
  392. package/editions/ja-JP/tiddlers/community/Community Themes.tid +2 -2
  393. package/editions/ja-JP/tiddlers/community/Community.tid +4 -6
  394. package/editions/ja-JP/tiddlers/community/Examples.tid +3 -3
  395. package/editions/ja-JP/tiddlers/community/Forums.tid +9 -18
  396. package/editions/ja-JP/tiddlers/community/Improving TiddlyWiki Documentation.tid +55 -0
  397. package/editions/ja-JP/tiddlers/community/Latest.tid +2 -2
  398. package/editions/ja-JP/tiddlers/community/Meetups.tid +2 -2
  399. package/editions/ja-JP/tiddlers/community/Other Resources.tid +2 -2
  400. package/editions/ja-JP/tiddlers/community/Resources.tid +13 -0
  401. package/editions/ja-JP/tiddlers/community/TiddlyWiki European Meetup 2016.tid +17 -0
  402. package/editions/ja-JP/tiddlers/community/TiddlyWiki European Meetup 2017.tid +13 -0
  403. package/editions/ja-JP/tiddlers/community/TiddlyWiki Hangouts.tid +1 -1
  404. package/editions/ja-JP/tiddlers/community/TiddlyWiki Newsletter.tid +12 -0
  405. package/editions/ja-JP/tiddlers/community/TiddlyWiki on the Web.tid +3 -3
  406. package/editions/ja-JP/tiddlers/community/Translate TiddlyWiki into your language.tid +18 -0
  407. package/editions/ja-JP/tiddlers/community/Tutorials.tid +2 -2
  408. package/editions/ja-JP/tiddlers/community/articles/_A free, open source wiki revisited_ by Mark Gibbs, NetworkWorld.tid +21 -0
  409. package/editions/ja-JP/tiddlers/community/articles/_Notizen mit TiddlyWiki systemubergreifend nutzen_ by Michael Sonntag.tid +19 -0
  410. package/editions/ja-JP/tiddlers/community/articles/_Setting Up a Personal TiddlyWiki Server on OS X_ by Kris Johnson.tid +24 -0
  411. package/editions/ja-JP/tiddlers/community/articles/_TiddlyWiki 5 im Betatest_ by besim.tid +17 -0
  412. package/editions/ja-JP/tiddlers/community/articles/_TiddlyWiki_ by Sander de Boer.tid +17 -0
  413. package/editions/ja-JP/tiddlers/community/docs/Community Cards Caveats.tid +7 -0
  414. package/editions/ja-JP/tiddlers/community/docs/Community Cards.tid +13 -0
  415. package/editions/ja-JP/tiddlers/community/docs/Displaying Community Cards.tid +28 -0
  416. package/editions/ja-JP/tiddlers/community/docs/Submitting a Community Card.tid +38 -0
  417. package/editions/ja-JP/tiddlers/community/editions/Drift by Tony K.tid +20 -0
  418. package/editions/ja-JP/tiddlers/community/editions/Stroll by David Gifford.tid +20 -0
  419. package/editions/ja-JP/tiddlers/community/editions/Tidme by oflg.tid +18 -0
  420. package/editions/ja-JP/tiddlers/community/editions/_Cardo-A Task and Project Management Wiki_ by David_Szego.tid +23 -0
  421. package/editions/ja-JP/tiddlers/community/examples/GitFixUm.tid +0 -1
  422. package/editions/ja-JP/tiddlers/community/examples/PETTIL.tid +1 -1
  423. package/editions/ja-JP/tiddlers/community/examples/_Lucky Sushi_ online shop by sini-Kit.tid +2 -1
  424. package/editions/ja-JP/tiddlers/community/plugins/GSD5.tid +16 -0
  425. package/editions/ja-JP/tiddlers/community/plugins/TW5-Graph by Flibbles.tid +22 -0
  426. package/editions/ja-JP/tiddlers/community/plugins/TiddlyWiki for Scholars.tid +16 -0
  427. package/editions/ja-JP/tiddlers/community/project/TiddlyWiki People.tid +13 -0
  428. package/editions/ja-JP/tiddlers/community/project/TiddlyWiki Project.tid +13 -0
  429. package/editions/ja-JP/tiddlers/community/project/Vacant Positions.tid +5 -0
  430. package/editions/ja-JP/tiddlers/community/resources/Projectify by Nicolas Petton.tid +24 -0
  431. package/editions/ja-JP/tiddlers/community/resources/TiddlyWiki Posts.tid +16 -0
  432. package/editions/ja-JP/tiddlers/community/resources/Wikilabs by PMario.tid +18 -0
  433. package/editions/ja-JP/tiddlers/community/resources/_savetiddlers_ Extension for Firefox by buggyj.tid +18 -0
  434. package/editions/ja-JP/tiddlers/community/tools/cards/Procedures.tid +168 -0
  435. package/editions/ja-JP/tiddlers/concepts/ExternalImages.tid +29 -11
  436. package/editions/ja-JP/tiddlers/concepts/Filters.tid +2 -1
  437. package/editions/ja-JP/tiddlers/concepts/TemplateTiddlers.tid +20 -0
  438. package/editions/ja-JP/tiddlers/concepts/TextReference.tid +36 -0
  439. package/editions/ja-JP/tiddlers/concepts/Transclusion.tid +31 -0
  440. package/editions/ja-JP/tiddlers/concepts/WikiText.tid +17 -0
  441. package/editions/ja-JP/tiddlers/definitions/Base64.tid +9 -0
  442. package/editions/ja-JP/tiddlers/definitions/Cascading Style Sheets.tid +9 -0
  443. package/editions/ja-JP/tiddlers/definitions/Definitions.tid +12 -0
  444. package/editions/ja-JP/tiddlers/definitions/Tiddlyhost.tid +13 -0
  445. package/editions/ja-JP/tiddlers/features/Future Proof.tid +3 -3
  446. package/editions/ja-JP/tiddlers/filters/syntax/Filter Run Prefix.tid +0 -1
  447. package/editions/ja-JP/tiddlers/filters/syntax/Filter Step.tid +5 -5
  448. package/editions/ja-JP/tiddlers/functions/Functions.tid +30 -0
  449. package/editions/ja-JP/tiddlers/gettingstarted/GettingStarted - Internet Explorer.tid +1 -1
  450. package/editions/ja-JP/tiddlers/hellothere/Find Out More.tid +2 -2
  451. package/editions/ja-JP/tiddlers/hellothere/HelloThere.tid +28 -6
  452. package/editions/ja-JP/tiddlers/hellothere/HelloThumbnail.tid +7 -0
  453. package/editions/ja-JP/tiddlers/hellothere/Testimonials and Reviews.tid +2 -2
  454. package/editions/ja-JP/tiddlers/hellothere/quickstart/Quick Start.tid +2 -2
  455. package/editions/ja-JP/tiddlers/hellothere/thumbnails/HelloThumbnail - Community Survey.tid +10 -0
  456. package/editions/ja-JP/tiddlers/hellothere/thumbnails/HelloThumbnail - Donations.tid +9 -0
  457. package/editions/ja-JP/tiddlers/hellothere/thumbnails/HelloThumbnail - Grok TiddlyWiki.tid +0 -1
  458. package/editions/ja-JP/tiddlers/hellothere/thumbnails/HelloThumbnail - Intertwingled Innovations.tid +1 -1
  459. package/editions/ja-JP/tiddlers/hellothere/thumbnails/HelloThumbnail - MultiWikiServer.tid +2 -2
  460. package/editions/ja-JP/tiddlers/hellothere/thumbnails/HelloThumbnail - Newsletter.tid +3 -2
  461. package/editions/ja-JP/tiddlers/hellothere/thumbnails/HelloThumbnail - TW5-Graph.tid +12 -0
  462. package/editions/ja-JP/tiddlers/hellothere/thumbnails/HelloThumbnail - TiddlyWiki Privacy.tid +2 -2
  463. package/editions/ja-JP/tiddlers/hellothere/thumbnails/HelloThumbnail - TiddlyWikiLinks.tid +1 -1
  464. package/editions/ja-JP/tiddlers/hellothere/thumbnails/HelloThumbnail - Twenty Years of TiddlyWiki.tid +0 -1
  465. package/editions/ja-JP/tiddlers/hiddensettings/Hidden Setting Default Tiddler Colour.tid +3 -3
  466. package/editions/ja-JP/tiddlers/hire-jeremy/Hire Jeremy Sidebar Segment.tid +16 -0
  467. package/editions/ja-JP/tiddlers/hire-jeremy/HireJeremy.tid +59 -0
  468. package/editions/ja-JP/tiddlers/howtos/Concatenating text and variables using macro substitution.tid +1 -1
  469. package/editions/ja-JP/tiddlers/howtos/Hard_Linebreaks_with_CSS.tid +28 -0
  470. package/editions/ja-JP/tiddlers/howtos/Hard_Linebreaks_with_CSS_-_Example.tid +16 -0
  471. package/editions/ja-JP/tiddlers/howtos/Windows HTA Hack.tid +2 -1
  472. package/editions/ja-JP/tiddlers/marketplace/TiddlyWiki Marketplace.tid +20 -0
  473. package/editions/ja-JP/tiddlers/plugins/Dynaview Plugin.tid +1 -1
  474. package/editions/ja-JP/tiddlers/plugins/Innerwiki Plugin.tid +1 -1
  475. package/editions/ja-JP/tiddlers/plugins/Share Plugin.tid +6 -4
  476. package/editions/ja-JP/tiddlers/procedures/Procedure Calls.tid +58 -0
  477. package/editions/ja-JP/tiddlers/procedures/Procedure Definitions.tid +47 -0
  478. package/editions/ja-JP/tiddlers/procedures/Procedure Parameter Handling.tid +26 -0
  479. package/editions/ja-JP/tiddlers/reference/Reference.tid +17 -0
  480. package/editions/ja-JP/tiddlers/roadmap/RoadMap.tid +9 -4
  481. package/editions/ja-JP/tiddlers/saving/Encryption.tid +3 -3
  482. package/editions/ja-JP/tiddlers/saving/Saving via WebDAV.tid +9 -1
  483. package/editions/ja-JP/tiddlers/saving/Saving with TiddlyIE.tid +2 -1
  484. package/editions/ja-JP/tiddlers/saving/Saving.tid +2 -2
  485. package/editions/ja-JP/tiddlers/system/TableOfContents.tid +1 -1
  486. package/editions/ja-JP/tiddlers/system/download-empty.tid +1 -1
  487. package/editions/ja-JP/tiddlers/variables/Behaviour of variables invoked via widget attributes.tid +13 -0
  488. package/editions/ja-JP/tiddlers/wikitext/Anchor Links using HTML.tid +202 -0
  489. package/editions/ja-JP/tiddlers/wikitext/Block Quotes in WikiText.tid +106 -0
  490. package/editions/ja-JP/tiddlers/wikitext/Code Blocks in WikiText.tid +43 -0
  491. package/editions/ja-JP/tiddlers/wikitext/Conditional Shortcut Syntax.tid +64 -0
  492. package/editions/ja-JP/tiddlers/wikitext/Dashes in WikiText.tid +14 -0
  493. package/editions/ja-JP/tiddlers/wikitext/Description Lists in WikiText.tid +16 -0
  494. package/editions/ja-JP/tiddlers/wikitext/Filtered Attribute Values.tid +18 -0
  495. package/editions/ja-JP/tiddlers/wikitext/Formatting in WikiText.tid +62 -0
  496. package/editions/ja-JP/tiddlers/wikitext/HTML Entities.tid +68 -0
  497. package/editions/ja-JP/tiddlers/wikitext/HTML in WikiText.tid +94 -0
  498. package/editions/ja-JP/tiddlers/wikitext/HTML_Links_in_WikiText.tid +19 -0
  499. package/editions/ja-JP/tiddlers/wikitext/Hard Linebreaks in WikiText.tid +24 -0
  500. package/editions/ja-JP/tiddlers/wikitext/Headings in WikiText.tid +22 -0
  501. package/editions/ja-JP/tiddlers/wikitext/Horizontal Rules in WikiText.tid +12 -0
  502. package/editions/ja-JP/tiddlers/wikitext/Linking in WikiText.tid +127 -0
  503. package/editions/ja-JP/tiddlers/wikitext/Lists in WikiText.tid +94 -0
  504. package/editions/ja-JP/tiddlers/wikitext/Literal Attribute Values.tid +32 -0
  505. package/editions/ja-JP/tiddlers/wikitext/Macro Calls.tid +60 -0
  506. package/editions/ja-JP/tiddlers/wikitext/Macro Definitions.tid +69 -0
  507. package/editions/ja-JP/tiddlers/wikitext/Macro Parameter Handling.tid +80 -0
  508. package/editions/ja-JP/tiddlers/wikitext/Paragraphs in WikiText.tid +25 -0
  509. package/editions/ja-JP/tiddlers/wikitext/Substituted Attribute Values.tid +35 -0
  510. package/editions/ja-JP/tiddlers/wikitext/Table Classes Captions Headers and Footers.tid +22 -0
  511. package/editions/ja-JP/tiddlers/wikitext/Tables in WikiText CSS Utility Classes.tid +83 -0
  512. package/editions/ja-JP/tiddlers/wikitext/Tables in WikiText.tid +74 -0
  513. package/editions/ja-JP/tiddlers/wikitext/Transcluded Attribute Values.tid +16 -0
  514. package/editions/ja-JP/tiddlers/wikitext/Transclusion Basic Usage.tid +47 -0
  515. package/editions/ja-JP/tiddlers/wikitext/Transclusion and Substitution.tid +62 -0
  516. package/editions/ja-JP/tiddlers/wikitext/Transclusion in WikiText.tid +78 -0
  517. package/editions/ja-JP/tiddlers/wikitext/Transclusion with Templates.tid +62 -0
  518. package/editions/ja-JP/tiddlers/wikitext/Typed Blocks in WikiText.tid +69 -0
  519. package/editions/ja-JP/tiddlers/wikitext/Utility Classes.tid +23 -0
  520. package/editions/ja-JP/tiddlers/wikitext/Variable Attribute Values.tid +19 -0
  521. package/editions/ja-JP/tiddlers/wikitext/Widget Attributes.tid +28 -0
  522. package/editions/ja-JP/tiddlers/wikitext/Widgets in WikiText.tid +33 -0
  523. package/editions/ja-JP/tiddlers/wikitext/parser/WikiText Parser Modes.tid +20 -0
  524. package/editions/ja-JP/tiddlers/wikitext/parser/WikiText parser mode_ transclusion examples.tid +58 -0
  525. package/editions/ja-JP/tiddlers/wikitext/parser/table-example.tid +10 -0
  526. package/editions/ja-JP/tiddlers/workingwithtw/Sharing your tiddlers with others.tid +3 -3
  527. package/editions/ja-JP/tiddlywiki.info +1 -2
  528. package/editions/ko-KR/tiddlers/system/download-empty.tid +1 -1
  529. package/editions/ko-KR/tiddlywiki.info +1 -2
  530. package/editions/prerelease/tiddlers/system/DefaultTiddlers.tid +1 -1
  531. package/editions/prerelease/tiddlers/system/PrereleaseLocalPluginLibrary.tid +1 -1
  532. package/editions/prerelease/tiddlers/system/PrereleaseOfficialPluginLibrary.tid +1 -1
  533. package/editions/prerelease/tiddlers/system/TiddlyWiki Pre-release.tid +1 -0
  534. package/editions/prerelease/tiddlers/system/download-empty.tid +1 -1
  535. package/editions/prerelease/tiddlywiki.info +2 -1
  536. package/editions/test/playwright.spec.js +17 -17
  537. package/editions/test/tiddlers/$__StoryList.tid +2 -0
  538. package/editions/test/tiddlers/tests/data/functions/FunctionDefaultValues.tid +16 -0
  539. package/editions/test/tiddlers/tests/data/functions/FunctionSubstituteResolution.tid +38 -0
  540. package/editions/test/tiddlers/tests/data/functions/VariableLeakage.tid +15 -0
  541. package/editions/test/tiddlers/tests/data/functions/VariablesEnumeration.tid +14 -0
  542. package/editions/test/tiddlers/tests/data/genesis-widget/Block.tid +1 -1
  543. package/editions/test/tiddlers/tests/data/let-filter-prefix/ResultList.tid +12 -0
  544. package/editions/test/tiddlers/tests/data/let-filter-prefix/ResultListUnnamedVariable.tid +12 -0
  545. package/editions/test/tiddlers/tests/data/let-filter-prefix/ShortcutSyntax.tid +12 -0
  546. package/editions/test/tiddlers/tests/data/let-filter-prefix/Simple.tid +12 -0
  547. package/editions/test/tiddlers/tests/data/macros/dynamic-macros/Attribute.tid +26 -0
  548. package/editions/test/tiddlers/tests/data/macros/dynamic-macros/Standalone.tid +23 -0
  549. package/editions/test/tiddlers/tests/data/multi-valued-variables/AttributeFirstValue.tid +16 -0
  550. package/editions/test/tiddlers/tests/data/multi-valued-variables/DefaultParameterMVV.tid +19 -0
  551. package/editions/test/tiddlers/tests/data/multi-valued-variables/Function.tid +18 -0
  552. package/editions/test/tiddlers/tests/data/multi-valued-variables/InlineDisplay.tid +16 -0
  553. package/editions/test/tiddlers/tests/data/multi-valued-variables/InlineDisplaySeparator.tid +16 -0
  554. package/editions/test/tiddlers/tests/data/multi-valued-variables/InlineFilterDisplay.tid +14 -0
  555. package/editions/test/tiddlers/tests/data/multi-valued-variables/InlineFilterDisplaySeparator.tid +14 -0
  556. package/editions/test/tiddlers/tests/data/multi-valued-variables/MissingVariable.tid +12 -0
  557. package/editions/test/tiddlers/tests/data/multi-valued-variables/NegatedTitle.tid +18 -0
  558. package/editions/test/tiddlers/tests/data/multi-valued-variables/Operands.tid +18 -0
  559. package/editions/test/tiddlers/tests/data/multi-valued-variables/Parameters.tid +21 -0
  560. package/editions/test/tiddlers/tests/data/multi-valued-variables/ParametersShortcut.tid +21 -0
  561. package/editions/test/tiddlers/tests/data/multi-valued-variables/Simple.tid +17 -0
  562. package/editions/test/tiddlers/tests/data/multi-valued-variables/TranscludeParameter.tid +19 -0
  563. package/editions/test/tiddlers/tests/data/multi-valued-variables/TranscludeParameterDirectly.tid +19 -0
  564. package/editions/test/tiddlers/tests/data/multi-valued-variables/TranscludeParameterFunction.tid +17 -0
  565. package/editions/test/tiddlers/tests/data/parse-backcompat/macrocall-colon-named.tid +13 -0
  566. package/editions/test/tiddlers/tests/data/parse-backcompat/macrocall-colon-non-strict.tid +13 -0
  567. package/editions/test/tiddlers/tests/data/parse-backcompat/macrocall-equals-no-value.tid +13 -0
  568. package/editions/test/tiddlers/tests/data/parse-backcompat/macrocall-named-equals.tid +13 -0
  569. package/editions/test/tiddlers/tests/data/parse-backcompat/macrocall-named-filtered-value.tid +13 -0
  570. package/editions/test/tiddlers/tests/data/parse-backcompat/macrocall-named-indirect-value.tid +17 -0
  571. package/editions/test/tiddlers/tests/data/parse-backcompat/macrocall-named-mvv-value.tid +14 -0
  572. package/editions/test/tiddlers/tests/data/parse-backcompat/macrocall-named-nested-macro.tid +14 -0
  573. package/editions/test/tiddlers/tests/data/parse-backcompat/macrocall-named-substituted-value.tid +13 -0
  574. package/editions/test/tiddlers/tests/data/parse-backcompat/macrocall-positional-gt.tid +13 -0
  575. package/editions/test/tiddlers/tests/data/parse-backcompat/parse-backcompat-multiline.tid +17 -0
  576. package/editions/test/tiddlers/tests/data/parse-backcompat/parse-backcompat-quoted-gt.tid +14 -0
  577. package/editions/test/tiddlers/tests/data/parse-backcompat/parse-backcompat-single-line.tid +14 -0
  578. package/editions/test/tiddlers/tests/data/parse-backcompat/parse-backcompat.tid +14 -0
  579. package/editions/test/tiddlers/tests/data/parse-backcompat/widget-attr-equals-noval.tid +13 -0
  580. package/editions/test/tiddlers/tests/data/parse-backcompat/widget-attr-malformed-mvv.tid +13 -0
  581. package/editions/test/tiddlers/tests/data/parse-backcompat/widget-attr-mvv-value.tid +14 -0
  582. package/editions/test/tiddlers/tests/data/parse-backcompat/widget-attr-substituted-value.tid +13 -0
  583. package/editions/test/tiddlers/tests/data/procedures/Calls.tid +28 -0
  584. package/editions/test/tiddlers/tests/data/serialize/Attribute.tid +5 -0
  585. package/editions/test/tiddlers/tests/data/serialize/BlockRule.tid +7 -0
  586. package/editions/test/tiddlers/tests/data/serialize/BoldEmphasis.tid +5 -0
  587. package/editions/test/tiddlers/tests/data/serialize/CodeBlock.tid +17 -0
  588. package/editions/test/tiddlers/tests/data/serialize/CommentBlock.tid +11 -0
  589. package/editions/test/tiddlers/tests/data/serialize/CommentInline.tid +5 -0
  590. package/editions/test/tiddlers/tests/data/serialize/Conditional.tid +21 -0
  591. package/editions/test/tiddlers/tests/data/serialize/Dash.tid +7 -0
  592. package/editions/test/tiddlers/tests/data/serialize/DynamicMacroMixed.tid +9 -0
  593. package/editions/test/tiddlers/tests/data/serialize/DynamicMacroParams.tid +9 -0
  594. package/editions/test/tiddlers/tests/data/serialize/DynamicWidgetAttribute.tid +7 -0
  595. package/editions/test/tiddlers/tests/data/serialize/Entity.tid +5 -0
  596. package/editions/test/tiddlers/tests/data/serialize/ExtLink.tid +7 -0
  597. package/editions/test/tiddlers/tests/data/serialize/FilteredTranscludeBlock.tid +13 -0
  598. package/editions/test/tiddlers/tests/data/serialize/FilteredTranscludeInline.tid +5 -0
  599. package/editions/test/tiddlers/tests/data/serialize/FunctionDefinition.tid +15 -0
  600. package/editions/test/tiddlers/tests/data/serialize/HardLineBreaks.tid +12 -0
  601. package/editions/test/tiddlers/tests/data/serialize/Heading.tid +29 -0
  602. package/editions/test/tiddlers/tests/data/serialize/Html.tid +15 -0
  603. package/editions/test/tiddlers/tests/data/serialize/Image.tid +10 -0
  604. package/editions/test/tiddlers/tests/data/serialize/Import.tid +6 -0
  605. package/editions/test/tiddlers/tests/data/serialize/ItalicEmphasis.tid +5 -0
  606. package/editions/test/tiddlers/tests/data/serialize/List.tid +40 -0
  607. package/editions/test/tiddlers/tests/data/serialize/MacroCallBlock.tid +13 -0
  608. package/editions/test/tiddlers/tests/data/serialize/MacroCallInline.tid +7 -0
  609. package/editions/test/tiddlers/tests/data/serialize/MacroDef.tid +9 -0
  610. package/editions/test/tiddlers/tests/data/serialize/Parameters.tid +5 -0
  611. package/editions/test/tiddlers/tests/data/serialize/ParserMode.tid +9 -0
  612. package/editions/test/tiddlers/tests/data/serialize/PrettyExtLink.tid +6 -0
  613. package/editions/test/tiddlers/tests/data/serialize/PrettyLink.tid +6 -0
  614. package/editions/test/tiddlers/tests/data/serialize/QuoteBlock.tid +7 -0
  615. package/editions/test/tiddlers/tests/data/serialize/RulesPragma.tid +6 -0
  616. package/editions/test/tiddlers/tests/data/serialize/SimpleText.tid +5 -0
  617. package/editions/test/tiddlers/tests/data/serialize/SoftLineBreak.tid +6 -0
  618. package/editions/test/tiddlers/tests/data/serialize/StrikethroughEmphasis.tid +5 -0
  619. package/editions/test/tiddlers/tests/data/serialize/StyleBlock.tid +17 -0
  620. package/editions/test/tiddlers/tests/data/serialize/StyleBlock2.tid +13 -0
  621. package/editions/test/tiddlers/tests/data/serialize/StyleInline.tid +7 -0
  622. package/editions/test/tiddlers/tests/data/serialize/SubscriptEmphasis.tid +5 -0
  623. package/editions/test/tiddlers/tests/data/serialize/SuperscriptEmphasis.tid +5 -0
  624. package/editions/test/tiddlers/tests/data/serialize/SysLink.tid +6 -0
  625. package/editions/test/tiddlers/tests/data/serialize/Table.tid +11 -0
  626. package/editions/test/tiddlers/tests/data/serialize/TranscludeBlock.tid +21 -0
  627. package/editions/test/tiddlers/tests/data/serialize/TranscludeInline.tid +5 -0
  628. package/editions/test/tiddlers/tests/data/serialize/TypedBlock1.tid +15 -0
  629. package/editions/test/tiddlers/tests/data/serialize/TypedBlock2.tid +19 -0
  630. package/editions/test/tiddlers/tests/data/serialize/UnderscoreEmphasis.tid +5 -0
  631. package/editions/test/tiddlers/tests/data/serialize/VoidElements.tid +12 -0
  632. package/editions/test/tiddlers/tests/data/serialize/WikiLink.tid +7 -0
  633. package/editions/test/tiddlers/tests/data/serialize/WikiLinkPrefix.tid +5 -0
  634. package/editions/test/tiddlers/tests/data/tabs-macro/expected-test-tabs-horizontal-a.tid +1 -1
  635. package/editions/test/tiddlers/tests/data/tabs-macro/expected-test-tabs-horizontal-all.tid +1 -1
  636. package/editions/test/tiddlers/tests/data/tabs-macro/expected-test-tabs-vertical.tid +1 -1
  637. package/editions/test/tiddlers/tests/data/transclude/MissingTiddlerAttribute.tid +34 -0
  638. package/editions/test/tiddlers/tests/data/transclude/MissingTiddlerAttributeFiltered.tid +20 -0
  639. package/editions/test/tiddlers/tests/data/transclude/MissingTiddlerAttributeVariable.tid +13 -0
  640. package/editions/test/tiddlers/tests/data/transclude/Parameterised-ParseTreeNodes.tid +1 -1
  641. package/editions/test/tiddlers/tests/data/transclude/Procedures-Dollar-Param.tid +22 -0
  642. package/editions/test/tiddlers/tests/modules/utils/test-csv.js +4 -4
  643. package/editions/test/tiddlers/tests/test-action-deletefield.js +120 -120
  644. package/editions/test/tiddlers/tests/test-action-widgets.js +73 -76
  645. package/editions/test/tiddlers/tests/test-backlinks.js +53 -53
  646. package/editions/test/tiddlers/tests/test-backtranscludes.js +119 -119
  647. package/editions/test/tiddlers/tests/test-checkbox-widget.js +491 -493
  648. package/editions/test/tiddlers/tests/test-compare-filter.js +1 -4
  649. package/editions/test/tiddlers/tests/test-deserialize-operator.js +18 -21
  650. package/editions/test/tiddlers/tests/test-deserializers.js +17 -19
  651. package/editions/test/tiddlers/tests/test-filters.js +123 -123
  652. package/editions/test/tiddlers/tests/test-html-parser.js +377 -50
  653. package/editions/test/tiddlers/tests/test-json-filters.js +29 -5
  654. package/editions/test/tiddlers/tests/test-linked-list.js +4 -4
  655. package/editions/test/tiddlers/tests/test-parsetextreference.js +1 -1
  656. package/editions/test/tiddlers/tests/test-prefixes-filter.js +9 -7
  657. package/editions/test/tiddlers/tests/test-tags-operator.js +45 -45
  658. package/editions/test/tiddlers/tests/test-tags.js +155 -155
  659. package/editions/test/tiddlers/tests/test-utils.js +10 -10
  660. package/editions/test/tiddlers/tests/test-widget-event.js +9 -9
  661. package/editions/test/tiddlers/tests/test-widget-getVariableInfo.js +7 -18
  662. package/editions/test/tiddlers/tests/test-widget.js +117 -93
  663. package/editions/test/tiddlers/tests/test-wikitext-parser.js +89 -80
  664. package/editions/test/tiddlers/tests/test-wikitext-serialize.js +18 -0
  665. package/editions/test/tiddlers/tests/test-wikitext-tabs-macro.js +4 -4
  666. package/editions/test/tiddlers/tests/test-wikitext.js +1 -1
  667. package/editions/test/tiddlywiki.info +1 -0
  668. package/editions/testcommonjs/tiddlers/absolute/program.js +5 -5
  669. package/editions/testcommonjs/tiddlers/absolute/submodule/a.js +1 -1
  670. package/editions/testcommonjs/tiddlers/allTests.js +11 -11
  671. package/editions/testcommonjs/tiddlers/cyclic/a.js +2 -2
  672. package/editions/testcommonjs/tiddlers/cyclic/b.js +2 -2
  673. package/editions/testcommonjs/tiddlers/cyclic/program.js +8 -8
  674. package/editions/testcommonjs/tiddlers/determinism/program.js +3 -3
  675. package/editions/testcommonjs/tiddlers/determinism/submodule/a.js +5 -5
  676. package/editions/testcommonjs/tiddlers/exactExports/a.js +1 -1
  677. package/editions/testcommonjs/tiddlers/exactExports/program.js +4 -4
  678. package/editions/testcommonjs/tiddlers/hasOwnProperty/program.js +4 -4
  679. package/editions/testcommonjs/tiddlers/method/a.js +4 -4
  680. package/editions/testcommonjs/tiddlers/method/program.js +6 -6
  681. package/editions/testcommonjs/tiddlers/missing/program.js +5 -5
  682. package/editions/testcommonjs/tiddlers/monkeys/a.js +1 -1
  683. package/editions/testcommonjs/tiddlers/monkeys/program.js +4 -4
  684. package/editions/testcommonjs/tiddlers/nested/a/b/c/d.js +1 -1
  685. package/editions/testcommonjs/tiddlers/nested/program.js +3 -3
  686. package/editions/testcommonjs/tiddlers/relative/program.js +5 -5
  687. package/editions/testcommonjs/tiddlers/relative/submodule/a.js +1 -1
  688. package/editions/testcommonjs/tiddlers/test.js +9 -9
  689. package/editions/testcommonjs/tiddlers/transitive/a.js +1 -1
  690. package/editions/testcommonjs/tiddlers/transitive/b.js +1 -1
  691. package/editions/testcommonjs/tiddlers/transitive/c.js +1 -1
  692. package/editions/testcommonjs/tiddlers/transitive/program.js +3 -3
  693. package/editions/tiddlywiki-surveys/scripts/extract-text-tiddlers-via-console.js +4 -4
  694. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00001.json +37 -0
  695. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00002.json +37 -0
  696. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00003.json +37 -0
  697. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00004.tid +33 -0
  698. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00005.json +37 -0
  699. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00006.json +37 -0
  700. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00007.tid +33 -0
  701. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00008.tid +33 -0
  702. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00009.json +37 -0
  703. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00010.tid +33 -0
  704. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00011.tid +33 -0
  705. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00012.json +37 -0
  706. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00013.tid +33 -0
  707. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00014.json +37 -0
  708. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00015.json +37 -0
  709. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00016.tid +33 -0
  710. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00017.json +37 -0
  711. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00018.json +37 -0
  712. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00019.json +37 -0
  713. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00020.json +37 -0
  714. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00021.tid +33 -0
  715. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00022.json +37 -0
  716. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00023.json +37 -0
  717. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00024.json +37 -0
  718. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00025.tid +33 -0
  719. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00026.json +37 -0
  720. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00027.tid +33 -0
  721. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00028.json +37 -0
  722. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00029.json +37 -0
  723. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00030.json +37 -0
  724. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00031.json +37 -0
  725. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00032.tid +33 -0
  726. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00033.json +37 -0
  727. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00034.json +37 -0
  728. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00035.tid +33 -0
  729. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00036.tid +33 -0
  730. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00037.json +37 -0
  731. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00038.json +37 -0
  732. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00039.json +37 -0
  733. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00040.json +37 -0
  734. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00041.json +37 -0
  735. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00042.json +37 -0
  736. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00043.json +37 -0
  737. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00044.json +37 -0
  738. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00045.json +37 -0
  739. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00046.json +37 -0
  740. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00047.json +37 -0
  741. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00048.tid +33 -0
  742. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00049.json +37 -0
  743. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00050.json +37 -0
  744. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00051.json +37 -0
  745. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00052.json +37 -0
  746. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00053.json +37 -0
  747. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00054.json +37 -0
  748. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00055.json +37 -0
  749. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00056.tid +33 -0
  750. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00057.json +37 -0
  751. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00058.json +37 -0
  752. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00059.json +37 -0
  753. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00060.tid +33 -0
  754. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00061.json +37 -0
  755. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00062.json +37 -0
  756. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00063.json +37 -0
  757. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00064.json +37 -0
  758. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00065.tid +33 -0
  759. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00066.json +37 -0
  760. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00067.tid +33 -0
  761. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00068.json +37 -0
  762. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00069.tid +33 -0
  763. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00070.tid +33 -0
  764. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00071.json +37 -0
  765. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00072.json +37 -0
  766. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00073.tid +33 -0
  767. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00074.tid +33 -0
  768. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00075.json +37 -0
  769. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00076.json +37 -0
  770. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00077.json +37 -0
  771. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00078.json +37 -0
  772. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00079.json +37 -0
  773. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00080.json +37 -0
  774. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00081.json +37 -0
  775. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00082.json +37 -0
  776. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00083.json +37 -0
  777. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00084.json +37 -0
  778. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00085.json +37 -0
  779. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00086.json +37 -0
  780. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00087.tid +33 -0
  781. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00088.tid +33 -0
  782. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00089.json +37 -0
  783. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00090.json +37 -0
  784. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00091.tid +33 -0
  785. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00092.json +37 -0
  786. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00093.json +37 -0
  787. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00094.tid +33 -0
  788. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00095.json +37 -0
  789. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00096.tid +33 -0
  790. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00097.json +37 -0
  791. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00098.json +37 -0
  792. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00099.json +37 -0
  793. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00100.json +37 -0
  794. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00101.json +37 -0
  795. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00102.tid +33 -0
  796. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00103.json +37 -0
  797. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00104.json +37 -0
  798. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00105.json +37 -0
  799. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00106.tid +33 -0
  800. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00107.json +37 -0
  801. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00108.json +37 -0
  802. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00109.json +37 -0
  803. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00110.json +37 -0
  804. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00111.json +37 -0
  805. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00112.json +37 -0
  806. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00113.json +37 -0
  807. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00114.json +37 -0
  808. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00115.tid +33 -0
  809. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00116.json +37 -0
  810. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00117.json +37 -0
  811. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00118.json +37 -0
  812. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00119.json +37 -0
  813. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00120.json +37 -0
  814. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00121.json +37 -0
  815. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00122.json +37 -0
  816. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00123.json +37 -0
  817. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00124.json +37 -0
  818. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00125.tid +33 -0
  819. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00126.json +37 -0
  820. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00127.json +37 -0
  821. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00128.json +37 -0
  822. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00129.json +37 -0
  823. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00130.json +37 -0
  824. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00131.json +37 -0
  825. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00132.json +37 -0
  826. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00133.tid +33 -0
  827. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00134.tid +33 -0
  828. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00135.json +37 -0
  829. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00136.tid +33 -0
  830. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00137.json +37 -0
  831. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00138.tid +33 -0
  832. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00139.json +37 -0
  833. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00140.json +37 -0
  834. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00141.json +37 -0
  835. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00142.json +37 -0
  836. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00143.json +37 -0
  837. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00144.json +37 -0
  838. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00145.tid +33 -0
  839. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00146.tid +33 -0
  840. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00147.tid +33 -0
  841. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00148.json +37 -0
  842. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00149.json +37 -0
  843. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00150.json +37 -0
  844. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00151.json +37 -0
  845. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00152.json +37 -0
  846. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00153.json +37 -0
  847. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00154.json +37 -0
  848. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00155.tid +33 -0
  849. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00156.json +37 -0
  850. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00157.json +37 -0
  851. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00158.json +37 -0
  852. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00159.json +37 -0
  853. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00160.json +37 -0
  854. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00161.json +37 -0
  855. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00162.json +37 -0
  856. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00163.json +37 -0
  857. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00164.tid +33 -0
  858. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00165.json +37 -0
  859. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00166.json +37 -0
  860. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00167.json +37 -0
  861. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00168.tid +33 -0
  862. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00169.json +37 -0
  863. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00170.json +37 -0
  864. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00171.json +37 -0
  865. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00172.json +37 -0
  866. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00173.json +37 -0
  867. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00174.tid +33 -0
  868. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00175.tid +33 -0
  869. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00176.tid +33 -0
  870. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00177.json +37 -0
  871. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00178.tid +33 -0
  872. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00179.json +37 -0
  873. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00180.json +37 -0
  874. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00181.json +37 -0
  875. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00182.tid +33 -0
  876. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00183.json +37 -0
  877. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00184.json +37 -0
  878. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00185.json +37 -0
  879. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00186.json +37 -0
  880. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00187.json +37 -0
  881. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00188.tid +33 -0
  882. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00189.json +37 -0
  883. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00190.tid +33 -0
  884. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00191.json +37 -0
  885. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00192.json +37 -0
  886. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00193.json +37 -0
  887. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00194.tid +33 -0
  888. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00195.json +37 -0
  889. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00196.json +37 -0
  890. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00197.tid +33 -0
  891. package/editions/tiddlywiki-surveys/tiddlers/2025-community-survey/Community Survey 2025 Answer 00198.json +37 -0
  892. package/editions/tiddlywiki-surveys/tiddlers/app/DefaultTiddlers.tid +1 -0
  893. package/editions/tiddlywiki-surveys/tiddlers/app/Definitions.tid +66 -0
  894. package/editions/tiddlywiki-surveys/tiddlers/app/HelloThere.tid +11 -0
  895. package/editions/tiddlywiki-surveys/tiddlers/app/Questions.json +225 -0
  896. package/editions/tiddlywiki-surveys/tiddlers/app/Styles.tid +4 -4
  897. package/editions/tiddlywiki-surveys/tiddlers/app/The Great TiddlyWiki Interview Project 2010.tid +1 -1
  898. package/editions/tiddlywiki-surveys/tiddlers/app/TiddlyWiki Community Survey 2025.tid +5 -0
  899. package/editions/tiddlywiki-surveys/tiddlers/app/ViewTemplate.tid +8 -0
  900. package/editions/tiddlywiki-surveys/tiddlers/app/XLSX Import Specs/row.tid +8 -0
  901. package/editions/tiddlywiki-surveys/tiddlers/app/XLSX Import Specs/sheet.tid +10 -0
  902. package/editions/tiddlywiki-surveys/tiddlers/app/XLSX Import Specs/workbook.tid +8 -0
  903. package/editions/tiddlywiki-surveys/tiddlers/app/default-import-spec.tid +6 -0
  904. package/editions/tiddlywiki-surveys/tiddlers/app/open-state.multids +9 -0
  905. package/editions/tiddlywiki-surveys/tiddlywiki.info +5 -0
  906. package/editions/translators/tiddlers/Instructions for Translators.tid +1 -0
  907. package/editions/translators/tiddlers/system/$__status_UserName.tid +3 -0
  908. package/editions/translators/tiddlywiki.info +1 -0
  909. package/editions/tw5.com/tiddlers/Concatenating a text reference to create a URL.tid +13 -0
  910. package/editions/tw5.com/tiddlers/Concatenating variables to create a URL.tid +13 -0
  911. package/editions/tw5.com/tiddlers/Core CSS Variables.tid +11 -0
  912. package/editions/tw5.com/tiddlers/Deprecated Core Classes.tid +13 -0
  913. package/editions/tw5.com/tiddlers/Deprecated core macros.tid +31 -0
  914. package/editions/tw5.com/tiddlers/TiddlyWiki Docs PR Maker.tid +3 -4
  915. package/editions/tw5.com/tiddlers/Writing stylesheets in vanilla CSS.tid +69 -0
  916. package/editions/tw5.com/tiddlers/_tw_shared/doc-utilities/doc-macros.tid +44 -6
  917. package/editions/tw5.com/tiddlers/_tw_shared/doc-utilities/doc-styles.tid +15 -2
  918. package/editions/tw5.com/tiddlers/about/Archive.tid +2 -2
  919. package/editions/tw5.com/tiddlers/about/Developers.tid +2 -13
  920. package/editions/tw5.com/tiddlers/about/Donations.tid +16 -0
  921. package/editions/tw5.com/tiddlers/about/Filter Syntax History.tid +42 -0
  922. package/editions/tw5.com/tiddlers/about/Funding TiddlyWiki.tid +1 -1
  923. package/editions/tw5.com/tiddlers/about/History of TiddlyWiki.tid +6 -80
  924. package/editions/tw5.com/tiddlers/about/The Story of TiddlyWiki.tid +69 -0
  925. package/editions/tw5.com/tiddlers/about/TiddlyWiki Anniversaries.tid +31 -0
  926. package/editions/tw5.com/tiddlers/commands/RenderCommand.tid +2 -1
  927. package/editions/tw5.com/tiddlers/community/Articles.tid +1 -1
  928. package/editions/tw5.com/tiddlers/community/Community Editions.tid +1 -1
  929. package/editions/tw5.com/tiddlers/community/Community Palettes.tid +1 -1
  930. package/editions/tw5.com/tiddlers/community/Community Plugins.tid +1 -1
  931. package/editions/tw5.com/tiddlers/community/Community Survey 2025.tid +25 -0
  932. package/editions/tw5.com/tiddlers/community/Community Themes.tid +1 -1
  933. package/editions/tw5.com/tiddlers/community/Community.tid +3 -5
  934. package/editions/tw5.com/tiddlers/community/Contributing.tid +2 -2
  935. package/editions/tw5.com/tiddlers/community/Examples.tid +1 -1
  936. package/editions/tw5.com/tiddlers/community/Forums.tid +9 -17
  937. package/editions/tw5.com/tiddlers/community/Improving TiddlyWiki Documentation.tid +2 -2
  938. package/editions/tw5.com/tiddlers/community/Latest.tid +1 -1
  939. package/editions/tw5.com/tiddlers/community/Meetups.tid +1 -1
  940. package/editions/tw5.com/tiddlers/community/Other Resources.tid +1 -1
  941. package/editions/tw5.com/tiddlers/community/Resources.tid +11 -0
  942. package/editions/tw5.com/tiddlers/community/Signing the Contributor License Agreement.tid +2 -2
  943. package/editions/tw5.com/tiddlers/community/TiddlyWiki Newsletter.tid +5 -5
  944. package/editions/tw5.com/tiddlers/community/Tutorials.tid +1 -1
  945. package/editions/tw5.com/tiddlers/community/articles/_A free, open source wiki revisited_ by Mark Gibbs, NetworkWorld.tid +2 -1
  946. package/editions/tw5.com/tiddlers/community/editions/_Cardo-A Task and Project Management Wiki_ by David_Szego.tid +9 -2
  947. package/editions/tw5.com/tiddlers/community/examples/PETTIL.tid +1 -1
  948. package/editions/tw5.com/tiddlers/community/examples/Reveal.js by Devin Weaver.tid +1 -1
  949. package/editions/tw5.com/tiddlers/community/examples/_Lucky Sushi_ online shop by sini-Kit.tid +2 -1
  950. package/editions/tw5.com/tiddlers/community/plugins/IndexedDB Plugin by Andreas Abeck.tid +2 -1
  951. package/editions/tw5.com/tiddlers/community/plugins/Slider by Mohammad.tid +2 -2
  952. package/editions/tw5.com/tiddlers/community/plugins/TW5-Graph by Flibbles.tid +20 -0
  953. package/editions/tw5.com/tiddlers/community/resources/_savetiddlers_ Extension for Firefox by buggyj.tid +16 -0
  954. package/editions/tw5.com/tiddlers/community/tutorials/Un wiki sur votre BiblioBox avec TiddlyWiki.tid +2 -1
  955. package/editions/tw5.com/tiddlers/communitycards/tiddlywiki.files +11 -0
  956. package/editions/tw5.com/tiddlers/concepts/CompoundTiddlers.tid +2 -2
  957. package/editions/tw5.com/tiddlers/concepts/Date Fields.tid +3 -2
  958. package/editions/tw5.com/tiddlers/concepts/DefaultTiddlers.tid +1 -1
  959. package/editions/tw5.com/tiddlers/concepts/Filters.tid +2 -2
  960. package/editions/tw5.com/tiddlers/concepts/TiddlyWiki.tid +1 -1
  961. package/editions/tw5.com/tiddlers/css-variables/--tp-animation-duration CSS Variable.tid +8 -0
  962. package/editions/tw5.com/tiddlers/css-variables/--tp-body-font-size Variable.tid +8 -0
  963. package/editions/tw5.com/tiddlers/css-variables/--tp-body-line-height Variable.tid +8 -0
  964. package/editions/tw5.com/tiddlers/css-variables/--tp-code-font-family Variable.tid +8 -0
  965. package/editions/tw5.com/tiddlers/css-variables/--tp-code-wrapping Variable.tid +8 -0
  966. package/editions/tw5.com/tiddlers/css-variables/--tp-editor-font-family Variable.tid +8 -0
  967. package/editions/tw5.com/tiddlers/css-variables/--tp-font-family Variable.tid +8 -0
  968. package/editions/tw5.com/tiddlers/css-variables/--tp-font-size Variable.tid +8 -0
  969. package/editions/tw5.com/tiddlers/css-variables/--tp-line-height Variable.tid +8 -0
  970. package/editions/tw5.com/tiddlers/css-variables/--tp-sidebar-breakpoint CSS Variable.tid +8 -0
  971. package/editions/tw5.com/tiddlers/css-variables/--tp-sidebar-width CSS Variable.tid +8 -0
  972. package/editions/tw5.com/tiddlers/css-variables/--tp-story-left CSS Variable.tid +8 -0
  973. package/editions/tw5.com/tiddlers/css-variables/--tp-story-right CSS Variable.tid +8 -0
  974. package/editions/tw5.com/tiddlers/css-variables/--tp-story-top CSS Variable.tid +8 -0
  975. package/editions/tw5.com/tiddlers/css-variables/--tp-story-width CSS Variable.tid +8 -0
  976. package/editions/tw5.com/tiddlers/css-variables/--tp-tiddler-width CSS Variable.tid +8 -0
  977. package/editions/tw5.com/tiddlers/css-variables/--tpc-_ variables.tid +16 -0
  978. package/editions/tw5.com/tiddlers/definitions/BT.tid +1 -1
  979. package/editions/tw5.com/tiddlers/definitions/ContentType.tid +9 -8
  980. package/editions/tw5.com/tiddlers/definitions/Intertwingled Innovations.tid +1 -1
  981. package/editions/tw5.com/tiddlers/definitions/JeremyRuston.tid +1 -13
  982. package/editions/tw5.com/tiddlers/definitions/Jermolene.tid +1 -1
  983. package/editions/tw5.com/tiddlers/definitions/Osmosoft.tid +1 -1
  984. package/editions/tw5.com/tiddlers/demonstrations/SampleTiddlerFirst.tid +5 -2
  985. package/editions/tw5.com/tiddlers/demonstrations/SampleTiddlerSecond.tid +4 -2
  986. package/editions/tw5.com/tiddlers/demonstrations/TableOfContentsMacro Simple Example.tid +36 -4
  987. package/editions/tw5.com/tiddlers/demonstrations/Tasks/TaskManagementExample.tid +9 -9
  988. package/editions/tw5.com/tiddlers/demonstrations/Tasks/TaskManagementExampleDraggable.tid +7 -3
  989. package/editions/tw5.com/tiddlers/features/DateFormat.tid +18 -17
  990. package/editions/tw5.com/tiddlers/filters/examples/days.tid +5 -7
  991. package/editions/tw5.com/tiddlers/filters/examples/jsondelete.tid +59 -0
  992. package/editions/tw5.com/tiddlers/filters/examples/substitute Operator (Examples).tid +45 -22
  993. package/editions/tw5.com/tiddlers/filters/function.tid +2 -2
  994. package/editions/tw5.com/tiddlers/filters/jsondelete.tid +54 -0
  995. package/editions/tw5.com/tiddlers/filters/range.tid +36 -22
  996. package/editions/tw5.com/tiddlers/filters/substitute Operator.tid +2 -2
  997. package/editions/tw5.com/tiddlers/filters/syntax/Filter Expression.tid +2 -0
  998. package/editions/tw5.com/tiddlers/filters/syntax/Filter Parameter.tid +11 -1
  999. package/editions/tw5.com/tiddlers/filters/syntax/Filter Step.tid +8 -8
  1000. package/editions/tw5.com/tiddlers/filters/syntax/Filter Syntax.tid +1 -1
  1001. package/editions/tw5.com/tiddlers/filters/syntax/Interchangeable Filter Run Prefixes.tid +3 -0
  1002. package/editions/tw5.com/tiddlers/filters/syntax/Intersection Filter Run Prefix.tid +10 -1
  1003. package/editions/tw5.com/tiddlers/filters/syntax/Let Filter Run Prefix (Examples).tid +13 -0
  1004. package/editions/tw5.com/tiddlers/filters/syntax/Let Filter Run Prefix.tid +30 -0
  1005. package/editions/tw5.com/tiddlers/filters/syntax/Named Filter Run Prefix.tid +11 -0
  1006. package/editions/tw5.com/tiddlers/filters/syntax/Shortcut Filter Run Prefixes.tid +4 -3
  1007. package/editions/tw5.com/tiddlers/filters/syntax/then Filter Run Prefix.tid +1 -1
  1008. package/editions/tw5.com/tiddlers/filters/title.tid +2 -0
  1009. package/editions/tw5.com/tiddlers/functions/Functions.tid +6 -5
  1010. package/editions/tw5.com/tiddlers/hellothere/HelloThere.tid +1 -1
  1011. package/editions/tw5.com/tiddlers/hellothere/HelloThumbnail.tid +1 -1
  1012. package/editions/tw5.com/tiddlers/hellothere/thumbnails/HelloThumbnail - Community Survey.tid +9 -0
  1013. package/editions/tw5.com/tiddlers/hellothere/thumbnails/HelloThumbnail - Donations.tid +9 -0
  1014. package/editions/tw5.com/tiddlers/hellothere/thumbnails/HelloThumbnail - Grok TiddlyWiki.tid +0 -1
  1015. package/editions/tw5.com/tiddlers/hellothere/thumbnails/HelloThumbnail - Intertwingled Innovations.tid +1 -1
  1016. package/editions/tw5.com/tiddlers/hellothere/thumbnails/HelloThumbnail - Latest Version.tid +1 -0
  1017. package/editions/tw5.com/tiddlers/hellothere/thumbnails/HelloThumbnail - MultiWikiServer.tid +2 -2
  1018. package/editions/tw5.com/tiddlers/hellothere/thumbnails/HelloThumbnail - Newsletter.tid +3 -2
  1019. package/editions/tw5.com/tiddlers/hellothere/thumbnails/HelloThumbnail - TW5-Graph.tid +11 -0
  1020. package/editions/tw5.com/tiddlers/hellothere/thumbnails/HelloThumbnail - TiddlyWiki Privacy.tid +2 -2
  1021. package/editions/tw5.com/tiddlers/hellothere/thumbnails/HelloThumbnail - Twenty Years of TiddlyWiki.tid +0 -1
  1022. package/editions/tw5.com/tiddlers/hire-jeremy/Hire Jeremy Sidebar Segment.tid +15 -0
  1023. package/editions/tw5.com/tiddlers/hire-jeremy/HireJeremy.tid +56 -0
  1024. package/editions/tw5.com/tiddlers/hire-jeremy/HireJeremyDefinitions.tid +24 -0
  1025. package/editions/tw5.com/tiddlers/hire-jeremy/HireJeremyStyles.tid +163 -0
  1026. package/editions/tw5.com/tiddlers/howtos/Concatenating text and variables using macro substitution.tid +1 -1
  1027. package/editions/tw5.com/tiddlers/howtos/How to create dynamic editor toolbar buttons.tid +4 -1
  1028. package/editions/tw5.com/tiddlers/howtos/How to create keyboard shortcuts.tid +49 -38
  1029. package/editions/tw5.com/tiddlers/images/Blurry Lawn.jpg +0 -0
  1030. package/editions/tw5.com/tiddlers/images/Community Survey 2025 Image.webp +0 -0
  1031. package/editions/tw5.com/tiddlers/images/Community Survey 2025 Image.webp.meta +4 -0
  1032. package/editions/tw5.com/tiddlers/images/Intertwingled Innovations Image.webp +0 -0
  1033. package/editions/tw5.com/tiddlers/images/Intertwingled Innovations Image.webp.meta +3 -0
  1034. package/editions/tw5.com/tiddlers/images/MWS Banner.webp +0 -0
  1035. package/editions/tw5.com/tiddlers/images/MWS Banner.webp.meta +6 -0
  1036. package/editions/tw5.com/tiddlers/images/Marketplace Banner.webp +0 -0
  1037. package/editions/tw5.com/tiddlers/images/Marketplace Banner.webp.meta +4 -0
  1038. package/editions/tw5.com/tiddlers/images/New Release Banner.webp +0 -0
  1039. package/editions/tw5.com/tiddlers/images/New Release Banner.webp.meta +4 -0
  1040. package/editions/tw5.com/tiddlers/images/TW5-Graph.png +0 -0
  1041. package/editions/tw5.com/tiddlers/images/TW5-Graph.png.meta +4 -0
  1042. package/editions/tw5.com/tiddlers/images/Tiddler Poster.webp +0 -0
  1043. package/editions/tw5.com/tiddlers/images/Tiddler Poster.webp.meta +5 -0
  1044. package/editions/tw5.com/tiddlers/images/TiddlyFox Apocalypse.webp +0 -0
  1045. package/editions/tw5.com/tiddlers/images/TiddlyFox Apocalypse.webp.meta +4 -0
  1046. package/editions/tw5.com/tiddlers/images/TiddlyWiki Classic.webp +0 -0
  1047. package/editions/tw5.com/tiddlers/images/TiddlyWiki Classic.webp.meta +4 -0
  1048. package/editions/tw5.com/tiddlers/images/TiddlyWiki Donation Graphic.webp +0 -0
  1049. package/editions/tw5.com/tiddlers/images/TiddlyWiki Donation Graphic.webp.meta +4 -0
  1050. package/editions/tw5.com/tiddlers/images/TiddlyWiki Newsletter Badge.webp +0 -0
  1051. package/editions/tw5.com/tiddlers/images/TiddlyWiki Newsletter Badge.webp.meta +4 -0
  1052. package/editions/tw5.com/tiddlers/images/TiddlyWiki Privacy Badge.webp +0 -0
  1053. package/editions/tw5.com/tiddlers/images/TiddlyWiki Privacy Badge.webp.meta +4 -0
  1054. package/editions/tw5.com/tiddlers/images/Twenty Years of TiddlyWiki.webp +0 -0
  1055. package/editions/tw5.com/tiddlers/images/Twenty Years of TiddlyWiki.webp.meta +4 -0
  1056. package/editions/tw5.com/tiddlers/macros/StylesheetMacros.tid +2 -17
  1057. package/editions/tw5.com/tiddlers/macros/TableOfContentsMacro.tid +4 -1
  1058. package/editions/tw5.com/tiddlers/macros/examples/tabs.tid +12 -0
  1059. package/editions/tw5.com/tiddlers/macros/list-links-draggable Macro.tid +26 -8
  1060. package/editions/tw5.com/tiddlers/macros/list-tagged-draggable Macro.tid +20 -6
  1061. package/editions/tw5.com/tiddlers/macros/syntax/Call Syntax.tid +43 -0
  1062. package/editions/tw5.com/tiddlers/macros/syntax/CallParameterValue.tid +13 -0
  1063. package/editions/tw5.com/tiddlers/macros/syntax/Macro Call Syntax.tid +3 -27
  1064. package/editions/tw5.com/tiddlers/macros/syntax/Macro Definition Syntax.tid +1 -1
  1065. package/editions/tw5.com/tiddlers/macros/syntax/Procedure Call Syntax.tid +2 -29
  1066. package/editions/tw5.com/tiddlers/macros/syntax/Procedure Definition Syntax.tid +2 -2
  1067. package/editions/tw5.com/tiddlers/macros/syntax/Procedure Syntax.tid +1 -1
  1068. package/editions/tw5.com/tiddlers/macros/tag-pill_Macro.tid +13 -8
  1069. package/editions/tw5.com/tiddlers/mechanisms/Background Actions.tid +28 -0
  1070. package/editions/tw5.com/tiddlers/mechanisms/InfoMechanism.tid +30 -3
  1071. package/editions/tw5.com/tiddlers/mechanisms/MediaQueryTrackerMechanism.tid +13 -0
  1072. package/editions/tw5.com/tiddlers/nodejs/Installing official plugins on Node.js.tid +1 -0
  1073. package/editions/tw5.com/tiddlers/plugins/Plugin_Fields.tid +2 -1
  1074. package/editions/tw5.com/tiddlers/pragmas/Pragma_ _function.tid +1 -1
  1075. package/editions/tw5.com/tiddlers/pragmas/Pragma_ _procedure.tid +1 -1
  1076. package/editions/tw5.com/tiddlers/procedures/Procedure Calls.tid +2 -51
  1077. package/editions/tw5.com/tiddlers/procedures/Procedures.tid +2 -2
  1078. package/editions/tw5.com/tiddlers/procedures/calls/Calls.tid +64 -0
  1079. package/editions/tw5.com/tiddlers/releasenotes/5.3.8/#9133.tid +8 -0
  1080. package/editions/tw5.com/tiddlers/releasenotes/5.3.8/#9166.tid +8 -0
  1081. package/editions/tw5.com/tiddlers/releasenotes/5.3.8/#9175.tid +8 -0
  1082. package/editions/tw5.com/tiddlers/releasenotes/5.3.8/#9184.tid +8 -0
  1083. package/editions/tw5.com/tiddlers/releasenotes/5.3.8/#9185.tid +8 -0
  1084. package/editions/tw5.com/tiddlers/releasenotes/5.3.8/32caeb69c3e7b75a80a84a1e14363e87175b164e.tid +10 -0
  1085. package/editions/tw5.com/tiddlers/releasenotes/5.3.8/75502266176de9d4a5e1f89cd7f2e455b7a2f6da.tid +8 -0
  1086. package/editions/tw5.com/tiddlers/releasenotes/5.3.8/93d30f374da4a6b2037b335f7f7d4eddce8192db.tid +8 -0
  1087. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#7898.tid +11 -0
  1088. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#8093.tid +10 -0
  1089. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#8249-aes-256-bit.tid +25 -0
  1090. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#8258.tid +14 -0
  1091. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#8810.tid +12 -0
  1092. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#8972.tid +16 -0
  1093. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9015-muted-palette-adjustments.tid +11 -0
  1094. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9024 - audio-parser-widget-intercept.tid +10 -0
  1095. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9050.tid +13 -0
  1096. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9055.tid +27 -0
  1097. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9078.tid +16 -0
  1098. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9097.tid +13 -0
  1099. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9103.tid +18 -0
  1100. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9107 - update-configuration-defaults.tid +11 -0
  1101. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9118.tid +10 -0
  1102. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9119 - sticky-flag.tid +7 -0
  1103. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9119.tid +8 -0
  1104. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9131 - strikethrough.tid +9 -0
  1105. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9131.tid +8 -0
  1106. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9135.tid +10 -0
  1107. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9148.tid +10 -0
  1108. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9154.tid +8 -0
  1109. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9167.tid +10 -0
  1110. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9177.tid +12 -0
  1111. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9183 - core-server-pluginisation.tid +9 -0
  1112. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9183.tid +10 -0
  1113. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9203.tid +10 -0
  1114. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9206.tid +17 -0
  1115. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9207.tid +13 -0
  1116. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9214 - configure-edit-focus.tid +13 -0
  1117. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9235.tid +10 -0
  1118. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9242 - deprecate-css-macros.tid +7 -0
  1119. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9242.tid +10 -0
  1120. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9243.tid +8 -0
  1121. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9253 - textencoder.tid +8 -0
  1122. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9253.tid +10 -0
  1123. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9254-list-links-draggable-parameter-missing.tid +14 -0
  1124. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9259.tid +13 -0
  1125. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9259_impacts_deprecate-eventcatcher-attributes.tid +8 -0
  1126. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9260.tid +29 -0
  1127. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9275 - remove-range-widget-ie.tid +7 -0
  1128. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9275.tid +8 -0
  1129. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9277.tid +10 -0
  1130. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9280.tid +10 -0
  1131. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9281-add-th-debug-element.tid +17 -0
  1132. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9287.tid +10 -0
  1133. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9293-draft-moduls-not-executed.tid +19 -0
  1134. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9295.tid +14 -0
  1135. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9297.tid +12 -0
  1136. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9305.tid +13 -0
  1137. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9313.tid +10 -0
  1138. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9316 - currentcolor.tid +8 -0
  1139. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9316.tid +10 -0
  1140. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9317-eslint-ignore-output.tid +13 -0
  1141. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9328.tid +10 -0
  1142. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9333.tid +49 -0
  1143. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9337 - math-filters .tid +7 -0
  1144. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9337.tid +18 -0
  1145. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9341.tid +12 -0
  1146. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9347.tid +8 -0
  1147. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9348.tid +10 -0
  1148. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9349 - cjk-text-spacing.tid +10 -0
  1149. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9350 - deprecation.tid +8 -0
  1150. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9350.tid +20 -0
  1151. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9358.tid +10 -0
  1152. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9368 - fix-image-paste-rename-ux.tid +10 -0
  1153. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9371.tid +11 -0
  1154. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9375.tid +11 -0
  1155. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9401.tid +10 -0
  1156. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9422.tid +10 -0
  1157. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9427.tid +11 -0
  1158. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9439.tid +10 -0
  1159. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9445.tid +10 -0
  1160. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9453 - diff-text-editcost-param.tid +10 -0
  1161. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9454 - edit-text-rows-precedence.tid +10 -0
  1162. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9465.tid +15 -0
  1163. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9466.tid +15 -0
  1164. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9489.tid +10 -0
  1165. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9494.tid +10 -0
  1166. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9495.tid +10 -0
  1167. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9538.tid +10 -0
  1168. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9548.tid +10 -0
  1169. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9551.tid +15 -0
  1170. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9570.tid +10 -0
  1171. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9582.tid +10 -0
  1172. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9585 - button-classes.tid +13 -0
  1173. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9598.tid +11 -0
  1174. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9600.tid +10 -0
  1175. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9609.tid +24 -0
  1176. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9609_impacts_event detail variables in eventcatcher.json +13 -0
  1177. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9612-toc-level.tid +14 -0
  1178. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9617 - select-widget-refresh-default.tid +12 -0
  1179. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9621 - list-widget-macros-start-endactions.tid +16 -0
  1180. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9626.tid +10 -0
  1181. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9634-cascade-info-tab.tid +10 -0
  1182. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9641.tid +14 -0
  1183. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9655 - german-translations.tid +10 -0
  1184. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9660.tid +10 -0
  1185. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9676.tid +48 -0
  1186. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9703.tid +13 -0
  1187. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9782 - Greek translation.tid +13 -0
  1188. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/Release 5.4.0.tid +21 -0
  1189. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/add-stylesheet-wiki-info.tid +10 -0
  1190. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/bump-markdown-it.tid +18 -0
  1191. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/deprecate-util-func - deprecation.tid +8 -0
  1192. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/deprecate-util-func.tid +10 -0
  1193. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/draft-i18n.tid +15 -0
  1194. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/escapecss-split.tid +10 -0
  1195. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/improve-alert-a11y.tid +10 -0
  1196. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/leilei332-update-eslint-config.tid +14 -0
  1197. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/migrate-to-dmp-es - api.tid +11 -0
  1198. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/migrate-to-dmp-es.tid +10 -0
  1199. package/editions/tw5.com/tiddlers/releasenotes/5.4.0/refactor-base64-util.tid +14 -0
  1200. package/editions/tw5.com/tiddlers/releasenotes/Release Notes and Changes Internals.tid +65 -0
  1201. package/editions/tw5.com/tiddlers/releasenotes/Release Notes and Changes.tid +59 -0
  1202. package/editions/tw5.com/tiddlers/releasenotes/ReleaseTemplate.tid +1 -0
  1203. package/editions/tw5.com/tiddlers/releasenotes/ReleasesInfo.multids +67 -0
  1204. package/editions/tw5.com/tiddlers/releasenotes/ReleasesProcedures.tid +397 -0
  1205. package/editions/tw5.com/tiddlers/releasenotes/ReleasesStyles.tid +205 -0
  1206. package/editions/tw5.com/tiddlers/releasenotes/ReleasesSummaryLists.tid +3 -0
  1207. package/editions/tw5.com/tiddlers/releasenotes/ReleasesTabTemplate.tid +12 -0
  1208. package/editions/tw5.com/tiddlers/releasenotes/ReleasesViewTemplateBodyChangeNote.tid +6 -0
  1209. package/editions/tw5.com/tiddlers/releasenotes/ReleasesViewTemplateBodyFilters.tid +6 -0
  1210. package/editions/tw5.com/tiddlers/releasenotes/ReleasesViewTemplateBodyImpactNote.tid +6 -0
  1211. package/editions/tw5.com/tiddlers/releasenotes/TiddlyWiki Releases.tid +6 -4
  1212. package/editions/tw5.com/tiddlers/releasenotes/pre-5.4.0/Release 5.1.23.tid +298 -0
  1213. package/editions/tw5.com/tiddlers/releasenotes/pre-5.4.0/Release 5.2.0.tid +302 -0
  1214. package/editions/tw5.com/tiddlers/releasenotes/pre-5.4.0/Release 5.2.4.tid +145 -0
  1215. package/editions/tw5.com/tiddlers/releasenotes/pre-5.4.0/Release 5.2.6.tid +149 -0
  1216. package/editions/tw5.com/tiddlers/releasenotes/pre-5.4.0/Release 5.3.2.tid +184 -0
  1217. package/editions/tw5.com/tiddlers/releasenotes/pre-5.4.0/Release 5.3.7.tid +140 -0
  1218. package/editions/tw5.com/tiddlers/releasenotes/pre-5.4.0/Release 5.3.8.tid +19 -0
  1219. package/editions/tw5.com/tiddlers/roadmap/RoadMap.tid +7 -3
  1220. package/editions/tw5.com/tiddlers/roadmap/multiwikiserver/MultiWikiServer.tid +1 -1
  1221. package/editions/tw5.com/tiddlers/saving/Encrypted Wiki Import Problems.tid +22 -0
  1222. package/editions/tw5.com/tiddlers/saving/Encryption.tid +4 -4
  1223. package/editions/tw5.com/tiddlers/saving/Saving via WebDAV.tid +8 -1
  1224. package/editions/tw5.com/tiddlers/saving/Saving with the HTML5 fallback saver.tid +1 -1
  1225. package/editions/tw5.com/tiddlers/system/ContributionBanner.tid +1 -1
  1226. package/editions/tw5.com/tiddlers/system/DefaultTiddlers.tid +1 -1
  1227. package/editions/tw5.com/tiddlers/system/Sources.tid +1 -1
  1228. package/editions/tw5.com/tiddlers/system/TableOfContents.tid +1 -1
  1229. package/editions/tw5.com/tiddlers/system/download-empty.tid +1 -1
  1230. package/editions/tw5.com/tiddlers/systemtags/SystemTag_ $__tags_ClassFilters_TiddlerTemplate.tid +2 -2
  1231. package/editions/tw5.com/tiddlers/tag-pill Macro (Examples).tid +7 -1
  1232. package/editions/tw5.com/tiddlers/testcases/Calls/ProcedureDynamicAttributes.tid +40 -0
  1233. package/editions/tw5.com/tiddlers/testcases/Calls/ProcedureStaticAttributes.tid +48 -0
  1234. package/editions/tw5.com/tiddlers/testcases/RevealWidget/AccordionSlider.tid +1 -1
  1235. package/editions/tw5.com/tiddlers/testcases/RevealWidget/Popup.tid +1 -1
  1236. package/editions/tw5.com/tiddlers/testcases/RevealWidget/SimpleReveal.tid +1 -1
  1237. package/editions/tw5.com/tiddlers/testcases/RevealWidget/TextReference.tid +1 -1
  1238. package/editions/tw5.com/tiddlers/v5.4.0/Improvements to Macro Calls.tid +48 -0
  1239. package/editions/tw5.com/tiddlers/variables/Behaviour of called variables depends on how the variable was declared.tid +52 -0
  1240. package/editions/tw5.com/tiddlers/variables/Behaviour of variables invoked via filter expression function call.tid +1 -1
  1241. package/editions/tw5.com/tiddlers/variables/Behaviour of variables invoked via widget attributes.tid +3 -1
  1242. package/editions/tw5.com/tiddlers/variables/Multi-Valued Variables.tid +118 -0
  1243. package/editions/tw5.com/tiddlers/variables/Variables.tid +5 -3
  1244. package/editions/tw5.com/tiddlers/webserver/WebServer API_ Get All Tiddlers.tid +1 -1
  1245. package/editions/tw5.com/tiddlers/webserver/WebServer API_ Get File.tid +14 -3
  1246. package/editions/tw5.com/tiddlers/widgets/ActionLogWidget.tid +45 -18
  1247. package/editions/tw5.com/tiddlers/widgets/ButtonWidget.tid +7 -4
  1248. package/editions/tw5.com/tiddlers/widgets/DiffTextWidget.tid +57 -33
  1249. package/editions/tw5.com/tiddlers/widgets/EditTextWidget.tid +12 -13
  1250. package/editions/tw5.com/tiddlers/widgets/EventCatcherWidget.tid +109 -45
  1251. package/editions/tw5.com/tiddlers/widgets/ImageWidget.tid +18 -1
  1252. package/editions/tw5.com/tiddlers/widgets/LetWidget.tid +14 -2
  1253. package/editions/tw5.com/tiddlers/widgets/LinkWidget.tid +19 -2
  1254. package/editions/tw5.com/tiddlers/widgets/LogWidget.tid +43 -17
  1255. package/editions/tw5.com/tiddlers/widgets/RevealWidget.tid +46 -29
  1256. package/editions/tw5.com/tiddlers/widgets/examples/RevealWidget (Popup Clamping Example).tid +68 -0
  1257. package/editions/tw5.com/tiddlers/wikitext/Definitions in WikiText.tid +3 -10
  1258. package/editions/tw5.com/tiddlers/wikitext/Description Lists in WikiText.tid +44 -0
  1259. package/editions/tw5.com/tiddlers/wikitext/Formatting in WikiText.tid +1 -1
  1260. package/editions/tw5.com/tiddlers/wikitext/Lists in WikiText.tid +5 -1
  1261. package/editions/tw5.com/tiddlers/wikitext/Macro Calls.tid +1 -52
  1262. package/editions/tw5.com/tiddlers/wikitext/Multi-Valued Variable Attribute Values.tid +37 -0
  1263. package/editions/tw5.com/tiddlers/wikitext/Substituted Attribute Values.tid +5 -15
  1264. package/editions/tw5.com/tiddlers/wikitext/Tables in WikiText CSS Utility Classes.tid +11 -0
  1265. package/editions/tw5.com/tiddlers/wikitext/Transclusion in WikiText.tid +22 -0
  1266. package/editions/tw5.com/tiddlers/wikitext/Typed Blocks in WikiText.tid +31 -42
  1267. package/editions/tw5.com/tiddlers/wikitext/Widget Attributes.tid +3 -1
  1268. package/editions/tw5.com/tiddlers/wikitext/Widgets in WikiText.tid +1 -1
  1269. package/editions/tw5.com/tiddlers/wikitext/parser/Block Mode WikiText.tid +2 -2
  1270. package/editions/tw5.com/tiddlers/workingwithtw/TiddlyWiki Privacy and Security.tid +2 -1
  1271. package/editions/tw5.com/tiddlywiki.info +3 -3
  1272. package/editions/zh-Hans/tiddlers/system/download-empty-zh-Hans.tid +1 -1
  1273. package/editions/zh-Hans/tiddlywiki.info +1 -2
  1274. package/editions/zh-Hant/tiddlers/system/download-empty-zh-Hant.tid +1 -1
  1275. package/editions/zh-Hant/tiddlywiki.info +1 -2
  1276. package/eslint.config.mjs +327 -0
  1277. package/languages/ca-ES/ControlPanel.multids +1 -1
  1278. package/languages/da-DK/ControlPanel.multids +1 -1
  1279. package/languages/de-DE/ControlPanel.multids +7 -3
  1280. package/languages/de-DE/Draft.multids +4 -0
  1281. package/languages/de-DE/Import.multids +3 -1
  1282. package/languages/de-DE/Misc.multids +1 -0
  1283. package/languages/de-DE/TiddlerInfo.multids +5 -0
  1284. package/languages/el-GR/Buttons.multids +73 -0
  1285. package/languages/el-GR/ControlPanel.multids +119 -57
  1286. package/languages/el-GR/Dates.multids +67 -0
  1287. package/languages/el-GR/Docs/ModuleTypes.multids +8 -0
  1288. package/languages/el-GR/Docs/PaletteColours.multids +26 -1
  1289. package/languages/el-GR/Draft.multids +4 -0
  1290. package/languages/el-GR/EditTemplate.multids +21 -2
  1291. package/languages/el-GR/Exporters.multids +3 -2
  1292. package/languages/el-GR/Fields.multids +12 -0
  1293. package/languages/el-GR/Filters.multids +5 -0
  1294. package/languages/el-GR/Help/help.tid +10 -0
  1295. package/languages/el-GR/Help/unpackplugin.tid +8 -0
  1296. package/languages/el-GR/Help/version.tid +8 -0
  1297. package/languages/el-GR/Import.multids +9 -1
  1298. package/languages/el-GR/Misc.multids +46 -6
  1299. package/languages/el-GR/NewJournal.multids +2 -0
  1300. package/languages/el-GR/Notifications.multids +2 -0
  1301. package/languages/el-GR/Search.multids +13 -0
  1302. package/languages/el-GR/SideBar.multids +15 -0
  1303. package/languages/el-GR/SiteSubtitle.tid +1 -0
  1304. package/languages/el-GR/ThemeTweaks.multids +24 -2
  1305. package/languages/el-GR/TiddlerInfo.multids +19 -0
  1306. package/languages/el-GR/Types/image_gif.tid +4 -0
  1307. package/languages/el-GR/Types/image_jpeg.tid +4 -0
  1308. package/languages/el-GR/Types/image_png.tid +4 -0
  1309. package/languages/el-GR/Types/text_html.tid +4 -0
  1310. package/languages/el-GR/Types/text_plain.tid +4 -0
  1311. package/languages/el-GR/Types/text_vnd.tiddlywiki.tid +4 -0
  1312. package/languages/es-ES/ControlPanel.multids +16 -10
  1313. package/languages/es-ES/Fields.multids +3 -3
  1314. package/languages/es-ES/Misc.multids +1 -1
  1315. package/languages/fa-IR/plugin.info +1 -1
  1316. package/languages/fr-FR/ControlPanel.multids +15 -7
  1317. package/languages/fr-FR/Misc.multids +1 -0
  1318. package/languages/it-IT/ControlPanel.multids +1 -1
  1319. package/languages/ja-JP/Buttons.multids +15 -4
  1320. package/languages/ja-JP/ControlPanel.multids +35 -7
  1321. package/languages/ja-JP/Docs/ModuleTypes.multids +10 -1
  1322. package/languages/ja-JP/Docs/PaletteColours.multids +15 -0
  1323. package/languages/ja-JP/Draft.multids +4 -0
  1324. package/languages/ja-JP/EditTemplate.multids +2 -0
  1325. package/languages/ja-JP/Exporters.multids +4 -1
  1326. package/languages/ja-JP/Fields.multids +14 -8
  1327. package/languages/ja-JP/GettingStarted.tid +7 -14
  1328. package/languages/ja-JP/Help/commands.tid +18 -0
  1329. package/languages/ja-JP/Help/deletetiddlers.tid +8 -0
  1330. package/languages/ja-JP/Help/fetch.tid +38 -0
  1331. package/languages/ja-JP/Help/import.tid +24 -0
  1332. package/languages/ja-JP/Help/listen.tid +34 -0
  1333. package/languages/ja-JP/Help/load.tid +5 -2
  1334. package/languages/ja-JP/Help/password.tid +1 -1
  1335. package/languages/ja-JP/Help/render.tid +36 -0
  1336. package/languages/ja-JP/Help/rendertiddler.tid +19 -3
  1337. package/languages/ja-JP/Help/rendertiddlers.tid +9 -3
  1338. package/languages/ja-JP/Help/save.tid +25 -0
  1339. package/languages/ja-JP/Help/savetiddler.tid +7 -1
  1340. package/languages/ja-JP/Help/savetiddlers.tid +8 -6
  1341. package/languages/ja-JP/Help/savewikifolder.tid +34 -0
  1342. package/languages/ja-JP/Help/server.tid +24 -13
  1343. package/languages/ja-JP/Import.multids +3 -1
  1344. package/languages/ja-JP/Misc.multids +36 -35
  1345. package/languages/ja-JP/NewJournal.multids +1 -1
  1346. package/languages/ja-JP/NewJournalTags.tid +3 -0
  1347. package/languages/ja-JP/Notifications.multids +2 -0
  1348. package/languages/ja-JP/Search.multids +3 -1
  1349. package/languages/ja-JP/SideBar.multids +1 -1
  1350. package/languages/ja-JP/SiteTitle.tid +1 -1
  1351. package/languages/ja-JP/Snippets/FunctionDefinition.tid +7 -0
  1352. package/languages/ja-JP/Snippets/ListByTag.tid +5 -0
  1353. package/languages/ja-JP/Snippets/MacroDefinition.tid +7 -0
  1354. package/languages/ja-JP/Snippets/ProcedureDefinition.tid +7 -0
  1355. package/languages/ja-JP/Snippets/Table4x3.tid +8 -0
  1356. package/languages/ja-JP/Snippets/TableOfContents.tid +9 -0
  1357. package/languages/ja-JP/ThemeTweaks.multids +42 -0
  1358. package/languages/ja-JP/TiddlerInfo.multids +6 -1
  1359. package/languages/ja-JP/Types/application_javascript.tid +5 -0
  1360. package/languages/ja-JP/Types/application_json.tid +5 -0
  1361. package/languages/ja-JP/Types/application_x-tiddler-dictionary.tid +5 -0
  1362. package/languages/ja-JP/Types/image_gif.tid +5 -0
  1363. package/languages/ja-JP/Types/image_jpeg.tid +5 -0
  1364. package/languages/ja-JP/Types/image_png.tid +5 -0
  1365. package/languages/ja-JP/Types/image_svg+xml.tid +5 -0
  1366. package/languages/ja-JP/Types/text_css.tid +5 -0
  1367. package/languages/ja-JP/Types/text_html.tid +5 -0
  1368. package/languages/ja-JP/Types/text_plain.tid +5 -0
  1369. package/languages/ja-JP/Types/text_vnd.tiddlywiki-multiple.tid +5 -0
  1370. package/languages/ja-JP/Types/text_vnd.tiddlywiki.tid +5 -0
  1371. package/languages/mk-MK/ControlPanel.multids +1 -1
  1372. package/languages/nl-NL/ControlPanel.multids +1 -1
  1373. package/languages/pl-PL/ControlPanel.multids +12 -8
  1374. package/languages/pl-PL/Fields.multids +1 -0
  1375. package/languages/pt-BR/ControlPanel.multids +1 -1
  1376. package/languages/pt-PT/ControlPanel.multids +1 -1
  1377. package/languages/sl-SI/ControlPanel.multids +1 -1
  1378. package/languages/zh-Hans/ControlPanel.multids +6 -2
  1379. package/languages/zh-Hans/Draft.multids +4 -0
  1380. package/languages/zh-Hans/Import.multids +2 -0
  1381. package/languages/zh-Hans/Misc.multids +1 -0
  1382. package/languages/zh-Hans/TiddlerInfo.multids +5 -0
  1383. package/languages/zh-Hant/ControlPanel.multids +7 -3
  1384. package/languages/zh-Hant/Draft.multids +4 -0
  1385. package/languages/zh-Hant/Import.multids +2 -0
  1386. package/languages/zh-Hant/Misc.multids +1 -0
  1387. package/languages/zh-Hant/TiddlerInfo.multids +5 -0
  1388. package/licenses/cla-individual.md +26 -0
  1389. package/package.json +9 -6
  1390. package/playwright.config.js +5 -0
  1391. package/plugins/tiddlywiki/aws/modules/command.js +2 -6
  1392. package/plugins/tiddlywiki/aws/modules/init.js +1 -1
  1393. package/plugins/tiddlywiki/bibtex/deserializer.js +1 -1
  1394. package/plugins/tiddlywiki/browser-sniff/browser.js +1 -2
  1395. package/plugins/tiddlywiki/browser-storage/settings.tid +1 -1
  1396. package/plugins/tiddlywiki/browser-storage/startup.js +4 -10
  1397. package/plugins/tiddlywiki/browser-storage/util.js +72 -74
  1398. package/plugins/tiddlywiki/codemirror/engine.js +48 -46
  1399. package/plugins/tiddlywiki/confetti/confetti-widget.js +0 -2
  1400. package/plugins/tiddlywiki/dom-to-image/docs.tid +66 -0
  1401. package/plugins/tiddlywiki/dom-to-image/files/LICENSE +29 -0
  1402. package/plugins/tiddlywiki/dom-to-image/files/dom-to-image-more.min.js +3 -0
  1403. package/plugins/tiddlywiki/dom-to-image/files/tiddlywiki.files +21 -0
  1404. package/plugins/tiddlywiki/dom-to-image/plugin.info +7 -0
  1405. package/plugins/tiddlywiki/dom-to-image/readme.tid +3 -0
  1406. package/plugins/tiddlywiki/dom-to-image/startup.js +92 -0
  1407. package/plugins/tiddlywiki/dynannotate/modules/dynannotate.js +4 -12
  1408. package/plugins/tiddlywiki/dynannotate/modules/element-spotlight.js +1 -1
  1409. package/plugins/tiddlywiki/dynannotate/modules/selection-tracker.js +4 -4
  1410. package/plugins/tiddlywiki/dynannotate/modules/textmap.js +5 -5
  1411. package/plugins/tiddlywiki/dynaview/dynaview.js +1 -1
  1412. package/plugins/tiddlywiki/evernote/modules/enex-deserializer.js +5 -5
  1413. package/plugins/tiddlywiki/external-attachments/startup.js +2 -2
  1414. package/plugins/tiddlywiki/filesystem/filesystemadaptor.js +1 -3
  1415. package/plugins/tiddlywiki/filesystem/plugin.info +1 -0
  1416. package/plugins/tiddlywiki/freelinks/aho-corasick.js +190 -0
  1417. package/plugins/tiddlywiki/freelinks/config-Freelinks-WordBoundary.tid +2 -0
  1418. package/plugins/tiddlywiki/freelinks/readme.tid +26 -5
  1419. package/plugins/tiddlywiki/freelinks/settings.tid +2 -0
  1420. package/plugins/tiddlywiki/freelinks/text.js +229 -113
  1421. package/plugins/tiddlywiki/geospatial/geotools.js +2 -2
  1422. package/plugins/tiddlywiki/geospatial/operators/lookup.js +1 -1
  1423. package/plugins/tiddlywiki/geospatial/operators/olc.js +3 -4
  1424. package/plugins/tiddlywiki/geospatial/operators/transformation.js +2 -3
  1425. package/plugins/tiddlywiki/geospatial/widgets/geomap.js +9 -9
  1426. package/plugins/tiddlywiki/googleanalytics/googleanalytics.js +1 -1
  1427. package/plugins/tiddlywiki/highlight/files/highlight.min.js +1132 -1289
  1428. package/plugins/tiddlywiki/highlight/highlightblock.js +4 -4
  1429. package/plugins/tiddlywiki/highlight/readme.tid +1 -1
  1430. package/plugins/tiddlywiki/highlight/usage.tid +2 -2
  1431. package/plugins/tiddlywiki/innerwiki/innerwiki.js +2 -3
  1432. package/plugins/tiddlywiki/innerwiki/screenshot.js +1 -3
  1433. package/plugins/tiddlywiki/jasmine/jasmine-plugin.js +12 -3
  1434. package/plugins/tiddlywiki/jasmine/run-wiki-based-tests.js +3 -5
  1435. package/plugins/tiddlywiki/jasmine/startup.js +1 -1
  1436. package/plugins/tiddlywiki/jszip/startup.js +3 -3
  1437. package/plugins/tiddlywiki/katex/files/contrib/mhchem.min.js +1 -1
  1438. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_AMS-Regular.woff2 +0 -0
  1439. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Caligraphic-Bold.woff2 +0 -0
  1440. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Fraktur-Bold.woff2 +0 -0
  1441. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Fraktur-Regular.woff2 +0 -0
  1442. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Main-Bold.woff2 +0 -0
  1443. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Main-BoldItalic.woff2 +0 -0
  1444. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Main-Italic.woff2 +0 -0
  1445. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Main-Regular.woff2 +0 -0
  1446. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Math-BoldItalic.woff2 +0 -0
  1447. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Math-Italic.woff2 +0 -0
  1448. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_SansSerif-Bold.woff2 +0 -0
  1449. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_SansSerif-Italic.woff2 +0 -0
  1450. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_SansSerif-Regular.woff2 +0 -0
  1451. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Script-Regular.woff2 +0 -0
  1452. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Size1-Regular.woff2 +0 -0
  1453. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Size2-Regular.woff2 +0 -0
  1454. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Size3-Regular.woff2 +0 -0
  1455. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Size4-Regular.woff2 +0 -0
  1456. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Typewriter-Regular.woff2 +0 -0
  1457. package/plugins/tiddlywiki/katex/files/katex.min.css +1 -1
  1458. package/plugins/tiddlywiki/katex/files/katex.min.js +1 -1
  1459. package/plugins/tiddlywiki/katex/files/katex.without-font-face.min.css +1 -1
  1460. package/plugins/tiddlywiki/katex/files/tiddlywiki.files +2 -2
  1461. package/plugins/tiddlywiki/katex/latex-parser.js +1 -1
  1462. package/plugins/tiddlywiki/katex/readme.tid +1 -1
  1463. package/plugins/tiddlywiki/katex/styles.tid +40 -20
  1464. package/plugins/tiddlywiki/katex/wrapper.js +1 -1
  1465. package/plugins/tiddlywiki/markdown/editor-operations/make-markdown-link.js +1 -1
  1466. package/plugins/tiddlywiki/markdown/files/markdown-it-deflist.min.js +2 -7
  1467. package/plugins/tiddlywiki/markdown/files/markdown-it-footnote.min.js +2 -1
  1468. package/plugins/tiddlywiki/markdown/files/markdown-it-ins.min.js +2 -2
  1469. package/plugins/tiddlywiki/markdown/files/markdown-it-mark.min.js +2 -2
  1470. package/plugins/tiddlywiki/markdown/files/markdown-it-sub.min.js +2 -2
  1471. package/plugins/tiddlywiki/markdown/files/markdown-it-sup.min.js +2 -2
  1472. package/plugins/tiddlywiki/markdown/files/markdown-it.min.js +2 -3
  1473. package/plugins/tiddlywiki/markdown/markdown-it-katex.js +131 -131
  1474. package/plugins/tiddlywiki/markdown/markdown-it-tiddlywiki.js +102 -104
  1475. package/plugins/tiddlywiki/markdown/styles.tid +3 -0
  1476. package/plugins/tiddlywiki/markdown/wrapper.js +32 -23
  1477. package/plugins/tiddlywiki/markdown-legacy/wrapper.js +143 -144
  1478. package/plugins/tiddlywiki/qrcode/makeqr.js +1 -1
  1479. package/plugins/tiddlywiki/railroad/components.js +21 -21
  1480. package/plugins/tiddlywiki/railroad/parser.js +4 -4
  1481. package/plugins/tiddlywiki/railroad/typed-parser.js +5 -5
  1482. package/plugins/tiddlywiki/railroad/wrapper.js +1 -1
  1483. package/plugins/tiddlywiki/stacked-view/stacked.js +0 -1
  1484. package/plugins/tiddlywiki/text-slicer/modules/commands/slice.js +15 -16
  1485. package/plugins/tiddlywiki/text-slicer/modules/slicer.js +69 -70
  1486. package/plugins/tiddlywiki/text-slicer/modules/startup/slicer-startup.js +1 -1
  1487. package/plugins/tiddlywiki/tiddlyweb/config-tiddlers-filter.tid +1 -1
  1488. package/plugins/tiddlywiki/tiddlyweb/save-offline.tid +1 -1
  1489. package/plugins/tiddlywiki/tiddlyweb/tiddlywebadaptor.js +5 -7
  1490. package/plugins/tiddlywiki/translators/output-file-templates/Draft.multids.tid +3 -0
  1491. package/plugins/tiddlywiki/translators/output-file-templates/Misc.multids.tid +1 -0
  1492. package/plugins/tiddlywiki/translators/ui/group/Draft.tid +28 -0
  1493. package/plugins/tiddlywiki/translators/ui/group/Miscellaneous.tid +1 -0
  1494. package/plugins/tiddlywiki/tw2parser/classictransclude.js +3 -4
  1495. package/plugins/tiddlywiki/tw2parser/entry.js +1 -1
  1496. package/plugins/tiddlywiki/tw2parser/parameteradapter.js +6 -5
  1497. package/plugins/tiddlywiki/tw2parser/wikitextrules.js +594 -598
  1498. package/plugins/tiddlywiki/tw5.com-docs/readme.tid +1 -1
  1499. package/plugins/tiddlywiki/twitter/twitter-widget.js +3 -3
  1500. package/plugins/tiddlywiki/twitter-archivist/archivist.js +41 -10
  1501. package/plugins/tiddlywiki/twitter-archivist/loadtwitterarchive.js +5 -7
  1502. package/plugins/tiddlywiki/twitter-archivist/startup.js +4 -4
  1503. package/plugins/tiddlywiki/upgrade/save-tiddler-filter.tid +1 -1
  1504. package/plugins/tiddlywiki/wikitext-serialize/plugin.info +7 -0
  1505. package/plugins/tiddlywiki/wikitext-serialize/rules/codeblock.js +13 -0
  1506. package/plugins/tiddlywiki/wikitext-serialize/rules/codeinline.js +13 -0
  1507. package/plugins/tiddlywiki/wikitext-serialize/rules/commentblock.js +13 -0
  1508. package/plugins/tiddlywiki/wikitext-serialize/rules/commentinline.js +13 -0
  1509. package/plugins/tiddlywiki/wikitext-serialize/rules/conditional.js +42 -0
  1510. package/plugins/tiddlywiki/wikitext-serialize/rules/dash.js +13 -0
  1511. package/plugins/tiddlywiki/wikitext-serialize/rules/emphasis/bold.js +13 -0
  1512. package/plugins/tiddlywiki/wikitext-serialize/rules/emphasis/italic.js +13 -0
  1513. package/plugins/tiddlywiki/wikitext-serialize/rules/emphasis/strikethrough.js +13 -0
  1514. package/plugins/tiddlywiki/wikitext-serialize/rules/emphasis/subscript.js +13 -0
  1515. package/plugins/tiddlywiki/wikitext-serialize/rules/emphasis/superscript.js +13 -0
  1516. package/plugins/tiddlywiki/wikitext-serialize/rules/emphasis/underscore.js +13 -0
  1517. package/plugins/tiddlywiki/wikitext-serialize/rules/entity.js +13 -0
  1518. package/plugins/tiddlywiki/wikitext-serialize/rules/extlink.js +17 -0
  1519. package/plugins/tiddlywiki/wikitext-serialize/rules/filteredtranscludeblock.js +24 -0
  1520. package/plugins/tiddlywiki/wikitext-serialize/rules/filteredtranscludeinline.js +15 -0
  1521. package/plugins/tiddlywiki/wikitext-serialize/rules/fnprocdef.js +24 -0
  1522. package/plugins/tiddlywiki/wikitext-serialize/rules/hardlinebreaks.js +20 -0
  1523. package/plugins/tiddlywiki/wikitext-serialize/rules/heading.js +17 -0
  1524. package/plugins/tiddlywiki/wikitext-serialize/rules/horizrule.js +13 -0
  1525. package/plugins/tiddlywiki/wikitext-serialize/rules/html.js +34 -0
  1526. package/plugins/tiddlywiki/wikitext-serialize/rules/image.js +18 -0
  1527. package/plugins/tiddlywiki/wikitext-serialize/rules/import.js +15 -0
  1528. package/plugins/tiddlywiki/wikitext-serialize/rules/list.js +76 -0
  1529. package/plugins/tiddlywiki/wikitext-serialize/rules/macrocallblock.js +27 -0
  1530. package/plugins/tiddlywiki/wikitext-serialize/rules/macrocallinline.js +15 -0
  1531. package/plugins/tiddlywiki/wikitext-serialize/rules/macrodef.js +21 -0
  1532. package/plugins/tiddlywiki/wikitext-serialize/rules/parameters.js +16 -0
  1533. package/plugins/tiddlywiki/wikitext-serialize/rules/parsermode.js +14 -0
  1534. package/plugins/tiddlywiki/wikitext-serialize/rules/prettyextlink.js +15 -0
  1535. package/plugins/tiddlywiki/wikitext-serialize/rules/prettylink.js +15 -0
  1536. package/plugins/tiddlywiki/wikitext-serialize/rules/quoteblock.js +24 -0
  1537. package/plugins/tiddlywiki/wikitext-serialize/rules/rules.js +26 -0
  1538. package/plugins/tiddlywiki/wikitext-serialize/rules/styleblock.js +57 -0
  1539. package/plugins/tiddlywiki/wikitext-serialize/rules/styleinline.js +28 -0
  1540. package/plugins/tiddlywiki/wikitext-serialize/rules/syslink.js +18 -0
  1541. package/plugins/tiddlywiki/wikitext-serialize/rules/table.js +39 -0
  1542. package/plugins/tiddlywiki/wikitext-serialize/rules/transcludeblock.js +57 -0
  1543. package/plugins/tiddlywiki/wikitext-serialize/rules/transcludeinline.js +15 -0
  1544. package/plugins/tiddlywiki/wikitext-serialize/rules/typedblock.js +16 -0
  1545. package/plugins/tiddlywiki/wikitext-serialize/rules/wikilink.js +17 -0
  1546. package/plugins/tiddlywiki/wikitext-serialize/rules/wikilinkprefix.js +15 -0
  1547. package/plugins/tiddlywiki/wikitext-serialize/utils/parsetree.js +132 -0
  1548. package/plugins/tiddlywiki/xlsx-utils/deserializer.js +1 -2
  1549. package/plugins/tiddlywiki/xlsx-utils/importer.js +30 -18
  1550. package/plugins/tiddlywiki/xlsx-utils/xlsx-import-command.js +1 -2
  1551. package/readme.md +2 -5
  1552. package/themes/tiddlywiki/snowwhite/base.tid +34 -20
  1553. package/themes/tiddlywiki/vanilla/base.tid +135 -50
  1554. package/themes/tiddlywiki/vanilla/options.multids +1 -1
  1555. package/.github/ISSUE_TEMPLATE/bug_report.yml +0 -67
  1556. package/.github/workflows/pr-path-validation.yml +0 -18
  1557. package/core/modules/commander.js +0 -172
  1558. package/core/modules/commands/commands.js +0 -36
  1559. package/core/modules/commands/deletetiddlers.js +0 -37
  1560. package/core/modules/commands/fetch.js +0 -170
  1561. package/core/modules/commands/import.js +0 -43
  1562. package/core/modules/commands/init.js +0 -54
  1563. package/core/modules/commands/listen.js +0 -43
  1564. package/core/modules/commands/load.js +0 -46
  1565. package/core/modules/commands/output.js +0 -33
  1566. package/core/modules/commands/render.js +0 -65
  1567. package/core/modules/commands/rendertiddlers.js +0 -64
  1568. package/core/modules/commands/save.js +0 -63
  1569. package/core/modules/commands/savetiddlers.js +0 -51
  1570. package/core/modules/commands/savewikifolder.js +0 -220
  1571. package/core/modules/commands/server.js +0 -50
  1572. package/core/modules/commands/setfield.js +0 -53
  1573. package/core/modules/server/authenticators/basic.js +0 -89
  1574. package/core/modules/server/routes/delete-tiddler.js +0 -22
  1575. package/core/modules/server/routes/get-favicon.js +0 -18
  1576. package/core/modules/server/routes/get-file.js +0 -42
  1577. package/core/modules/server/routes/get-index.js +0 -21
  1578. package/core/modules/server/routes/get-login-basic.js +0 -30
  1579. package/core/modules/server/routes/get-status.js +0 -27
  1580. package/core/modules/server/routes/get-tiddler-html.js +0 -38
  1581. package/core/modules/server/routes/get-tiddler.js +0 -40
  1582. package/core/modules/server/routes/get-tiddlers-json.js +0 -44
  1583. package/core/modules/server/routes/put-tiddler.js +0 -46
  1584. package/core/modules/server/server.js +0 -373
  1585. package/core/modules/utils/base64-utf8/base64-utf8.module.js +0 -142
  1586. package/core/modules/utils/base64-utf8/base64-utf8.module.min.js +0 -9
  1587. package/core/modules/utils/base64-utf8/tiddlywiki.files +0 -14
  1588. package/core/modules/utils/filesystem.js +0 -542
  1589. package/core/modules/utils/repository.js +0 -46
  1590. package/editions/d3demo/tiddlers/CloudData.tid +0 -44
  1591. package/editions/d3demo/tiddlers/DefaultTiddlers.tid +0 -3
  1592. package/editions/d3demo/tiddlers/GraphData.tid +0 -10
  1593. package/editions/d3demo/tiddlers/HelloThere.tid +0 -17
  1594. package/editions/d3demo/tiddlers/SiteSubtitle.tid +0 -3
  1595. package/editions/d3demo/tiddlers/SiteTitle.tid +0 -3
  1596. package/editions/d3demo/tiddlers/grouped.tid +0 -3
  1597. package/editions/d3demo/tiddlers/spiral.tid +0 -3
  1598. package/editions/d3demo/tiddlywiki.info +0 -16
  1599. package/editions/fr-FR/tiddlers/community/resources/_savetiddlers_ Extension for Chrome and Firefox by buggyj.tid +0 -17
  1600. package/editions/ja-JP/tiddlers/community/resources/_savetiddlers_ Extension for Chrome and Firefox by buggyj.tid +0 -18
  1601. package/editions/ja-JP/tiddlers/hellothere/Welcome.tid +0 -8
  1602. package/editions/ja-JP/tiddlers/hellothere/thumbnails/HelloThumbnail - Funding.tid +0 -10
  1603. package/editions/tahoelafs/tiddlers/DefaultTiddlers.tid +0 -3
  1604. package/editions/tahoelafs/tiddlers/HelloThere.tid +0 -6
  1605. package/editions/tahoelafs/tiddlers/SiteSubtitle.tid +0 -3
  1606. package/editions/tahoelafs/tiddlers/SiteTitle.tid +0 -3
  1607. package/editions/tahoelafs/tiddlywiki.info +0 -14
  1608. package/editions/tiddlywiki-surveys/great-interview-project-2010/The great TiddlyWiki interview project.htm +0 -23430
  1609. package/editions/tiddlywiki-surveys/great-interview-project-2010/The great TiddlyWiki interview project_files/SiteIcon +0 -0
  1610. package/editions/tiddlywiki-surveys/great-interview-project-2010/The great TiddlyWiki interview project_files/SiteIcon(1) +0 -0
  1611. package/editions/tiddlywiki-surveys/great-interview-project-2010/The great TiddlyWiki interview project_files/SiteIcon(10) +0 -0
  1612. package/editions/tiddlywiki-surveys/great-interview-project-2010/The great TiddlyWiki interview project_files/SiteIcon(11) +0 -0
  1613. package/editions/tiddlywiki-surveys/great-interview-project-2010/The great TiddlyWiki interview project_files/SiteIcon(12) +0 -0
  1614. package/editions/tiddlywiki-surveys/great-interview-project-2010/The great TiddlyWiki interview project_files/SiteIcon(13) +0 -0
  1615. package/editions/tiddlywiki-surveys/great-interview-project-2010/The great TiddlyWiki interview project_files/SiteIcon(14) +0 -0
  1616. package/editions/tiddlywiki-surveys/great-interview-project-2010/The great TiddlyWiki interview project_files/SiteIcon(15) +0 -0
  1617. package/editions/tiddlywiki-surveys/great-interview-project-2010/The great TiddlyWiki interview project_files/SiteIcon(16) +0 -0
  1618. package/editions/tiddlywiki-surveys/great-interview-project-2010/The great TiddlyWiki interview project_files/SiteIcon(17) +0 -0
  1619. package/editions/tiddlywiki-surveys/great-interview-project-2010/The great TiddlyWiki interview project_files/SiteIcon(18) +0 -0
  1620. package/editions/tiddlywiki-surveys/great-interview-project-2010/The great TiddlyWiki interview project_files/SiteIcon(19) +0 -0
  1621. package/editions/tiddlywiki-surveys/great-interview-project-2010/The great TiddlyWiki interview project_files/SiteIcon(2) +0 -0
  1622. package/editions/tiddlywiki-surveys/great-interview-project-2010/The great TiddlyWiki interview project_files/SiteIcon(20) +0 -0
  1623. package/editions/tiddlywiki-surveys/great-interview-project-2010/The great TiddlyWiki interview project_files/SiteIcon(21) +0 -0
  1624. package/editions/tiddlywiki-surveys/great-interview-project-2010/The great TiddlyWiki interview project_files/SiteIcon(22) +0 -0
  1625. package/editions/tiddlywiki-surveys/great-interview-project-2010/The great TiddlyWiki interview project_files/SiteIcon(23) +0 -0
  1626. package/editions/tiddlywiki-surveys/great-interview-project-2010/The great TiddlyWiki interview project_files/SiteIcon(24) +0 -0
  1627. package/editions/tiddlywiki-surveys/great-interview-project-2010/The great TiddlyWiki interview project_files/SiteIcon(3) +0 -0
  1628. package/editions/tiddlywiki-surveys/great-interview-project-2010/The great TiddlyWiki interview project_files/SiteIcon(4) +0 -0
  1629. package/editions/tiddlywiki-surveys/great-interview-project-2010/The great TiddlyWiki interview project_files/SiteIcon(5) +0 -0
  1630. package/editions/tiddlywiki-surveys/great-interview-project-2010/The great TiddlyWiki interview project_files/SiteIcon(6) +0 -0
  1631. package/editions/tiddlywiki-surveys/great-interview-project-2010/The great TiddlyWiki interview project_files/SiteIcon(7) +0 -0
  1632. package/editions/tiddlywiki-surveys/great-interview-project-2010/The great TiddlyWiki interview project_files/SiteIcon(8) +0 -0
  1633. package/editions/tiddlywiki-surveys/great-interview-project-2010/The great TiddlyWiki interview project_files/SiteIcon(9) +0 -0
  1634. package/editions/tiddlywiki-surveys/great-interview-project-2010/The great TiddlyWiki interview project_files/app.css +0 -191
  1635. package/editions/tiddlywiki-surveys/great-interview-project-2010/The great TiddlyWiki interview project_files/backstage.html +0 -95
  1636. package/editions/tiddlywiki-surveys/great-interview-project-2010/The great TiddlyWiki interview project_files/backstage.js +0 -360
  1637. package/editions/tiddlywiki-surveys/great-interview-project-2010/The great TiddlyWiki interview project_files/chrjs +0 -373
  1638. package/editions/tiddlywiki-surveys/great-interview-project-2010/The great TiddlyWiki interview project_files/chrjs.identities +0 -42
  1639. package/editions/tiddlywiki-surveys/great-interview-project-2010/The great TiddlyWiki interview project_files/chrjs.space +0 -108
  1640. package/editions/tiddlywiki-surveys/great-interview-project-2010/The great TiddlyWiki interview project_files/chrjs.users +0 -57
  1641. package/editions/tiddlywiki-surveys/great-interview-project-2010/The great TiddlyWiki interview project_files/help.png +0 -0
  1642. package/editions/tiddlywiki-surveys/great-interview-project-2010/The great TiddlyWiki interview project_files/jquery.js +0 -11
  1643. package/editions/tiddlywiki-surveys/great-interview-project-2010/The great TiddlyWiki interview project_files/normalize.css +0 -406
  1644. package/editions/tiddlywiki-surveys/great-interview-project-2010/The great TiddlyWiki interview project_files/publicIcon +0 -0
  1645. package/editions/tiddlywiki-surveys/great-interview-project-2010/The great TiddlyWiki interview project_files/search.png +0 -0
  1646. package/editions/tiddlywiki-surveys/great-interview-project-2010/The great TiddlyWiki interview project_files/status.js +0 -2
  1647. package/editions/tiddlywiki-surveys/great-interview-project-2010/The great TiddlyWiki interview project_files/ts.js +0 -766
  1648. package/editions/tiddlywiki-surveys/great-interview-project-2010/readme.md +0 -3
  1649. package/editions/tiddlywiki-surveys/tiddlers/$__StoryList.tid +0 -2
  1650. package/editions/tw5.com/tiddlers/$__StoryList.tid +0 -3
  1651. package/editions/tw5.com/tiddlers/community/TiddlyWiki Newsletter Team.tid +0 -60
  1652. package/editions/tw5.com/tiddlers/community/resources/_TWeb.at_ by Mario Pietsch.tid +0 -16
  1653. package/editions/tw5.com/tiddlers/community/resources/_savetiddlers_ Extension for Chrome and Firefox by buggyj.tid +0 -16
  1654. package/editions/tw5.com/tiddlers/definitions/TiddlyIE.tid +0 -9
  1655. package/editions/tw5.com/tiddlers/gettingstarted/GettingStarted - Internet Explorer.tid +0 -10
  1656. package/editions/tw5.com/tiddlers/hellothere/Welcome.tid +0 -7
  1657. package/editions/tw5.com/tiddlers/hellothere/thumbnails/HelloThumbnail - Funding.tid +0 -9
  1658. package/editions/tw5.com/tiddlers/howtos/Windows HTA Hack.tid +0 -17
  1659. package/editions/tw5.com/tiddlers/images/Funding.png +0 -0
  1660. package/editions/tw5.com/tiddlers/images/Funding.png.meta +0 -4
  1661. package/editions/tw5.com/tiddlers/images/Intertwingled Innovations.png +0 -0
  1662. package/editions/tw5.com/tiddlers/images/Intertwingled Innovations.png.meta +0 -3
  1663. package/editions/tw5.com/tiddlers/images/MWS Banner.png +0 -0
  1664. package/editions/tw5.com/tiddlers/images/MWS Banner.png.meta +0 -4
  1665. package/editions/tw5.com/tiddlers/images/Marketplace Banner.png +0 -0
  1666. package/editions/tw5.com/tiddlers/images/Marketplace Banner.png.meta +0 -4
  1667. package/editions/tw5.com/tiddlers/images/New Release Banner.png +0 -0
  1668. package/editions/tw5.com/tiddlers/images/New Release Banner.png.meta +0 -4
  1669. package/editions/tw5.com/tiddlers/images/Tiddler Poster.png +0 -0
  1670. package/editions/tw5.com/tiddlers/images/Tiddler Poster.png.meta +0 -5
  1671. package/editions/tw5.com/tiddlers/images/TiddlyFox Apocalypse.png +0 -0
  1672. package/editions/tw5.com/tiddlers/images/TiddlyFox Apocalypse.png.meta +0 -4
  1673. package/editions/tw5.com/tiddlers/images/TiddlyWiki Classic.png +0 -0
  1674. package/editions/tw5.com/tiddlers/images/TiddlyWiki Classic.png.meta +0 -4
  1675. package/editions/tw5.com/tiddlers/images/TiddlyWiki Newsletter Badge.png +0 -0
  1676. package/editions/tw5.com/tiddlers/images/TiddlyWiki Newsletter Badge.png.meta +0 -6
  1677. package/editions/tw5.com/tiddlers/images/TiddlyWiki Privacy Badge.png +0 -0
  1678. package/editions/tw5.com/tiddlers/images/TiddlyWiki Privacy Badge.png.meta +0 -6
  1679. package/editions/tw5.com/tiddlers/images/Twenty Years of TiddlyWiki.png +0 -0
  1680. package/editions/tw5.com/tiddlers/images/Twenty Years of TiddlyWiki.png.meta +0 -4
  1681. package/editions/tw5.com/tiddlers/macros/syntax/MacroParameterValue.tid +0 -11
  1682. package/editions/tw5.com/tiddlers/releasenotes/Release 5.1.23.tid +0 -298
  1683. package/editions/tw5.com/tiddlers/releasenotes/Release 5.2.0.tid +0 -302
  1684. package/editions/tw5.com/tiddlers/releasenotes/Release 5.2.4.tid +0 -145
  1685. package/editions/tw5.com/tiddlers/releasenotes/Release 5.2.6.tid +0 -149
  1686. package/editions/tw5.com/tiddlers/releasenotes/Release 5.3.2.tid +0 -184
  1687. package/editions/tw5.com/tiddlers/releasenotes/Release 5.3.7.tid +0 -140
  1688. package/editions/tw5.com/tiddlers/saving/Saving with TiddlyIE.tid +0 -25
  1689. package/editions/tw5.com/tiddlers/variables/Behaviour of invoked variables depends on how the variable was declared.tid +0 -52
  1690. package/eslint.config.js +0 -333
  1691. package/languages/ja-JP/Types/application%2Fjavascript.tid +0 -4
  1692. package/languages/ja-JP/Types/application%2Fjson.tid +0 -4
  1693. package/languages/ja-JP/Types/application%2Fx-tiddler-dictionary.tid +0 -4
  1694. package/languages/ja-JP/Types/image%2Fgif.tid +0 -4
  1695. package/languages/ja-JP/Types/image%2Fjpeg.tid +0 -4
  1696. package/languages/ja-JP/Types/image%2Fpng.tid +0 -4
  1697. package/languages/ja-JP/Types/image%2Fsvg%2Bxml.tid +0 -4
  1698. package/languages/ja-JP/Types/text%2Fcss.tid +0 -4
  1699. package/languages/ja-JP/Types/text%2Fhtml.tid +0 -4
  1700. package/languages/ja-JP/Types/text%2Fplain.tid +0 -4
  1701. package/languages/ja-JP/Types/text%2Fvnd.tiddlywiki.tid +0 -4
  1702. package/plugins/tiddlywiki/blog/docs.tid +0 -6
  1703. package/plugins/tiddlywiki/blog/plugin.info +0 -7
  1704. package/plugins/tiddlywiki/blog/readme.tid +0 -5
  1705. package/plugins/tiddlywiki/blog/templates/html-page/page.tid +0 -31
  1706. package/plugins/tiddlywiki/blog/templates/html-page/post.tid +0 -32
  1707. package/plugins/tiddlywiki/blog/templates/menu.tid +0 -15
  1708. package/plugins/tiddlywiki/blog/templates/tiddler.tid +0 -35
  1709. package/plugins/tiddlywiki/cecily/cecily.js +0 -140
  1710. package/plugins/tiddlywiki/cecily/plugin.info +0 -7
  1711. package/plugins/tiddlywiki/cecily/readme.tid +0 -9
  1712. package/plugins/tiddlywiki/cecily/storyview-cecily.tid +0 -8
  1713. package/plugins/tiddlywiki/d3/barwidget.js +0 -199
  1714. package/plugins/tiddlywiki/d3/base.tid +0 -18
  1715. package/plugins/tiddlywiki/d3/cloudwidget.js +0 -128
  1716. package/plugins/tiddlywiki/d3/files/LICENSE +0 -26
  1717. package/plugins/tiddlywiki/d3/files/cloud/LICENSE +0 -26
  1718. package/plugins/tiddlywiki/d3/files/cloud/d3.layout.cloud.js +0 -401
  1719. package/plugins/tiddlywiki/d3/files/d3.min.js +0 -5
  1720. package/plugins/tiddlywiki/d3/files/tiddlywiki.files +0 -22
  1721. package/plugins/tiddlywiki/d3/plugin.info +0 -7
  1722. package/plugins/tiddlywiki/d3/readme.tid +0 -7
  1723. package/plugins/tiddlywiki/hammerjs/files/LICENSE.markdown +0 -21
  1724. package/plugins/tiddlywiki/hammerjs/files/hammer.min.v2.0.8.js +0 -6
  1725. package/plugins/tiddlywiki/hammerjs/files/tiddlywiki.files +0 -20
  1726. package/plugins/tiddlywiki/hammerjs/plugin.info +0 -8
  1727. package/plugins/tiddlywiki/hammerjs/readme.tid +0 -3
  1728. package/plugins/tiddlywiki/highlight-legacy/TypeMappings.multids +0 -9
  1729. package/plugins/tiddlywiki/highlight-legacy/files/default.css +0 -99
  1730. package/plugins/tiddlywiki/highlight-legacy/files/highlight.pack.js +0 -2
  1731. package/plugins/tiddlywiki/highlight-legacy/files/tiddlywiki.files +0 -22
  1732. package/plugins/tiddlywiki/highlight-legacy/highlightblock.js +0 -38
  1733. package/plugins/tiddlywiki/highlight-legacy/license.tid +0 -27
  1734. package/plugins/tiddlywiki/highlight-legacy/plugin.info +0 -8
  1735. package/plugins/tiddlywiki/highlight-legacy/readme.tid +0 -65
  1736. package/plugins/tiddlywiki/highlight-legacy/styles.tid +0 -82
  1737. package/plugins/tiddlywiki/highlight-legacy/usage.tid +0 -28
  1738. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_AMS-Regular.woff +0 -0
  1739. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Caligraphic-Bold.woff +0 -0
  1740. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Caligraphic-Regular.woff +0 -0
  1741. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Fraktur-Bold.woff +0 -0
  1742. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Fraktur-Regular.woff +0 -0
  1743. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Main-Bold.woff +0 -0
  1744. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Main-BoldItalic.woff +0 -0
  1745. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Main-Italic.woff +0 -0
  1746. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Main-Regular.woff +0 -0
  1747. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Math-BoldItalic.woff +0 -0
  1748. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Math-Italic.woff +0 -0
  1749. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_SansSerif-Bold.woff +0 -0
  1750. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_SansSerif-Italic.woff +0 -0
  1751. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_SansSerif-Regular.woff +0 -0
  1752. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Script-Regular.woff +0 -0
  1753. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Size1-Regular.woff +0 -0
  1754. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Size2-Regular.woff +0 -0
  1755. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Size3-Regular.woff +0 -0
  1756. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Size4-Regular.woff +0 -0
  1757. package/plugins/tiddlywiki/katex/files/fonts/KaTeX_Typewriter-Regular.woff +0 -0
  1758. package/plugins/tiddlywiki/mobiledragdrop/files/LICENSE +0 -7
  1759. package/plugins/tiddlywiki/mobiledragdrop/files/ios-drag-drop.js +0 -477
  1760. package/plugins/tiddlywiki/mobiledragdrop/files/tiddlywiki.files +0 -18
  1761. package/plugins/tiddlywiki/mobiledragdrop/plugin.info +0 -8
  1762. package/plugins/tiddlywiki/mobiledragdrop/rawmarkup.tid +0 -7
  1763. package/plugins/tiddlywiki/mobiledragdrop/readme.tid +0 -5
  1764. package/plugins/tiddlywiki/mobiledragdrop/startup.js +0 -20
  1765. package/plugins/tiddlywiki/nodewebkitsaver/nodewebkit.js +0 -59
  1766. package/plugins/tiddlywiki/nodewebkitsaver/plugin.info +0 -7
  1767. package/plugins/tiddlywiki/nodewebkitsaver/readme.tid +0 -5
  1768. package/plugins/tiddlywiki/tahoelafs/plugin.info +0 -7
  1769. package/plugins/tiddlywiki/tahoelafs/readme.tid +0 -7
  1770. package/plugins/tiddlywiki/tahoelafs/saver.js +0 -52
  1771. /package/{core/modules → core-server}/commands/build.js +0 -0
  1772. /package/{core/modules → core-server}/commands/clearpassword.js +0 -0
  1773. /package/{core/modules → core-server}/commands/editions.js +0 -0
  1774. /package/{core/modules → core-server}/commands/help.js +0 -0
  1775. /package/{core/modules → core-server}/commands/makelibrary.js +0 -0
  1776. /package/{core/modules → core-server}/commands/password.js +0 -0
  1777. /package/{core/modules → core-server}/commands/rendertiddler.js +0 -0
  1778. /package/{core/modules → core-server}/commands/savelibrarytiddlers.js +0 -0
  1779. /package/{core/modules → core-server}/commands/savetiddler.js +0 -0
  1780. /package/{core/modules → core-server}/commands/unpackplugin.js +0 -0
  1781. /package/{core/modules → core-server}/commands/verbose.js +0 -0
  1782. /package/{core/modules → core-server}/commands/version.js +0 -0
  1783. /package/{core/modules → core-server}/server/authenticators/header.js +0 -0
  1784. /package/{core/modules → core-server}/startup/commands.js +0 -0
  1785. /package/{core/modules → core-server}/utils/edition-info.js +0 -0
  1786. /package/editions/ja-JP/tiddlers/hiddensettings/{Hidden Setting_ Default Tiddler Icon.tid → Hidden Setting Default Tiddler Icon.tid} +0 -0
  1787. /package/editions/ja-JP/tiddlers/howtos/{Custom Styles FAQ.tid → Custom_Styles_FAQ.tid} +0 -0
  1788. /package/editions/ja-JP/tiddlers/howtos/{How to hide the author's and other fields with CSS.tid → How to hide the authors and other fields with CSS.tid} +0 -0
  1789. /package/editions/ja-JP/tiddlers/howtos/{How to widen tiddlers (aka storyriver).tid → How to widen tiddlers (aka story river).tid} +0 -0
  1790. /package/editions/tw5.com/tiddlers/releasenotes/{Release 5.1.0.tid → pre-5.4.0/Release 5.1.0.tid} +0 -0
  1791. /package/editions/tw5.com/tiddlers/releasenotes/{Release 5.1.1.tid → pre-5.4.0/Release 5.1.1.tid} +0 -0
  1792. /package/editions/tw5.com/tiddlers/releasenotes/{Release 5.1.10.tid → pre-5.4.0/Release 5.1.10.tid} +0 -0
  1793. /package/editions/tw5.com/tiddlers/releasenotes/{Release 5.1.11.tid → pre-5.4.0/Release 5.1.11.tid} +0 -0
  1794. /package/editions/tw5.com/tiddlers/releasenotes/{Release 5.1.12.tid → pre-5.4.0/Release 5.1.12.tid} +0 -0
  1795. /package/editions/tw5.com/tiddlers/releasenotes/{Release 5.1.13.tid → pre-5.4.0/Release 5.1.13.tid} +0 -0
  1796. /package/editions/tw5.com/tiddlers/releasenotes/{Release 5.1.14.tid → pre-5.4.0/Release 5.1.14.tid} +0 -0
  1797. /package/editions/tw5.com/tiddlers/releasenotes/{Release 5.1.15.tid → pre-5.4.0/Release 5.1.15.tid} +0 -0
  1798. /package/editions/tw5.com/tiddlers/releasenotes/{Release 5.1.16.tid → pre-5.4.0/Release 5.1.16.tid} +0 -0
  1799. /package/editions/tw5.com/tiddlers/releasenotes/{Release 5.1.17.tid → pre-5.4.0/Release 5.1.17.tid} +0 -0
  1800. /package/editions/tw5.com/tiddlers/releasenotes/{Release 5.1.18.tid → pre-5.4.0/Release 5.1.18.tid} +0 -0
  1801. /package/editions/tw5.com/tiddlers/releasenotes/{Release 5.1.19.tid → pre-5.4.0/Release 5.1.19.tid} +0 -0
  1802. /package/editions/tw5.com/tiddlers/releasenotes/{Release 5.1.2.tid → pre-5.4.0/Release 5.1.2.tid} +0 -0
  1803. /package/editions/tw5.com/tiddlers/releasenotes/{Release 5.1.20.tid → pre-5.4.0/Release 5.1.20.tid} +0 -0
  1804. /package/editions/tw5.com/tiddlers/releasenotes/{Release 5.1.21.tid → pre-5.4.0/Release 5.1.21.tid} +0 -0
  1805. /package/editions/tw5.com/tiddlers/releasenotes/{Release 5.1.22.tid → pre-5.4.0/Release 5.1.22.tid} +0 -0
  1806. /package/editions/tw5.com/tiddlers/releasenotes/{Release 5.1.3.tid → pre-5.4.0/Release 5.1.3.tid} +0 -0
  1807. /package/editions/tw5.com/tiddlers/releasenotes/{Release 5.1.4.tid → pre-5.4.0/Release 5.1.4.tid} +0 -0
  1808. /package/editions/tw5.com/tiddlers/releasenotes/{Release 5.1.5.tid → pre-5.4.0/Release 5.1.5.tid} +0 -0
  1809. /package/editions/tw5.com/tiddlers/releasenotes/{Release 5.1.6.tid → pre-5.4.0/Release 5.1.6.tid} +0 -0
  1810. /package/editions/tw5.com/tiddlers/releasenotes/{Release 5.1.7.tid → pre-5.4.0/Release 5.1.7.tid} +0 -0
  1811. /package/editions/tw5.com/tiddlers/releasenotes/{Release 5.1.8.tid → pre-5.4.0/Release 5.1.8.tid} +0 -0
  1812. /package/editions/tw5.com/tiddlers/releasenotes/{Release 5.1.9.tid → pre-5.4.0/Release 5.1.9.tid} +0 -0
  1813. /package/editions/tw5.com/tiddlers/releasenotes/{Release 5.2.1.tid → pre-5.4.0/Release 5.2.1.tid} +0 -0
  1814. /package/editions/tw5.com/tiddlers/releasenotes/{Release 5.2.2.tid → pre-5.4.0/Release 5.2.2.tid} +0 -0
  1815. /package/editions/tw5.com/tiddlers/releasenotes/{Release 5.2.3.tid → pre-5.4.0/Release 5.2.3.tid} +0 -0
  1816. /package/editions/tw5.com/tiddlers/releasenotes/{Release 5.2.5.tid → pre-5.4.0/Release 5.2.5.tid} +0 -0
  1817. /package/editions/tw5.com/tiddlers/releasenotes/{Release 5.2.7.tid → pre-5.4.0/Release 5.2.7.tid} +0 -0
  1818. /package/editions/tw5.com/tiddlers/releasenotes/{Release 5.3.0.tid → pre-5.4.0/Release 5.3.0.tid} +0 -0
  1819. /package/editions/tw5.com/tiddlers/releasenotes/{Release 5.3.1.tid → pre-5.4.0/Release 5.3.1.tid} +0 -0
  1820. /package/editions/tw5.com/tiddlers/releasenotes/{Release 5.3.3.tid → pre-5.4.0/Release 5.3.3.tid} +0 -0
  1821. /package/editions/tw5.com/tiddlers/releasenotes/{Release 5.3.4.tid → pre-5.4.0/Release 5.3.4.tid} +0 -0
  1822. /package/editions/tw5.com/tiddlers/releasenotes/{Release 5.3.5.tid → pre-5.4.0/Release 5.3.5.tid} +0 -0
  1823. /package/editions/tw5.com/tiddlers/releasenotes/{Release 5.3.6.tid → pre-5.4.0/Release 5.3.6.tid} +0 -0
@@ -1,726 +1,1162 @@
1
1
  /*!
2
- Highlight.js v11.4.0 (git: 2d0e7c1094)
3
- (c) 2006-2022 Ivan Sagalaev and other contributors
2
+ Highlight.js v11.11.1 (git: 08cb242e7d)
3
+ (c) 2006-2024 Josh Goebel <hello@joshgoebel.com> and other contributors
4
4
  License: BSD-3-Clause
5
5
  */
6
- var hljs=function(){"use strict";var e={exports:{}};function t(e){
7
- return e instanceof Map?e.clear=e.delete=e.set=()=>{
8
- throw Error("map is read-only")}:e instanceof Set&&(e.add=e.clear=e.delete=()=>{
6
+ var hljs=function(){"use strict";function e(n){
7
+ return n instanceof Map?n.clear=n.delete=n.set=()=>{
8
+ throw Error("map is read-only")}:n instanceof Set&&(n.add=n.clear=n.delete=()=>{
9
9
  throw Error("set is read-only")
10
- }),Object.freeze(e),Object.getOwnPropertyNames(e).forEach((n=>{var i=e[n]
11
- ;"object"!=typeof i||Object.isFrozen(i)||t(i)})),e}
12
- e.exports=t,e.exports.default=t;var n=e.exports;class i{constructor(e){
10
+ }),Object.freeze(n),Object.getOwnPropertyNames(n).forEach((t=>{
11
+ const a=n[t],i=typeof a;"object"!==i&&"function"!==i||Object.isFrozen(a)||e(a)
12
+ })),n}class n{constructor(e){
13
13
  void 0===e.data&&(e.data={}),this.data=e.data,this.isMatchIgnored=!1}
14
- ignoreMatch(){this.isMatchIgnored=!0}}function r(e){
14
+ ignoreMatch(){this.isMatchIgnored=!0}}function t(e){
15
15
  return e.replace(/&/g,"&amp;").replace(/</g,"&lt;").replace(/>/g,"&gt;").replace(/"/g,"&quot;").replace(/'/g,"&#x27;")
16
- }function s(e,...t){const n=Object.create(null);for(const t in e)n[t]=e[t]
17
- ;return t.forEach((e=>{for(const t in e)n[t]=e[t]})),n}const o=e=>!!e.kind
18
- ;class a{constructor(e,t){
19
- this.buffer="",this.classPrefix=t.classPrefix,e.walk(this)}addText(e){
20
- this.buffer+=r(e)}openNode(e){if(!o(e))return;let t=e.kind
21
- ;t=e.sublanguage?"language-"+t:((e,{prefix:t})=>{if(e.includes(".")){
22
- const n=e.split(".")
23
- ;return[`${t}${n.shift()}`,...n.map(((e,t)=>`${e}${"_".repeat(t+1)}`))].join(" ")
24
- }return`${t}${e}`})(t,{prefix:this.classPrefix}),this.span(t)}closeNode(e){
25
- o(e)&&(this.buffer+="</span>")}value(){return this.buffer}span(e){
26
- this.buffer+=`<span class="${e}">`}}class c{constructor(){this.rootNode={
27
- children:[]},this.stack=[this.rootNode]}get top(){
16
+ }function a(e,...n){const t=Object.create(null);for(const n in e)t[n]=e[n]
17
+ ;return n.forEach((e=>{for(const n in e)t[n]=e[n]})),t}const i=e=>!!e.scope
18
+ ;class r{constructor(e,n){
19
+ this.buffer="",this.classPrefix=n.classPrefix,e.walk(this)}addText(e){
20
+ this.buffer+=t(e)}openNode(e){if(!i(e))return;const n=((e,{prefix:n})=>{
21
+ if(e.startsWith("language:"))return e.replace("language:","language-")
22
+ ;if(e.includes(".")){const t=e.split(".")
23
+ ;return[`${n}${t.shift()}`,...t.map(((e,n)=>`${e}${"_".repeat(n+1)}`))].join(" ")
24
+ }return`${n}${e}`})(e.scope,{prefix:this.classPrefix});this.span(n)}
25
+ closeNode(e){i(e)&&(this.buffer+="</span>")}value(){return this.buffer}span(e){
26
+ this.buffer+=`<span class="${e}">`}}const s=(e={})=>{const n={children:[]}
27
+ ;return Object.assign(n,e),n};class o{constructor(){
28
+ this.rootNode=s(),this.stack=[this.rootNode]}get top(){
28
29
  return this.stack[this.stack.length-1]}get root(){return this.rootNode}add(e){
29
- this.top.children.push(e)}openNode(e){const t={kind:e,children:[]}
30
- ;this.add(t),this.stack.push(t)}closeNode(){
30
+ this.top.children.push(e)}openNode(e){const n=s({scope:e})
31
+ ;this.add(n),this.stack.push(n)}closeNode(){
31
32
  if(this.stack.length>1)return this.stack.pop()}closeAllNodes(){
32
33
  for(;this.closeNode(););}toJSON(){return JSON.stringify(this.rootNode,null,4)}
33
- walk(e){return this.constructor._walk(e,this.rootNode)}static _walk(e,t){
34
- return"string"==typeof t?e.addText(t):t.children&&(e.openNode(t),
35
- t.children.forEach((t=>this._walk(e,t))),e.closeNode(t)),e}static _collapse(e){
34
+ walk(e){return this.constructor._walk(e,this.rootNode)}static _walk(e,n){
35
+ return"string"==typeof n?e.addText(n):n.children&&(e.openNode(n),
36
+ n.children.forEach((n=>this._walk(e,n))),e.closeNode(n)),e}static _collapse(e){
36
37
  "string"!=typeof e&&e.children&&(e.children.every((e=>"string"==typeof e))?e.children=[e.children.join("")]:e.children.forEach((e=>{
37
- c._collapse(e)})))}}class l extends c{constructor(e){super(),this.options=e}
38
- addKeyword(e,t){""!==e&&(this.openNode(t),this.addText(e),this.closeNode())}
39
- addText(e){""!==e&&this.add(e)}addSublanguage(e,t){const n=e.root
40
- ;n.kind=t,n.sublanguage=!0,this.add(n)}toHTML(){
41
- return new a(this,this.options).value()}finalize(){return!0}}function g(e){
42
- return e?"string"==typeof e?e:e.source:null}function d(e){return f("(?=",e,")")}
43
- function u(e){return f("(?:",e,")*")}function h(e){return f("(?:",e,")?")}
44
- function f(...e){return e.map((e=>g(e))).join("")}function p(...e){const t=(e=>{
45
- const t=e[e.length-1]
46
- ;return"object"==typeof t&&t.constructor===Object?(e.splice(e.length-1,1),t):{}
47
- })(e);return"("+(t.capture?"":"?:")+e.map((e=>g(e))).join("|")+")"}
48
- function b(e){return RegExp(e.toString()+"|").exec("").length-1}
49
- const m=/\[(?:[^\\\]]|\\.)*\]|\(\??|\\([1-9][0-9]*)|\\./
50
- ;function E(e,{joinWith:t}){let n=0;return e.map((e=>{n+=1;const t=n
51
- ;let i=g(e),r="";for(;i.length>0;){const e=m.exec(i);if(!e){r+=i;break}
52
- r+=i.substring(0,e.index),
53
- i=i.substring(e.index+e[0].length),"\\"===e[0][0]&&e[1]?r+="\\"+(Number(e[1])+t):(r+=e[0],
54
- "("===e[0]&&n++)}return r})).map((e=>`(${e})`)).join(t)}
55
- const x="[a-zA-Z]\\w*",w="[a-zA-Z_]\\w*",y="\\b\\d+(\\.\\d+)?",_="(-?)(\\b0[xX][a-fA-F0-9]+|(\\b\\d+(\\.\\d*)?|\\.\\d+)([eE][-+]?\\d+)?)",v="\\b(0b[01]+)",k={
56
- begin:"\\\\[\\s\\S]",relevance:0},O={scope:"string",begin:"'",end:"'",
57
- illegal:"\\n",contains:[k]},N={scope:"string",begin:'"',end:'"',illegal:"\\n",
58
- contains:[k]},M=(e,t,n={})=>{const i=s({scope:"comment",begin:e,end:t,
59
- contains:[]},n);i.contains.push({scope:"doctag",
38
+ o._collapse(e)})))}}class l extends o{constructor(e){super(),this.options=e}
39
+ addText(e){""!==e&&this.add(e)}startScope(e){this.openNode(e)}endScope(){
40
+ this.closeNode()}__addSublanguage(e,n){const t=e.root
41
+ ;n&&(t.scope="language:"+n),this.add(t)}toHTML(){
42
+ return new r(this,this.options).value()}finalize(){
43
+ return this.closeAllNodes(),!0}}function c(e){
44
+ return e?"string"==typeof e?e:e.source:null}function d(e){return b("(?=",e,")")}
45
+ function g(e){return b("(?:",e,")*")}function u(e){return b("(?:",e,")?")}
46
+ function b(...e){return e.map((e=>c(e))).join("")}function m(...e){const n=(e=>{
47
+ const n=e[e.length-1]
48
+ ;return"object"==typeof n&&n.constructor===Object?(e.splice(e.length-1,1),n):{}
49
+ })(e);return"("+(n.capture?"":"?:")+e.map((e=>c(e))).join("|")+")"}
50
+ function p(e){return RegExp(e.toString()+"|").exec("").length-1}
51
+ const _=/\[(?:[^\\\]]|\\.)*\]|\(\??|\\([1-9][0-9]*)|\\./
52
+ ;function h(e,{joinWith:n}){let t=0;return e.map((e=>{t+=1;const n=t
53
+ ;let a=c(e),i="";for(;a.length>0;){const e=_.exec(a);if(!e){i+=a;break}
54
+ i+=a.substring(0,e.index),
55
+ a=a.substring(e.index+e[0].length),"\\"===e[0][0]&&e[1]?i+="\\"+(Number(e[1])+n):(i+=e[0],
56
+ "("===e[0]&&t++)}return i})).map((e=>`(${e})`)).join(n)}
57
+ const f="[a-zA-Z]\\w*",E="[a-zA-Z_]\\w*",y="\\b\\d+(\\.\\d+)?",w="(-?)(\\b0[xX][a-fA-F0-9]+|(\\b\\d+(\\.\\d*)?|\\.\\d+)([eE][-+]?\\d+)?)",v="\\b(0b[01]+)",N={
58
+ begin:"\\\\[\\s\\S]",relevance:0},k={scope:"string",begin:"'",end:"'",
59
+ illegal:"\\n",contains:[N]},x={scope:"string",begin:'"',end:'"',illegal:"\\n",
60
+ contains:[N]},O=(e,n,t={})=>{const i=a({scope:"comment",begin:e,end:n,
61
+ contains:[]},t);i.contains.push({scope:"doctag",
60
62
  begin:"[ ]*(?=(TODO|FIXME|NOTE|BUG|OPTIMIZE|HACK|XXX):)",
61
63
  end:/(TODO|FIXME|NOTE|BUG|OPTIMIZE|HACK|XXX):/,excludeBegin:!0,relevance:0})
62
- ;const r=p("I","a","is","so","us","to","at","if","in","it","on",/[A-Za-z]+['](d|ve|re|ll|t|s|n)/,/[A-Za-z]+[-][a-z]+/,/[A-Za-z][a-z]{2,}/)
63
- ;return i.contains.push({begin:f(/[ ]+/,"(",r,/[.]?[:]?([.][ ]|[ ])/,"){3}")}),i
64
- },S=M("//","$"),R=M("/\\*","\\*/"),j=M("#","$");var A=Object.freeze({
65
- __proto__:null,MATCH_NOTHING_RE:/\b\B/,IDENT_RE:x,UNDERSCORE_IDENT_RE:w,
66
- NUMBER_RE:y,C_NUMBER_RE:_,BINARY_NUMBER_RE:v,
67
- RE_STARTERS_RE:"!|!=|!==|%|%=|&|&&|&=|\\*|\\*=|\\+|\\+=|,|-|-=|/=|/|:|;|<<|<<=|<=|<|===|==|=|>>>=|>>=|>=|>>>|>>|>|\\?|\\[|\\{|\\(|\\^|\\^=|\\||\\|=|\\|\\||~",
68
- SHEBANG:(e={})=>{const t=/^#![ ]*\//
69
- ;return e.binary&&(e.begin=f(t,/.*\b/,e.binary,/\b.*/)),s({scope:"meta",begin:t,
70
- end:/$/,relevance:0,"on:begin":(e,t)=>{0!==e.index&&t.ignoreMatch()}},e)},
71
- BACKSLASH_ESCAPE:k,APOS_STRING_MODE:O,QUOTE_STRING_MODE:N,PHRASAL_WORDS_MODE:{
64
+ ;const r=m("I","a","is","so","us","to","at","if","in","it","on",/[A-Za-z]+['](d|ve|re|ll|t|s|n)/,/[A-Za-z]+[-][a-z]+/,/[A-Za-z][a-z]{2,}/)
65
+ ;return i.contains.push({begin:b(/[ ]+/,"(",r,/[.]?[:]?([.][ ]|[ ])/,"){3}")}),i
66
+ },M=O("//","$"),A=O("/\\*","\\*/"),S=O("#","$");var C=Object.freeze({
67
+ __proto__:null,APOS_STRING_MODE:k,BACKSLASH_ESCAPE:N,BINARY_NUMBER_MODE:{
68
+ scope:"number",begin:v,relevance:0},BINARY_NUMBER_RE:v,COMMENT:O,
69
+ C_BLOCK_COMMENT_MODE:A,C_LINE_COMMENT_MODE:M,C_NUMBER_MODE:{scope:"number",
70
+ begin:w,relevance:0},C_NUMBER_RE:w,END_SAME_AS_BEGIN:e=>Object.assign(e,{
71
+ "on:begin":(e,n)=>{n.data._beginMatch=e[1]},"on:end":(e,n)=>{
72
+ n.data._beginMatch!==e[1]&&n.ignoreMatch()}}),HASH_COMMENT_MODE:S,IDENT_RE:f,
73
+ MATCH_NOTHING_RE:/\b\B/,METHOD_GUARD:{begin:"\\.\\s*"+E,relevance:0},
74
+ NUMBER_MODE:{scope:"number",begin:y,relevance:0},NUMBER_RE:y,
75
+ PHRASAL_WORDS_MODE:{
72
76
  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/
73
- },COMMENT:M,C_LINE_COMMENT_MODE:S,C_BLOCK_COMMENT_MODE:R,HASH_COMMENT_MODE:j,
74
- NUMBER_MODE:{scope:"number",begin:y,relevance:0},C_NUMBER_MODE:{scope:"number",
75
- begin:_,relevance:0},BINARY_NUMBER_MODE:{scope:"number",begin:v,relevance:0},
76
- REGEXP_MODE:{begin:/(?=\/[^/\n]*\/)/,contains:[{scope:"regexp",begin:/\//,
77
- end:/\/[gimuy]*/,illegal:/\n/,contains:[k,{begin:/\[/,end:/\]/,relevance:0,
78
- contains:[k]}]}]},TITLE_MODE:{scope:"title",begin:x,relevance:0},
79
- UNDERSCORE_TITLE_MODE:{scope:"title",begin:w,relevance:0},METHOD_GUARD:{
80
- begin:"\\.\\s*[a-zA-Z_]\\w*",relevance:0},END_SAME_AS_BEGIN:e=>Object.assign(e,{
81
- "on:begin":(e,t)=>{t.data._beginMatch=e[1]},"on:end":(e,t)=>{
82
- t.data._beginMatch!==e[1]&&t.ignoreMatch()}})});function I(e,t){
83
- "."===e.input[e.index-1]&&t.ignoreMatch()}function T(e,t){
84
- void 0!==e.className&&(e.scope=e.className,delete e.className)}function L(e,t){
85
- t&&e.beginKeywords&&(e.begin="\\b("+e.beginKeywords.split(" ").join("|")+")(?!\\.)(?=\\b|\\s)",
86
- e.__beforeBegin=I,e.keywords=e.keywords||e.beginKeywords,delete e.beginKeywords,
87
- void 0===e.relevance&&(e.relevance=0))}function B(e,t){
88
- Array.isArray(e.illegal)&&(e.illegal=p(...e.illegal))}function D(e,t){
77
+ },QUOTE_STRING_MODE:x,REGEXP_MODE:{scope:"regexp",begin:/\/(?=[^/\n]*\/)/,
78
+ end:/\/[gimuy]*/,contains:[N,{begin:/\[/,end:/\]/,relevance:0,contains:[N]}]},
79
+ RE_STARTERS_RE:"!|!=|!==|%|%=|&|&&|&=|\\*|\\*=|\\+|\\+=|,|-|-=|/=|/|:|;|<<|<<=|<=|<|===|==|=|>>>=|>>=|>=|>>>|>>|>|\\?|\\[|\\{|\\(|\\^|\\^=|\\||\\|=|\\|\\||~",
80
+ SHEBANG:(e={})=>{const n=/^#![ ]*\//
81
+ ;return e.binary&&(e.begin=b(n,/.*\b/,e.binary,/\b.*/)),a({scope:"meta",begin:n,
82
+ end:/$/,relevance:0,"on:begin":(e,n)=>{0!==e.index&&n.ignoreMatch()}},e)},
83
+ TITLE_MODE:{scope:"title",begin:f,relevance:0},UNDERSCORE_IDENT_RE:E,
84
+ UNDERSCORE_TITLE_MODE:{scope:"title",begin:E,relevance:0}});function T(e,n){
85
+ "."===e.input[e.index-1]&&n.ignoreMatch()}function R(e,n){
86
+ void 0!==e.className&&(e.scope=e.className,delete e.className)}function D(e,n){
87
+ n&&e.beginKeywords&&(e.begin="\\b("+e.beginKeywords.split(" ").join("|")+")(?!\\.)(?=\\b|\\s)",
88
+ e.__beforeBegin=T,e.keywords=e.keywords||e.beginKeywords,delete e.beginKeywords,
89
+ void 0===e.relevance&&(e.relevance=0))}function I(e,n){
90
+ Array.isArray(e.illegal)&&(e.illegal=m(...e.illegal))}function L(e,n){
89
91
  if(e.match){
90
92
  if(e.begin||e.end)throw Error("begin & end are not supported with match")
91
- ;e.begin=e.match,delete e.match}}function H(e,t){
92
- void 0===e.relevance&&(e.relevance=1)}const P=(e,t)=>{if(!e.beforeMatch)return
93
+ ;e.begin=e.match,delete e.match}}function B(e,n){
94
+ void 0===e.relevance&&(e.relevance=1)}const $=(e,n)=>{if(!e.beforeMatch)return
93
95
  ;if(e.starts)throw Error("beforeMatch cannot be used with starts")
94
- ;const n=Object.assign({},e);Object.keys(e).forEach((t=>{delete e[t]
95
- })),e.keywords=n.keywords,e.begin=f(n.beforeMatch,d(n.begin)),e.starts={
96
- relevance:0,contains:[Object.assign(n,{endsParent:!0})]
97
- },e.relevance=0,delete n.beforeMatch
98
- },C=["of","and","for","in","not","or","if","then","parent","list","value"]
99
- ;function $(e,t,n="keyword"){const i=Object.create(null)
100
- ;return"string"==typeof e?r(n,e.split(" ")):Array.isArray(e)?r(n,e):Object.keys(e).forEach((n=>{
101
- Object.assign(i,$(e[n],t,n))})),i;function r(e,n){
102
- t&&(n=n.map((e=>e.toLowerCase()))),n.forEach((t=>{const n=t.split("|")
103
- ;i[n[0]]=[e,U(n[0],n[1])]}))}}function U(e,t){
104
- return t?Number(t):(e=>C.includes(e.toLowerCase()))(e)?0:1}const z={},K=e=>{
105
- console.error(e)},W=(e,...t)=>{console.log("WARN: "+e,...t)},X=(e,t)=>{
106
- z[`${e}/${t}`]||(console.log(`Deprecated as of ${e}. ${t}`),z[`${e}/${t}`]=!0)
107
- },G=Error();function Z(e,t,{key:n}){let i=0;const r=e[n],s={},o={}
108
- ;for(let e=1;e<=t.length;e++)o[e+i]=r[e],s[e+i]=!0,i+=b(t[e-1])
109
- ;e[n]=o,e[n]._emit=s,e[n]._multi=!0}function F(e){(e=>{
96
+ ;const t=Object.assign({},e);Object.keys(e).forEach((n=>{delete e[n]
97
+ })),e.keywords=t.keywords,e.begin=b(t.beforeMatch,d(t.begin)),e.starts={
98
+ relevance:0,contains:[Object.assign(t,{endsParent:!0})]
99
+ },e.relevance=0,delete t.beforeMatch
100
+ },F=["of","and","for","in","not","or","if","then","parent","list","value"]
101
+ ;function z(e,n,t="keyword"){const a=Object.create(null)
102
+ ;return"string"==typeof e?i(t,e.split(" ")):Array.isArray(e)?i(t,e):Object.keys(e).forEach((t=>{
103
+ Object.assign(a,z(e[t],n,t))})),a;function i(e,t){
104
+ n&&(t=t.map((e=>e.toLowerCase()))),t.forEach((n=>{const t=n.split("|")
105
+ ;a[t[0]]=[e,j(t[0],t[1])]}))}}function j(e,n){
106
+ return n?Number(n):(e=>F.includes(e.toLowerCase()))(e)?0:1}const U={},P=e=>{
107
+ console.error(e)},K=(e,...n)=>{console.log("WARN: "+e,...n)},q=(e,n)=>{
108
+ U[`${e}/${n}`]||(console.log(`Deprecated as of ${e}. ${n}`),U[`${e}/${n}`]=!0)
109
+ },H=Error();function G(e,n,{key:t}){let a=0;const i=e[t],r={},s={}
110
+ ;for(let e=1;e<=n.length;e++)s[e+a]=i[e],r[e+a]=!0,a+=p(n[e-1])
111
+ ;e[t]=s,e[t]._emit=r,e[t]._multi=!0}function Z(e){(e=>{
110
112
  e.scope&&"object"==typeof e.scope&&null!==e.scope&&(e.beginScope=e.scope,
111
113
  delete e.scope)})(e),"string"==typeof e.beginScope&&(e.beginScope={
112
114
  _wrap:e.beginScope}),"string"==typeof e.endScope&&(e.endScope={_wrap:e.endScope
113
115
  }),(e=>{if(Array.isArray(e.begin)){
114
- if(e.skip||e.excludeBegin||e.returnBegin)throw K("skip, excludeBegin, returnBegin not compatible with beginScope: {}"),
115
- G
116
- ;if("object"!=typeof e.beginScope||null===e.beginScope)throw K("beginScope must be object"),
117
- G;Z(e,e.begin,{key:"beginScope"}),e.begin=E(e.begin,{joinWith:""})}})(e),(e=>{
116
+ if(e.skip||e.excludeBegin||e.returnBegin)throw P("skip, excludeBegin, returnBegin not compatible with beginScope: {}"),
117
+ H
118
+ ;if("object"!=typeof e.beginScope||null===e.beginScope)throw P("beginScope must be object"),
119
+ H;G(e,e.begin,{key:"beginScope"}),e.begin=h(e.begin,{joinWith:""})}})(e),(e=>{
118
120
  if(Array.isArray(e.end)){
119
- if(e.skip||e.excludeEnd||e.returnEnd)throw K("skip, excludeEnd, returnEnd not compatible with endScope: {}"),
120
- G
121
- ;if("object"!=typeof e.endScope||null===e.endScope)throw K("endScope must be object"),
122
- G;Z(e,e.end,{key:"endScope"}),e.end=E(e.end,{joinWith:""})}})(e)}function V(e){
123
- function t(t,n){
124
- return RegExp(g(t),"m"+(e.case_insensitive?"i":"")+(e.unicodeRegex?"u":"")+(n?"g":""))
125
- }class n{constructor(){
121
+ if(e.skip||e.excludeEnd||e.returnEnd)throw P("skip, excludeEnd, returnEnd not compatible with endScope: {}"),
122
+ H
123
+ ;if("object"!=typeof e.endScope||null===e.endScope)throw P("endScope must be object"),
124
+ H;G(e,e.end,{key:"endScope"}),e.end=h(e.end,{joinWith:""})}})(e)}function W(e){
125
+ function n(n,t){
126
+ return RegExp(c(n),"m"+(e.case_insensitive?"i":"")+(e.unicodeRegex?"u":"")+(t?"g":""))
127
+ }class t{constructor(){
126
128
  this.matchIndexes={},this.regexes=[],this.matchAt=1,this.position=0}
127
- addRule(e,t){
128
- t.position=this.position++,this.matchIndexes[this.matchAt]=t,this.regexes.push([t,e]),
129
- this.matchAt+=b(e)+1}compile(){0===this.regexes.length&&(this.exec=()=>null)
130
- ;const e=this.regexes.map((e=>e[1]));this.matcherRe=t(E(e,{joinWith:"|"
129
+ addRule(e,n){
130
+ n.position=this.position++,this.matchIndexes[this.matchAt]=n,this.regexes.push([n,e]),
131
+ this.matchAt+=p(e)+1}compile(){0===this.regexes.length&&(this.exec=()=>null)
132
+ ;const e=this.regexes.map((e=>e[1]));this.matcherRe=n(h(e,{joinWith:"|"
131
133
  }),!0),this.lastIndex=0}exec(e){this.matcherRe.lastIndex=this.lastIndex
132
- ;const t=this.matcherRe.exec(e);if(!t)return null
133
- ;const n=t.findIndex(((e,t)=>t>0&&void 0!==e)),i=this.matchIndexes[n]
134
- ;return t.splice(0,n),Object.assign(t,i)}}class i{constructor(){
134
+ ;const n=this.matcherRe.exec(e);if(!n)return null
135
+ ;const t=n.findIndex(((e,n)=>n>0&&void 0!==e)),a=this.matchIndexes[t]
136
+ ;return n.splice(0,t),Object.assign(n,a)}}class i{constructor(){
135
137
  this.rules=[],this.multiRegexes=[],
136
138
  this.count=0,this.lastIndex=0,this.regexIndex=0}getMatcher(e){
137
- if(this.multiRegexes[e])return this.multiRegexes[e];const t=new n
138
- ;return this.rules.slice(e).forEach((([e,n])=>t.addRule(e,n))),
139
- t.compile(),this.multiRegexes[e]=t,t}resumingScanAtSamePosition(){
140
- return 0!==this.regexIndex}considerAll(){this.regexIndex=0}addRule(e,t){
141
- this.rules.push([e,t]),"begin"===t.type&&this.count++}exec(e){
142
- const t=this.getMatcher(this.regexIndex);t.lastIndex=this.lastIndex
143
- ;let n=t.exec(e)
144
- ;if(this.resumingScanAtSamePosition())if(n&&n.index===this.lastIndex);else{
145
- const t=this.getMatcher(0);t.lastIndex=this.lastIndex+1,n=t.exec(e)}
146
- return n&&(this.regexIndex+=n.position+1,
147
- this.regexIndex===this.count&&this.considerAll()),n}}
139
+ if(this.multiRegexes[e])return this.multiRegexes[e];const n=new t
140
+ ;return this.rules.slice(e).forEach((([e,t])=>n.addRule(e,t))),
141
+ n.compile(),this.multiRegexes[e]=n,n}resumingScanAtSamePosition(){
142
+ return 0!==this.regexIndex}considerAll(){this.regexIndex=0}addRule(e,n){
143
+ this.rules.push([e,n]),"begin"===n.type&&this.count++}exec(e){
144
+ const n=this.getMatcher(this.regexIndex);n.lastIndex=this.lastIndex
145
+ ;let t=n.exec(e)
146
+ ;if(this.resumingScanAtSamePosition())if(t&&t.index===this.lastIndex);else{
147
+ const n=this.getMatcher(0);n.lastIndex=this.lastIndex+1,t=n.exec(e)}
148
+ return t&&(this.regexIndex+=t.position+1,
149
+ this.regexIndex===this.count&&this.considerAll()),t}}
148
150
  if(e.compilerExtensions||(e.compilerExtensions=[]),
149
151
  e.contains&&e.contains.includes("self"))throw Error("ERR: contains `self` is not supported at the top-level of a language. See documentation.")
150
- ;return e.classNameAliases=s(e.classNameAliases||{}),function n(r,o){const a=r
151
- ;if(r.isCompiled)return a
152
- ;[T,D,F,P].forEach((e=>e(r,o))),e.compilerExtensions.forEach((e=>e(r,o))),
153
- r.__beforeBegin=null,[L,B,H].forEach((e=>e(r,o))),r.isCompiled=!0;let c=null
152
+ ;return e.classNameAliases=a(e.classNameAliases||{}),function t(r,s){const o=r
153
+ ;if(r.isCompiled)return o
154
+ ;[R,L,Z,$].forEach((e=>e(r,s))),e.compilerExtensions.forEach((e=>e(r,s))),
155
+ r.__beforeBegin=null,[D,I,B].forEach((e=>e(r,s))),r.isCompiled=!0;let l=null
154
156
  ;return"object"==typeof r.keywords&&r.keywords.$pattern&&(r.keywords=Object.assign({},r.keywords),
155
- c=r.keywords.$pattern,
156
- delete r.keywords.$pattern),c=c||/\w+/,r.keywords&&(r.keywords=$(r.keywords,e.case_insensitive)),
157
- a.keywordPatternRe=t(c,!0),
158
- o&&(r.begin||(r.begin=/\B|\b/),a.beginRe=t(a.begin),r.end||r.endsWithParent||(r.end=/\B|\b/),
159
- r.end&&(a.endRe=t(a.end)),
160
- a.terminatorEnd=g(a.end)||"",r.endsWithParent&&o.terminatorEnd&&(a.terminatorEnd+=(r.end?"|":"")+o.terminatorEnd)),
161
- r.illegal&&(a.illegalRe=t(r.illegal)),
162
- r.contains||(r.contains=[]),r.contains=[].concat(...r.contains.map((e=>(e=>(e.variants&&!e.cachedVariants&&(e.cachedVariants=e.variants.map((t=>s(e,{
163
- variants:null},t)))),e.cachedVariants?e.cachedVariants:q(e)?s(e,{
164
- starts:e.starts?s(e.starts):null
165
- }):Object.isFrozen(e)?s(e):e))("self"===e?r:e)))),r.contains.forEach((e=>{n(e,a)
166
- })),r.starts&&n(r.starts,o),a.matcher=(e=>{const t=new i
167
- ;return e.contains.forEach((e=>t.addRule(e.begin,{rule:e,type:"begin"
168
- }))),e.terminatorEnd&&t.addRule(e.terminatorEnd,{type:"end"
169
- }),e.illegal&&t.addRule(e.illegal,{type:"illegal"}),t})(a),a}(e)}function q(e){
170
- return!!e&&(e.endsWithParent||q(e.starts))}class J extends Error{
171
- constructor(e,t){super(e),this.name="HTMLInjectionError",this.html=t}}
172
- const Y=r,Q=s,ee=Symbol("nomatch");var te=(e=>{
173
- const t=Object.create(null),r=Object.create(null),s=[];let o=!0
174
- ;const a="Could not find the language '{}', did you forget to load/include a language module?",c={
175
- disableAutodetect:!0,name:"Plain text",contains:[]};let g={
157
+ l=r.keywords.$pattern,
158
+ delete r.keywords.$pattern),l=l||/\w+/,r.keywords&&(r.keywords=z(r.keywords,e.case_insensitive)),
159
+ o.keywordPatternRe=n(l,!0),
160
+ s&&(r.begin||(r.begin=/\B|\b/),o.beginRe=n(o.begin),r.end||r.endsWithParent||(r.end=/\B|\b/),
161
+ r.end&&(o.endRe=n(o.end)),
162
+ o.terminatorEnd=c(o.end)||"",r.endsWithParent&&s.terminatorEnd&&(o.terminatorEnd+=(r.end?"|":"")+s.terminatorEnd)),
163
+ r.illegal&&(o.illegalRe=n(r.illegal)),
164
+ r.contains||(r.contains=[]),r.contains=[].concat(...r.contains.map((e=>(e=>(e.variants&&!e.cachedVariants&&(e.cachedVariants=e.variants.map((n=>a(e,{
165
+ variants:null},n)))),e.cachedVariants?e.cachedVariants:Q(e)?a(e,{
166
+ starts:e.starts?a(e.starts):null
167
+ }):Object.isFrozen(e)?a(e):e))("self"===e?r:e)))),r.contains.forEach((e=>{t(e,o)
168
+ })),r.starts&&t(r.starts,s),o.matcher=(e=>{const n=new i
169
+ ;return e.contains.forEach((e=>n.addRule(e.begin,{rule:e,type:"begin"
170
+ }))),e.terminatorEnd&&n.addRule(e.terminatorEnd,{type:"end"
171
+ }),e.illegal&&n.addRule(e.illegal,{type:"illegal"}),n})(o),o}(e)}function Q(e){
172
+ return!!e&&(e.endsWithParent||Q(e.starts))}class X extends Error{
173
+ constructor(e,n){super(e),this.name="HTMLInjectionError",this.html=n}}
174
+ const V=t,J=a,Y=Symbol("nomatch"),ee=t=>{
175
+ const a=Object.create(null),i=Object.create(null),r=[];let s=!0
176
+ ;const o="Could not find the language '{}', did you forget to load/include a language module?",c={
177
+ disableAutodetect:!0,name:"Plain text",contains:[]};let p={
176
178
  ignoreUnescapedHTML:!1,throwUnescapedHTML:!1,noHighlightRe:/^(no-?highlight)$/i,
177
179
  languageDetectRe:/\blang(?:uage)?-([\w-]+)\b/i,classPrefix:"hljs-",
178
- cssSelector:"pre code",languages:null,__emitter:l};function b(e){
179
- return g.noHighlightRe.test(e)}function m(e,t,n){let i="",r=""
180
- ;"object"==typeof t?(i=e,
181
- n=t.ignoreIllegals,r=t.language):(X("10.7.0","highlight(lang, code, ...args) has been deprecated."),
182
- X("10.7.0","Please use highlight(code, options) instead.\nhttps://github.com/highlightjs/highlight.js/issues/2277"),
183
- r=e,i=t),void 0===n&&(n=!0);const s={code:i,language:r};N("before:highlight",s)
184
- ;const o=s.result?s.result:E(s.language,s.code,n)
185
- ;return o.code=s.code,N("after:highlight",o),o}function E(e,n,r,s){
186
- const c=Object.create(null);function l(){if(!O.keywords)return void M.addText(S)
187
- ;let e=0;O.keywordPatternRe.lastIndex=0;let t=O.keywordPatternRe.exec(S),n=""
188
- ;for(;t;){n+=S.substring(e,t.index)
189
- ;const r=y.case_insensitive?t[0].toLowerCase():t[0],s=(i=r,O.keywords[i]);if(s){
190
- const[e,i]=s
191
- ;if(M.addText(n),n="",c[r]=(c[r]||0)+1,c[r]<=7&&(R+=i),e.startsWith("_"))n+=t[0];else{
192
- const n=y.classNameAliases[e]||e;M.addKeyword(t[0],n)}}else n+=t[0]
193
- ;e=O.keywordPatternRe.lastIndex,t=O.keywordPatternRe.exec(S)}var i
194
- ;n+=S.substr(e),M.addText(n)}function d(){null!=O.subLanguage?(()=>{
180
+ cssSelector:"pre code",languages:null,__emitter:l};function _(e){
181
+ return p.noHighlightRe.test(e)}function h(e,n,t){let a="",i=""
182
+ ;"object"==typeof n?(a=e,
183
+ t=n.ignoreIllegals,i=n.language):(q("10.7.0","highlight(lang, code, ...args) has been deprecated."),
184
+ q("10.7.0","Please use highlight(code, options) instead.\nhttps://github.com/highlightjs/highlight.js/issues/2277"),
185
+ i=e,a=n),void 0===t&&(t=!0);const r={code:a,language:i};O("before:highlight",r)
186
+ ;const s=r.result?r.result:f(r.language,r.code,t)
187
+ ;return s.code=r.code,O("after:highlight",s),s}function f(e,t,i,r){
188
+ const l=Object.create(null);function c(){if(!O.keywords)return void A.addText(S)
189
+ ;let e=0;O.keywordPatternRe.lastIndex=0;let n=O.keywordPatternRe.exec(S),t=""
190
+ ;for(;n;){t+=S.substring(e,n.index)
191
+ ;const i=v.case_insensitive?n[0].toLowerCase():n[0],r=(a=i,O.keywords[a]);if(r){
192
+ const[e,a]=r
193
+ ;if(A.addText(t),t="",l[i]=(l[i]||0)+1,l[i]<=7&&(C+=a),e.startsWith("_"))t+=n[0];else{
194
+ const t=v.classNameAliases[e]||e;g(n[0],t)}}else t+=n[0]
195
+ ;e=O.keywordPatternRe.lastIndex,n=O.keywordPatternRe.exec(S)}var a
196
+ ;t+=S.substring(e),A.addText(t)}function d(){null!=O.subLanguage?(()=>{
195
197
  if(""===S)return;let e=null;if("string"==typeof O.subLanguage){
196
- if(!t[O.subLanguage])return void M.addText(S)
197
- ;e=E(O.subLanguage,S,!0,N[O.subLanguage]),N[O.subLanguage]=e._top
198
- }else e=x(S,O.subLanguage.length?O.subLanguage:null)
199
- ;O.relevance>0&&(R+=e.relevance),M.addSublanguage(e._emitter,e.language)
200
- })():l(),S=""}function u(e,t){let n=1;for(;void 0!==t[n];){if(!e._emit[n]){n++
201
- ;continue}const i=y.classNameAliases[e[n]]||e[n],r=t[n]
202
- ;i?M.addKeyword(r,i):(S=r,l(),S=""),n++}}function h(e,t){
203
- return e.scope&&"string"==typeof e.scope&&M.openNode(y.classNameAliases[e.scope]||e.scope),
204
- e.beginScope&&(e.beginScope._wrap?(M.addKeyword(S,y.classNameAliases[e.beginScope._wrap]||e.beginScope._wrap),
205
- S=""):e.beginScope._multi&&(u(e.beginScope,t),S="")),O=Object.create(e,{parent:{
206
- value:O}}),O}function f(e,t,n){let r=((e,t)=>{const n=e&&e.exec(t)
207
- ;return n&&0===n.index})(e.endRe,n);if(r){if(e["on:end"]){const n=new i(e)
208
- ;e["on:end"](t,n),n.isMatchIgnored&&(r=!1)}if(r){
198
+ if(!a[O.subLanguage])return void A.addText(S)
199
+ ;e=f(O.subLanguage,S,!0,M[O.subLanguage]),M[O.subLanguage]=e._top
200
+ }else e=E(S,O.subLanguage.length?O.subLanguage:null)
201
+ ;O.relevance>0&&(C+=e.relevance),A.__addSublanguage(e._emitter,e.language)
202
+ })():c(),S=""}function g(e,n){
203
+ ""!==e&&(A.startScope(n),A.addText(e),A.endScope())}function u(e,n){let t=1
204
+ ;const a=n.length-1;for(;t<=a;){if(!e._emit[t]){t++;continue}
205
+ const a=v.classNameAliases[e[t]]||e[t],i=n[t];a?g(i,a):(S=i,c(),S=""),t++}}
206
+ function b(e,n){
207
+ return e.scope&&"string"==typeof e.scope&&A.openNode(v.classNameAliases[e.scope]||e.scope),
208
+ e.beginScope&&(e.beginScope._wrap?(g(S,v.classNameAliases[e.beginScope._wrap]||e.beginScope._wrap),
209
+ S=""):e.beginScope._multi&&(u(e.beginScope,n),S="")),O=Object.create(e,{parent:{
210
+ value:O}}),O}function m(e,t,a){let i=((e,n)=>{const t=e&&e.exec(n)
211
+ ;return t&&0===t.index})(e.endRe,a);if(i){if(e["on:end"]){const a=new n(e)
212
+ ;e["on:end"](t,a),a.isMatchIgnored&&(i=!1)}if(i){
209
213
  for(;e.endsParent&&e.parent;)e=e.parent;return e}}
210
- if(e.endsWithParent)return f(e.parent,t,n)}function p(e){
211
- return 0===O.matcher.regexIndex?(S+=e[0],1):(I=!0,0)}function b(e){
212
- const t=e[0],i=n.substr(e.index),r=f(O,e,i);if(!r)return ee;const s=O
214
+ if(e.endsWithParent)return m(e.parent,t,a)}function _(e){
215
+ return 0===O.matcher.regexIndex?(S+=e[0],1):(D=!0,0)}function h(e){
216
+ const n=e[0],a=t.substring(e.index),i=m(O,e,a);if(!i)return Y;const r=O
213
217
  ;O.endScope&&O.endScope._wrap?(d(),
214
- M.addKeyword(t,O.endScope._wrap)):O.endScope&&O.endScope._multi?(d(),
215
- u(O.endScope,e)):s.skip?S+=t:(s.returnEnd||s.excludeEnd||(S+=t),
216
- d(),s.excludeEnd&&(S=t));do{
217
- O.scope&&M.closeNode(),O.skip||O.subLanguage||(R+=O.relevance),O=O.parent
218
- }while(O!==r.parent);return r.starts&&h(r.starts,e),s.returnEnd?0:t.length}
219
- let m={};function w(t,s){const a=s&&s[0];if(S+=t,null==a)return d(),0
220
- ;if("begin"===m.type&&"end"===s.type&&m.index===s.index&&""===a){
221
- if(S+=n.slice(s.index,s.index+1),!o){const t=Error(`0 width match regex (${e})`)
222
- ;throw t.languageName=e,t.badRule=m.rule,t}return 1}
223
- if(m=s,"begin"===s.type)return(e=>{
224
- const t=e[0],n=e.rule,r=new i(n),s=[n.__beforeBegin,n["on:begin"]]
225
- ;for(const n of s)if(n&&(n(e,r),r.isMatchIgnored))return p(t)
226
- ;return n.skip?S+=t:(n.excludeBegin&&(S+=t),
227
- d(),n.returnBegin||n.excludeBegin||(S=t)),h(n,e),n.returnBegin?0:t.length})(s)
228
- ;if("illegal"===s.type&&!r){
229
- const e=Error('Illegal lexeme "'+a+'" for mode "'+(O.scope||"<unnamed>")+'"')
230
- ;throw e.mode=O,e}if("end"===s.type){const e=b(s);if(e!==ee)return e}
231
- if("illegal"===s.type&&""===a)return 1
232
- ;if(A>1e5&&A>3*s.index)throw Error("potential infinite loop, way more iterations than matches")
233
- ;return S+=a,a.length}const y=v(e)
234
- ;if(!y)throw K(a.replace("{}",e)),Error('Unknown language: "'+e+'"')
235
- ;const _=V(y);let k="",O=s||_;const N={},M=new g.__emitter(g);(()=>{const e=[]
236
- ;for(let t=O;t!==y;t=t.parent)t.scope&&e.unshift(t.scope)
237
- ;e.forEach((e=>M.openNode(e)))})();let S="",R=0,j=0,A=0,I=!1;try{
238
- for(O.matcher.considerAll();;){
239
- A++,I?I=!1:O.matcher.considerAll(),O.matcher.lastIndex=j
240
- ;const e=O.matcher.exec(n);if(!e)break;const t=w(n.substring(j,e.index),e)
241
- ;j=e.index+t}return w(n.substr(j)),M.closeAllNodes(),M.finalize(),k=M.toHTML(),{
242
- language:e,value:k,relevance:R,illegal:!1,_emitter:M,_top:O}}catch(t){
243
- if(t.message&&t.message.includes("Illegal"))return{language:e,value:Y(n),
244
- illegal:!0,relevance:0,_illegalBy:{message:t.message,index:j,
245
- context:n.slice(j-100,j+100),mode:t.mode,resultSoFar:k},_emitter:M};if(o)return{
246
- language:e,value:Y(n),illegal:!1,relevance:0,errorRaised:t,_emitter:M,_top:O}
247
- ;throw t}}function x(e,n){n=n||g.languages||Object.keys(t);const i=(e=>{
248
- const t={value:Y(e),illegal:!1,relevance:0,_top:c,_emitter:new g.__emitter(g)}
249
- ;return t._emitter.addText(e),t})(e),r=n.filter(v).filter(O).map((t=>E(t,e,!1)))
250
- ;r.unshift(i);const s=r.sort(((e,t)=>{
251
- if(e.relevance!==t.relevance)return t.relevance-e.relevance
252
- ;if(e.language&&t.language){if(v(e.language).supersetOf===t.language)return 1
253
- ;if(v(t.language).supersetOf===e.language)return-1}return 0})),[o,a]=s,l=o
254
- ;return l.secondBest=a,l}function w(e){let t=null;const n=(e=>{
255
- let t=e.className+" ";t+=e.parentNode?e.parentNode.className:""
256
- ;const n=g.languageDetectRe.exec(t);if(n){const t=v(n[1])
257
- ;return t||(W(a.replace("{}",n[1])),
258
- W("Falling back to no-highlight mode for this block.",e)),t?n[1]:"no-highlight"}
259
- return t.split(/\s+/).find((e=>b(e)||v(e)))})(e);if(b(n))return
260
- ;if(N("before:highlightElement",{el:e,language:n
261
- }),e.children.length>0&&(g.ignoreUnescapedHTML||(console.warn("One of your code blocks includes unescaped HTML. This is a potentially serious security risk."),
218
+ g(n,O.endScope._wrap)):O.endScope&&O.endScope._multi?(d(),
219
+ u(O.endScope,e)):r.skip?S+=n:(r.returnEnd||r.excludeEnd||(S+=n),
220
+ d(),r.excludeEnd&&(S=n));do{
221
+ O.scope&&A.closeNode(),O.skip||O.subLanguage||(C+=O.relevance),O=O.parent
222
+ }while(O!==i.parent);return i.starts&&b(i.starts,e),r.returnEnd?0:n.length}
223
+ let y={};function w(a,r){const o=r&&r[0];if(S+=a,null==o)return d(),0
224
+ ;if("begin"===y.type&&"end"===r.type&&y.index===r.index&&""===o){
225
+ if(S+=t.slice(r.index,r.index+1),!s){const n=Error(`0 width match regex (${e})`)
226
+ ;throw n.languageName=e,n.badRule=y.rule,n}return 1}
227
+ if(y=r,"begin"===r.type)return(e=>{
228
+ const t=e[0],a=e.rule,i=new n(a),r=[a.__beforeBegin,a["on:begin"]]
229
+ ;for(const n of r)if(n&&(n(e,i),i.isMatchIgnored))return _(t)
230
+ ;return a.skip?S+=t:(a.excludeBegin&&(S+=t),
231
+ d(),a.returnBegin||a.excludeBegin||(S=t)),b(a,e),a.returnBegin?0:t.length})(r)
232
+ ;if("illegal"===r.type&&!i){
233
+ const e=Error('Illegal lexeme "'+o+'" for mode "'+(O.scope||"<unnamed>")+'"')
234
+ ;throw e.mode=O,e}if("end"===r.type){const e=h(r);if(e!==Y)return e}
235
+ if("illegal"===r.type&&""===o)return S+="\n",1
236
+ ;if(R>1e5&&R>3*r.index)throw Error("potential infinite loop, way more iterations than matches")
237
+ ;return S+=o,o.length}const v=N(e)
238
+ ;if(!v)throw P(o.replace("{}",e)),Error('Unknown language: "'+e+'"')
239
+ ;const k=W(v);let x="",O=r||k;const M={},A=new p.__emitter(p);(()=>{const e=[]
240
+ ;for(let n=O;n!==v;n=n.parent)n.scope&&e.unshift(n.scope)
241
+ ;e.forEach((e=>A.openNode(e)))})();let S="",C=0,T=0,R=0,D=!1;try{
242
+ if(v.__emitTokens)v.__emitTokens(t,A);else{for(O.matcher.considerAll();;){
243
+ R++,D?D=!1:O.matcher.considerAll(),O.matcher.lastIndex=T
244
+ ;const e=O.matcher.exec(t);if(!e)break;const n=w(t.substring(T,e.index),e)
245
+ ;T=e.index+n}w(t.substring(T))}return A.finalize(),x=A.toHTML(),{language:e,
246
+ value:x,relevance:C,illegal:!1,_emitter:A,_top:O}}catch(n){
247
+ if(n.message&&n.message.includes("Illegal"))return{language:e,value:V(t),
248
+ illegal:!0,relevance:0,_illegalBy:{message:n.message,index:T,
249
+ context:t.slice(T-100,T+100),mode:n.mode,resultSoFar:x},_emitter:A};if(s)return{
250
+ language:e,value:V(t),illegal:!1,relevance:0,errorRaised:n,_emitter:A,_top:O}
251
+ ;throw n}}function E(e,n){n=n||p.languages||Object.keys(a);const t=(e=>{
252
+ const n={value:V(e),illegal:!1,relevance:0,_top:c,_emitter:new p.__emitter(p)}
253
+ ;return n._emitter.addText(e),n})(e),i=n.filter(N).filter(x).map((n=>f(n,e,!1)))
254
+ ;i.unshift(t);const r=i.sort(((e,n)=>{
255
+ if(e.relevance!==n.relevance)return n.relevance-e.relevance
256
+ ;if(e.language&&n.language){if(N(e.language).supersetOf===n.language)return 1
257
+ ;if(N(n.language).supersetOf===e.language)return-1}return 0})),[s,o]=r,l=s
258
+ ;return l.secondBest=o,l}function y(e){let n=null;const t=(e=>{
259
+ let n=e.className+" ";n+=e.parentNode?e.parentNode.className:""
260
+ ;const t=p.languageDetectRe.exec(n);if(t){const n=N(t[1])
261
+ ;return n||(K(o.replace("{}",t[1])),
262
+ K("Falling back to no-highlight mode for this block.",e)),n?t[1]:"no-highlight"}
263
+ return n.split(/\s+/).find((e=>_(e)||N(e)))})(e);if(_(t))return
264
+ ;if(O("before:highlightElement",{el:e,language:t
265
+ }),e.dataset.highlighted)return void console.log("Element previously highlighted. To highlight again, first unset `dataset.highlighted`.",e)
266
+ ;if(e.children.length>0&&(p.ignoreUnescapedHTML||(console.warn("One of your code blocks includes unescaped HTML. This is a potentially serious security risk."),
262
267
  console.warn("https://github.com/highlightjs/highlight.js/wiki/security"),
263
268
  console.warn("The element with unescaped HTML:"),
264
- console.warn(e)),g.throwUnescapedHTML))throw new J("One of your code blocks includes unescaped HTML.",e.innerHTML)
265
- ;t=e;const i=t.textContent,s=n?m(i,{language:n,ignoreIllegals:!0}):x(i)
266
- ;e.innerHTML=s.value,((e,t,n)=>{const i=t&&r[t]||n
267
- ;e.classList.add("hljs"),e.classList.add("language-"+i)
268
- })(e,n,s.language),e.result={language:s.language,re:s.relevance,
269
- relevance:s.relevance},s.secondBest&&(e.secondBest={
270
- language:s.secondBest.language,relevance:s.secondBest.relevance
271
- }),N("after:highlightElement",{el:e,result:s,text:i})}let y=!1;function _(){
272
- "loading"!==document.readyState?document.querySelectorAll(g.cssSelector).forEach(w):y=!0
273
- }function v(e){return e=(e||"").toLowerCase(),t[e]||t[r[e]]}
274
- function k(e,{languageName:t}){"string"==typeof e&&(e=[e]),e.forEach((e=>{
275
- r[e.toLowerCase()]=t}))}function O(e){const t=v(e)
276
- ;return t&&!t.disableAutodetect}function N(e,t){const n=e;s.forEach((e=>{
277
- e[n]&&e[n](t)}))}
278
- "undefined"!=typeof window&&window.addEventListener&&window.addEventListener("DOMContentLoaded",(()=>{
279
- y&&_()}),!1),Object.assign(e,{highlight:m,highlightAuto:x,highlightAll:_,
280
- highlightElement:w,
281
- highlightBlock:e=>(X("10.7.0","highlightBlock will be removed entirely in v12.0"),
282
- X("10.7.0","Please use highlightElement now."),w(e)),configure:e=>{g=Q(g,e)},
269
+ console.warn(e)),p.throwUnescapedHTML))throw new X("One of your code blocks includes unescaped HTML.",e.innerHTML)
270
+ ;n=e;const a=n.textContent,r=t?h(a,{language:t,ignoreIllegals:!0}):E(a)
271
+ ;e.innerHTML=r.value,e.dataset.highlighted="yes",((e,n,t)=>{const a=n&&i[n]||t
272
+ ;e.classList.add("hljs"),e.classList.add("language-"+a)
273
+ })(e,t,r.language),e.result={language:r.language,re:r.relevance,
274
+ relevance:r.relevance},r.secondBest&&(e.secondBest={
275
+ language:r.secondBest.language,relevance:r.secondBest.relevance
276
+ }),O("after:highlightElement",{el:e,result:r,text:a})}let w=!1;function v(){
277
+ if("loading"===document.readyState)return w||window.addEventListener("DOMContentLoaded",(()=>{
278
+ v()}),!1),void(w=!0);document.querySelectorAll(p.cssSelector).forEach(y)}
279
+ function N(e){return e=(e||"").toLowerCase(),a[e]||a[i[e]]}
280
+ function k(e,{languageName:n}){"string"==typeof e&&(e=[e]),e.forEach((e=>{
281
+ i[e.toLowerCase()]=n}))}function x(e){const n=N(e)
282
+ ;return n&&!n.disableAutodetect}function O(e,n){const t=e;r.forEach((e=>{
283
+ e[t]&&e[t](n)}))}Object.assign(t,{highlight:h,highlightAuto:E,highlightAll:v,
284
+ highlightElement:y,
285
+ highlightBlock:e=>(q("10.7.0","highlightBlock will be removed entirely in v12.0"),
286
+ q("10.7.0","Please use highlightElement now."),y(e)),configure:e=>{p=J(p,e)},
283
287
  initHighlighting:()=>{
284
- _(),X("10.6.0","initHighlighting() deprecated. Use highlightAll() now.")},
288
+ v(),q("10.6.0","initHighlighting() deprecated. Use highlightAll() now.")},
285
289
  initHighlightingOnLoad:()=>{
286
- _(),X("10.6.0","initHighlightingOnLoad() deprecated. Use highlightAll() now.")
287
- },registerLanguage:(n,i)=>{let r=null;try{r=i(e)}catch(e){
288
- if(K("Language definition for '{}' could not be registered.".replace("{}",n)),
289
- !o)throw e;K(e),r=c}
290
- r.name||(r.name=n),t[n]=r,r.rawDefinition=i.bind(null,e),r.aliases&&k(r.aliases,{
291
- languageName:n})},unregisterLanguage:e=>{delete t[e]
292
- ;for(const t of Object.keys(r))r[t]===e&&delete r[t]},
293
- listLanguages:()=>Object.keys(t),getLanguage:v,registerAliases:k,
294
- autoDetection:O,inherit:Q,addPlugin:e=>{(e=>{
295
- e["before:highlightBlock"]&&!e["before:highlightElement"]&&(e["before:highlightElement"]=t=>{
296
- e["before:highlightBlock"](Object.assign({block:t.el},t))
297
- }),e["after:highlightBlock"]&&!e["after:highlightElement"]&&(e["after:highlightElement"]=t=>{
298
- e["after:highlightBlock"](Object.assign({block:t.el},t))})})(e),s.push(e)}
299
- }),e.debugMode=()=>{o=!1},e.safeMode=()=>{o=!0
300
- },e.versionString="11.4.0",e.regex={concat:f,lookahead:d,either:p,optional:h,
301
- anyNumberOfTimes:u};for(const e in A)"object"==typeof A[e]&&n(A[e])
302
- ;return Object.assign(e,A),e})({});return te}()
303
- ;"object"==typeof exports&&"undefined"!=typeof module&&(module.exports=hljs);/*! `c` grammar compiled for Highlight.js 11.4.0 */
304
- (()=>{var e=(()=>{"use strict";return e=>{const n=e.regex,t=e.COMMENT("//","$",{
305
- contains:[{begin:/\\\n/}]
306
- }),s="[a-zA-Z_]\\w*::",a="(decltype\\(auto\\)|"+n.optional(s)+"[a-zA-Z_]\\w*"+n.optional("<[^<>]+>")+")",r={
290
+ v(),q("10.6.0","initHighlightingOnLoad() deprecated. Use highlightAll() now.")
291
+ },registerLanguage:(e,n)=>{let i=null;try{i=n(t)}catch(n){
292
+ if(P("Language definition for '{}' could not be registered.".replace("{}",e)),
293
+ !s)throw n;P(n),i=c}
294
+ i.name||(i.name=e),a[e]=i,i.rawDefinition=n.bind(null,t),i.aliases&&k(i.aliases,{
295
+ languageName:e})},unregisterLanguage:e=>{delete a[e]
296
+ ;for(const n of Object.keys(i))i[n]===e&&delete i[n]},
297
+ listLanguages:()=>Object.keys(a),getLanguage:N,registerAliases:k,
298
+ autoDetection:x,inherit:J,addPlugin:e=>{(e=>{
299
+ e["before:highlightBlock"]&&!e["before:highlightElement"]&&(e["before:highlightElement"]=n=>{
300
+ e["before:highlightBlock"](Object.assign({block:n.el},n))
301
+ }),e["after:highlightBlock"]&&!e["after:highlightElement"]&&(e["after:highlightElement"]=n=>{
302
+ e["after:highlightBlock"](Object.assign({block:n.el},n))})})(e),r.push(e)},
303
+ removePlugin:e=>{const n=r.indexOf(e);-1!==n&&r.splice(n,1)}}),t.debugMode=()=>{
304
+ s=!1},t.safeMode=()=>{s=!0},t.versionString="11.11.1",t.regex={concat:b,
305
+ lookahead:d,either:m,optional:u,anyNumberOfTimes:g}
306
+ ;for(const n in C)"object"==typeof C[n]&&e(C[n]);return Object.assign(t,C),t
307
+ },ne=ee({});ne.newInstance=()=>ee({});const te=e=>({IMPORTANT:{scope:"meta",
308
+ begin:"!important"},BLOCK_COMMENT:e.C_BLOCK_COMMENT_MODE,HEXCOLOR:{
309
+ scope:"number",begin:/#(([0-9a-fA-F]{3,4})|(([0-9a-fA-F]{2}){3,4}))\b/},
310
+ FUNCTION_DISPATCH:{className:"built_in",begin:/[\w-]+(?=\()/},
311
+ ATTRIBUTE_SELECTOR_MODE:{scope:"selector-attr",begin:/\[/,end:/\]/,illegal:"$",
312
+ contains:[e.APOS_STRING_MODE,e.QUOTE_STRING_MODE]},CSS_NUMBER_MODE:{
313
+ scope:"number",
314
+ begin:e.NUMBER_RE+"(%|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)?",
315
+ relevance:0},CSS_VARIABLE:{className:"attr",begin:/--[A-Za-z_][A-Za-z0-9_-]*/}
316
+ }),ae=["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","optgroup","option","p","picture","q","quote","samp","section","select","source","span","strong","summary","sup","table","tbody","td","textarea","tfoot","th","thead","time","tr","ul","var","video","defs","g","marker","mask","pattern","svg","switch","symbol","feBlend","feColorMatrix","feComponentTransfer","feComposite","feConvolveMatrix","feDiffuseLighting","feDisplacementMap","feFlood","feGaussianBlur","feImage","feMerge","feMorphology","feOffset","feSpecularLighting","feTile","feTurbulence","linearGradient","radialGradient","stop","circle","ellipse","image","line","path","polygon","polyline","rect","text","use","textPath","tspan","foreignObject","clipPath"],ie=["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"].sort().reverse(),re=["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"].sort().reverse(),se=["after","backdrop","before","cue","cue-region","first-letter","first-line","grammar-error","marker","part","placeholder","selection","slotted","spelling-error"].sort().reverse(),oe=["accent-color","align-content","align-items","align-self","alignment-baseline","all","anchor-name","animation","animation-composition","animation-delay","animation-direction","animation-duration","animation-fill-mode","animation-iteration-count","animation-name","animation-play-state","animation-range","animation-range-end","animation-range-start","animation-timeline","animation-timing-function","appearance","aspect-ratio","backdrop-filter","backface-visibility","background","background-attachment","background-blend-mode","background-clip","background-color","background-image","background-origin","background-position","background-position-x","background-position-y","background-repeat","background-size","baseline-shift","block-size","border","border-block","border-block-color","border-block-end","border-block-end-color","border-block-end-style","border-block-end-width","border-block-start","border-block-start-color","border-block-start-style","border-block-start-width","border-block-style","border-block-width","border-bottom","border-bottom-color","border-bottom-left-radius","border-bottom-right-radius","border-bottom-style","border-bottom-width","border-collapse","border-color","border-end-end-radius","border-end-start-radius","border-image","border-image-outset","border-image-repeat","border-image-slice","border-image-source","border-image-width","border-inline","border-inline-color","border-inline-end","border-inline-end-color","border-inline-end-style","border-inline-end-width","border-inline-start","border-inline-start-color","border-inline-start-style","border-inline-start-width","border-inline-style","border-inline-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-start-end-radius","border-start-start-radius","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-align","box-decoration-break","box-direction","box-flex","box-flex-group","box-lines","box-ordinal-group","box-orient","box-pack","box-shadow","box-sizing","break-after","break-before","break-inside","caption-side","caret-color","clear","clip","clip-path","clip-rule","color","color-interpolation","color-interpolation-filters","color-profile","color-rendering","color-scheme","column-count","column-fill","column-gap","column-rule","column-rule-color","column-rule-style","column-rule-width","column-span","column-width","columns","contain","contain-intrinsic-block-size","contain-intrinsic-height","contain-intrinsic-inline-size","contain-intrinsic-size","contain-intrinsic-width","container","container-name","container-type","content","content-visibility","counter-increment","counter-reset","counter-set","cue","cue-after","cue-before","cursor","cx","cy","direction","display","dominant-baseline","empty-cells","enable-background","field-sizing","fill","fill-opacity","fill-rule","filter","flex","flex-basis","flex-direction","flex-flow","flex-grow","flex-shrink","flex-wrap","float","flood-color","flood-opacity","flow","font","font-display","font-family","font-feature-settings","font-kerning","font-language-override","font-optical-sizing","font-palette","font-size","font-size-adjust","font-smooth","font-smoothing","font-stretch","font-style","font-synthesis","font-synthesis-position","font-synthesis-small-caps","font-synthesis-style","font-synthesis-weight","font-variant","font-variant-alternates","font-variant-caps","font-variant-east-asian","font-variant-emoji","font-variant-ligatures","font-variant-numeric","font-variant-position","font-variation-settings","font-weight","forced-color-adjust","gap","glyph-orientation-horizontal","glyph-orientation-vertical","grid","grid-area","grid-auto-columns","grid-auto-flow","grid-auto-rows","grid-column","grid-column-end","grid-column-start","grid-gap","grid-row","grid-row-end","grid-row-start","grid-template","grid-template-areas","grid-template-columns","grid-template-rows","hanging-punctuation","height","hyphenate-character","hyphenate-limit-chars","hyphens","icon","image-orientation","image-rendering","image-resolution","ime-mode","initial-letter","initial-letter-align","inline-size","inset","inset-area","inset-block","inset-block-end","inset-block-start","inset-inline","inset-inline-end","inset-inline-start","isolation","justify-content","justify-items","justify-self","kerning","left","letter-spacing","lighting-color","line-break","line-height","line-height-step","list-style","list-style-image","list-style-position","list-style-type","margin","margin-block","margin-block-end","margin-block-start","margin-bottom","margin-inline","margin-inline-end","margin-inline-start","margin-left","margin-right","margin-top","margin-trim","marker","marker-end","marker-mid","marker-start","marks","mask","mask-border","mask-border-mode","mask-border-outset","mask-border-repeat","mask-border-slice","mask-border-source","mask-border-width","mask-clip","mask-composite","mask-image","mask-mode","mask-origin","mask-position","mask-repeat","mask-size","mask-type","masonry-auto-flow","math-depth","math-shift","math-style","max-block-size","max-height","max-inline-size","max-width","min-block-size","min-height","min-inline-size","min-width","mix-blend-mode","nav-down","nav-index","nav-left","nav-right","nav-up","none","normal","object-fit","object-position","offset","offset-anchor","offset-distance","offset-path","offset-position","offset-rotate","opacity","order","orphans","outline","outline-color","outline-offset","outline-style","outline-width","overflow","overflow-anchor","overflow-block","overflow-clip-margin","overflow-inline","overflow-wrap","overflow-x","overflow-y","overlay","overscroll-behavior","overscroll-behavior-block","overscroll-behavior-inline","overscroll-behavior-x","overscroll-behavior-y","padding","padding-block","padding-block-end","padding-block-start","padding-bottom","padding-inline","padding-inline-end","padding-inline-start","padding-left","padding-right","padding-top","page","page-break-after","page-break-before","page-break-inside","paint-order","pause","pause-after","pause-before","perspective","perspective-origin","place-content","place-items","place-self","pointer-events","position","position-anchor","position-visibility","print-color-adjust","quotes","r","resize","rest","rest-after","rest-before","right","rotate","row-gap","ruby-align","ruby-position","scale","scroll-behavior","scroll-margin","scroll-margin-block","scroll-margin-block-end","scroll-margin-block-start","scroll-margin-bottom","scroll-margin-inline","scroll-margin-inline-end","scroll-margin-inline-start","scroll-margin-left","scroll-margin-right","scroll-margin-top","scroll-padding","scroll-padding-block","scroll-padding-block-end","scroll-padding-block-start","scroll-padding-bottom","scroll-padding-inline","scroll-padding-inline-end","scroll-padding-inline-start","scroll-padding-left","scroll-padding-right","scroll-padding-top","scroll-snap-align","scroll-snap-stop","scroll-snap-type","scroll-timeline","scroll-timeline-axis","scroll-timeline-name","scrollbar-color","scrollbar-gutter","scrollbar-width","shape-image-threshold","shape-margin","shape-outside","shape-rendering","speak","speak-as","src","stop-color","stop-opacity","stroke","stroke-dasharray","stroke-dashoffset","stroke-linecap","stroke-linejoin","stroke-miterlimit","stroke-opacity","stroke-width","tab-size","table-layout","text-align","text-align-all","text-align-last","text-anchor","text-combine-upright","text-decoration","text-decoration-color","text-decoration-line","text-decoration-skip","text-decoration-skip-ink","text-decoration-style","text-decoration-thickness","text-emphasis","text-emphasis-color","text-emphasis-position","text-emphasis-style","text-indent","text-justify","text-orientation","text-overflow","text-rendering","text-shadow","text-size-adjust","text-transform","text-underline-offset","text-underline-position","text-wrap","text-wrap-mode","text-wrap-style","timeline-scope","top","touch-action","transform","transform-box","transform-origin","transform-style","transition","transition-behavior","transition-delay","transition-duration","transition-property","transition-timing-function","translate","unicode-bidi","user-modify","user-select","vector-effect","vertical-align","view-timeline","view-timeline-axis","view-timeline-inset","view-timeline-name","view-transition-name","visibility","voice-balance","voice-duration","voice-family","voice-pitch","voice-range","voice-rate","voice-stress","voice-volume","white-space","white-space-collapse","widows","width","will-change","word-break","word-spacing","word-wrap","writing-mode","x","y","z-index","zoom"].sort().reverse(),le=re.concat(se).sort().reverse()
317
+ ;var ce="[0-9](_*[0-9])*",de=`\\.(${ce})`,ge="[0-9a-fA-F](_*[0-9a-fA-F])*",ue={
318
+ className:"number",variants:[{
319
+ begin:`(\\b(${ce})((${de})|\\.)?|(${de}))[eE][+-]?(${ce})[fFdD]?\\b`},{
320
+ begin:`\\b(${ce})((${de})[fFdD]?\\b|\\.([fFdD]\\b)?)`},{
321
+ begin:`(${de})[fFdD]?\\b`},{begin:`\\b(${ce})[fFdD]\\b`},{
322
+ begin:`\\b0[xX]((${ge})\\.?|(${ge})?\\.(${ge}))[pP][+-]?(${ce})[fFdD]?\\b`},{
323
+ begin:"\\b(0|[1-9](_*[0-9])*)[lL]?\\b"},{begin:`\\b0[xX](${ge})[lL]?\\b`},{
324
+ begin:"\\b0(_*[0-7])*[lL]?\\b"},{begin:"\\b0[bB][01](_*[01])*[lL]?\\b"}],
325
+ relevance:0};function be(e,n,t){return-1===t?"":e.replace(n,(a=>be(e,n,t-1)))}
326
+ const me="[A-Za-z$_][0-9A-Za-z$_]*",pe=["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","using"],_e=["true","false","null","undefined","NaN","Infinity"],he=["Object","Function","Boolean","Symbol","Math","Date","Number","BigInt","String","RegExp","Array","Float32Array","Float64Array","Int8Array","Uint8Array","Uint8ClampedArray","Int16Array","Int32Array","Uint16Array","Uint32Array","BigInt64Array","BigUint64Array","Set","Map","WeakSet","WeakMap","ArrayBuffer","SharedArrayBuffer","Atomics","DataView","JSON","Promise","Generator","GeneratorFunction","AsyncFunction","Reflect","Proxy","Intl","WebAssembly"],fe=["Error","EvalError","InternalError","RangeError","ReferenceError","SyntaxError","TypeError","URIError"],Ee=["setInterval","setTimeout","clearInterval","clearTimeout","require","exports","eval","isFinite","isNaN","parseFloat","parseInt","decodeURI","decodeURIComponent","encodeURI","encodeURIComponent","escape","unescape"],ye=["arguments","this","super","console","window","document","localStorage","sessionStorage","module","global"],we=[].concat(Ee,he,fe)
327
+ ;function ve(e){const n=e.regex,t=me,a={begin:/<[A-Za-z0-9\\._:-]+/,
328
+ end:/\/[A-Za-z0-9\\._:-]+>|\/>/,isTrulyOpeningTag:(e,n)=>{
329
+ const t=e[0].length+e.index,a=e.input[t]
330
+ ;if("<"===a||","===a)return void n.ignoreMatch();let i
331
+ ;">"===a&&(((e,{after:n})=>{const t="</"+e[0].slice(1)
332
+ ;return-1!==e.input.indexOf(t,n)})(e,{after:t})||n.ignoreMatch())
333
+ ;const r=e.input.substring(t)
334
+ ;((i=r.match(/^\s*=/))||(i=r.match(/^\s+extends\s+/))&&0===i.index)&&n.ignoreMatch()
335
+ }},i={$pattern:me,keyword:pe,literal:_e,built_in:we,"variable.language":ye
336
+ },r="[0-9](_?[0-9])*",s=`\\.(${r})`,o="0|[1-9](_?[0-9])*|0[0-7]*[89][0-9]*",l={
337
+ className:"number",variants:[{
338
+ begin:`(\\b(${o})((${s})|\\.)?|(${s}))[eE][+-]?(${r})\\b`},{
339
+ begin:`\\b(${o})\\b((${s})\\b|\\.)?|(${s})\\b`},{
340
+ begin:"\\b(0|[1-9](_?[0-9])*)n\\b"},{
341
+ begin:"\\b0[xX][0-9a-fA-F](_?[0-9a-fA-F])*n?\\b"},{
342
+ begin:"\\b0[bB][0-1](_?[0-1])*n?\\b"},{begin:"\\b0[oO][0-7](_?[0-7])*n?\\b"},{
343
+ begin:"\\b0[0-7]+n?\\b"}],relevance:0},c={className:"subst",begin:"\\$\\{",
344
+ end:"\\}",keywords:i,contains:[]},d={begin:".?html`",end:"",starts:{end:"`",
345
+ returnEnd:!1,contains:[e.BACKSLASH_ESCAPE,c],subLanguage:"xml"}},g={
346
+ begin:".?css`",end:"",starts:{end:"`",returnEnd:!1,
347
+ contains:[e.BACKSLASH_ESCAPE,c],subLanguage:"css"}},u={begin:".?gql`",end:"",
348
+ starts:{end:"`",returnEnd:!1,contains:[e.BACKSLASH_ESCAPE,c],
349
+ subLanguage:"graphql"}},b={className:"string",begin:"`",end:"`",
350
+ contains:[e.BACKSLASH_ESCAPE,c]},m={className:"comment",
351
+ variants:[e.COMMENT(/\/\*\*(?!\/)/,"\\*/",{relevance:0,contains:[{
352
+ begin:"(?=@[A-Za-z]+)",relevance:0,contains:[{className:"doctag",
353
+ begin:"@[A-Za-z]+"},{className:"type",begin:"\\{",end:"\\}",excludeEnd:!0,
354
+ excludeBegin:!0,relevance:0},{className:"variable",begin:t+"(?=\\s*(-)|$)",
355
+ endsParent:!0,relevance:0},{begin:/(?=[^\n])\s/,relevance:0}]}]
356
+ }),e.C_BLOCK_COMMENT_MODE,e.C_LINE_COMMENT_MODE]
357
+ },p=[e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,d,g,u,b,{match:/\$\d+/},l]
358
+ ;c.contains=p.concat({begin:/\{/,end:/\}/,keywords:i,contains:["self"].concat(p)
359
+ });const _=[].concat(m,c.contains),h=_.concat([{begin:/(\s*)\(/,end:/\)/,
360
+ keywords:i,contains:["self"].concat(_)}]),f={className:"params",begin:/(\s*)\(/,
361
+ end:/\)/,excludeBegin:!0,excludeEnd:!0,keywords:i,contains:h},E={variants:[{
362
+ match:[/class/,/\s+/,t,/\s+/,/extends/,/\s+/,n.concat(t,"(",n.concat(/\./,t),")*")],
363
+ scope:{1:"keyword",3:"title.class",5:"keyword",7:"title.class.inherited"}},{
364
+ match:[/class/,/\s+/,t],scope:{1:"keyword",3:"title.class"}}]},y={relevance:0,
365
+ match:n.either(/\bJSON/,/\b[A-Z][a-z]+([A-Z][a-z]*|\d)*/,/\b[A-Z]{2,}([A-Z][a-z]+|\d)+([A-Z][a-z]*)*/,/\b[A-Z]{2,}[a-z]+([A-Z][a-z]+|\d)*([A-Z][a-z]*)*/),
366
+ className:"title.class",keywords:{_:[...he,...fe]}},w={variants:[{
367
+ match:[/function/,/\s+/,t,/(?=\s*\()/]},{match:[/function/,/\s*(?=\()/]}],
368
+ className:{1:"keyword",3:"title.function"},label:"func.def",contains:[f],
369
+ illegal:/%/},v={
370
+ match:n.concat(/\b/,(N=[...Ee,"super","import"].map((e=>e+"\\s*\\(")),
371
+ n.concat("(?!",N.join("|"),")")),t,n.lookahead(/\s*\(/)),
372
+ className:"title.function",relevance:0};var N;const k={
373
+ begin:n.concat(/\./,n.lookahead(n.concat(t,/(?![0-9A-Za-z$_(])/))),end:t,
374
+ excludeBegin:!0,keywords:"prototype",className:"property",relevance:0},x={
375
+ match:[/get|set/,/\s+/,t,/(?=\()/],className:{1:"keyword",3:"title.function"},
376
+ contains:[{begin:/\(\)/},f]
377
+ },O="(\\([^()]*(\\([^()]*(\\([^()]*\\)[^()]*)*\\)[^()]*)*\\)|"+e.UNDERSCORE_IDENT_RE+")\\s*=>",M={
378
+ match:[/const|var|let/,/\s+/,t,/\s*/,/=\s*/,/(async\s*)?/,n.lookahead(O)],
379
+ keywords:"async",className:{1:"keyword",3:"title.function"},contains:[f]}
380
+ ;return{name:"JavaScript",aliases:["js","jsx","mjs","cjs"],keywords:i,exports:{
381
+ PARAMS_CONTAINS:h,CLASS_REFERENCE:y},illegal:/#(?![$_A-z])/,
382
+ contains:[e.SHEBANG({label:"shebang",binary:"node",relevance:5}),{
383
+ label:"use_strict",className:"meta",relevance:10,
384
+ begin:/^\s*['"]use (strict|asm)['"]/
385
+ },e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,d,g,u,b,m,{match:/\$\d+/},l,y,{
386
+ scope:"attr",match:t+n.lookahead(":"),relevance:0},M,{
387
+ begin:"("+e.RE_STARTERS_RE+"|\\b(case|return|throw)\\b)\\s*",
388
+ keywords:"return throw case",relevance:0,contains:[m,e.REGEXP_MODE,{
389
+ className:"function",begin:O,returnBegin:!0,end:"\\s*=>",contains:[{
390
+ className:"params",variants:[{begin:e.UNDERSCORE_IDENT_RE,relevance:0},{
391
+ className:null,begin:/\(\s*\)/,skip:!0},{begin:/(\s*)\(/,end:/\)/,
392
+ excludeBegin:!0,excludeEnd:!0,keywords:i,contains:h}]}]},{begin:/,/,relevance:0
393
+ },{match:/\s+/,relevance:0},{variants:[{begin:"<>",end:"</>"},{
394
+ match:/<[A-Za-z0-9\\._:-]+\s*\/>/},{begin:a.begin,
395
+ "on:begin":a.isTrulyOpeningTag,end:a.end}],subLanguage:"xml",contains:[{
396
+ begin:a.begin,end:a.end,skip:!0,contains:["self"]}]}]},w,{
397
+ beginKeywords:"while if switch catch for"},{
398
+ begin:"\\b(?!function)"+e.UNDERSCORE_IDENT_RE+"\\([^()]*(\\([^()]*(\\([^()]*\\)[^()]*)*\\)[^()]*)*\\)\\s*\\{",
399
+ returnBegin:!0,label:"func.def",contains:[f,e.inherit(e.TITLE_MODE,{begin:t,
400
+ className:"title.function"})]},{match:/\.\.\./,relevance:0},k,{match:"\\$"+t,
401
+ relevance:0},{match:[/\bconstructor(?=\s*\()/],className:{1:"title.function"},
402
+ contains:[f]},v,{relevance:0,match:/\b[A-Z][A-Z_0-9]+\b/,
403
+ className:"variable.constant"},E,x,{match:/\$[(.]/}]}}
404
+ const Ne=e=>b(/\b/,e,/\w$/.test(e)?/\b/:/\B/),ke=["Protocol","Type"].map(Ne),xe=["init","self"].map(Ne),Oe=["Any","Self"],Me=["actor","any","associatedtype","async","await",/as\?/,/as!/,"as","borrowing","break","case","catch","class","consume","consuming","continue","convenience","copy","default","defer","deinit","didSet","distributed","do","dynamic","each","else","enum","extension","fallthrough",/fileprivate\(set\)/,"fileprivate","final","for","func","get","guard","if","import","indirect","infix",/init\?/,/init!/,"inout",/internal\(set\)/,"internal","in","is","isolated","nonisolated","lazy","let","macro","mutating","nonmutating",/open\(set\)/,"open","operator","optional","override","package","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"],Ae=["false","nil","true"],Se=["assignment","associativity","higherThan","left","lowerThan","none","right"],Ce=["#colorLiteral","#column","#dsohandle","#else","#elseif","#endif","#error","#file","#fileID","#fileLiteral","#filePath","#function","#if","#imageLiteral","#keyPath","#line","#selector","#sourceLocation","#warning"],Te=["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"],Re=m(/[/=\-+!*%<>&|^~?]/,/[\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]/),De=m(Re,/[\u0300-\u036F]/,/[\u1DC0-\u1DFF]/,/[\u20D0-\u20FF]/,/[\uFE00-\uFE0F]/,/[\uFE20-\uFE2F]/),Ie=b(Re,De,"*"),Le=m(/[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]/),Be=m(Le,/\d/,/[\u0300-\u036F\u1DC0-\u1DFF\u20D0-\u20FF\uFE20-\uFE2F]/),$e=b(Le,Be,"*"),Fe=b(/[A-Z]/,Be,"*"),ze=["attached","autoclosure",b(/convention\(/,m("swift","block","c"),/\)/),"discardableResult","dynamicCallable","dynamicMemberLookup","escaping","freestanding","frozen","GKInspectable","IBAction","IBDesignable","IBInspectable","IBOutlet","IBSegueAction","inlinable","main","nonobjc","NSApplicationMain","NSCopying","NSManaged",b(/objc\(/,$e,/\)/),"objc","objcMembers","propertyWrapper","requires_stored_property_inits","resultBuilder","Sendable","testable","UIApplicationMain","unchecked","unknown","usableFromInline","warn_unqualified_access"],je=["iOS","iOSApplicationExtension","macOS","macOSApplicationExtension","macCatalyst","macCatalystApplicationExtension","watchOS","watchOSApplicationExtension","tvOS","tvOSApplicationExtension","swift"]
405
+ ;var Ue=Object.freeze({__proto__:null,grmr_bash:e=>{const n=e.regex,t={},a={
406
+ begin:/\$\{/,end:/\}/,contains:["self",{begin:/:-/,contains:[t]}]}
407
+ ;Object.assign(t,{className:"variable",variants:[{
408
+ begin:n.concat(/\$[\w\d#@][\w\d_]*/,"(?![\\w\\d])(?![$])")},a]});const i={
409
+ className:"subst",begin:/\$\(/,end:/\)/,contains:[e.BACKSLASH_ESCAPE]
410
+ },r=e.inherit(e.COMMENT(),{match:[/(^|\s)/,/#.*$/],scope:{2:"comment"}}),s={
411
+ begin:/<<-?\s*(?=\w+)/,starts:{contains:[e.END_SAME_AS_BEGIN({begin:/(\w+)/,
412
+ end:/(\w+)/,className:"string"})]}},o={className:"string",begin:/"/,end:/"/,
413
+ contains:[e.BACKSLASH_ESCAPE,t,i]};i.contains.push(o);const l={begin:/\$?\(\(/,
414
+ end:/\)\)/,contains:[{begin:/\d+#[0-9a-f]+/,className:"number"},e.NUMBER_MODE,t]
415
+ },c=e.SHEBANG({binary:"(fish|bash|zsh|sh|csh|ksh|tcsh|dash|scsh)",relevance:10
416
+ }),d={className:"function",begin:/\w[\w\d_]*\s*\(\s*\)\s*\{/,returnBegin:!0,
417
+ contains:[e.inherit(e.TITLE_MODE,{begin:/\w[\w\d_]*/})],relevance:0};return{
418
+ name:"Bash",aliases:["sh","zsh"],keywords:{$pattern:/\b[a-z][a-z0-9._-]+\b/,
419
+ keyword:["if","then","else","elif","fi","time","for","while","until","in","do","done","case","esac","coproc","function","select"],
420
+ literal:["true","false"],
421
+ 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","sudo","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","chcon","chgrp","chown","chmod","cp","dd","df","dir","dircolors","ln","ls","mkdir","mkfifo","mknod","mktemp","mv","realpath","rm","rmdir","shred","sync","touch","truncate","vdir","b2sum","base32","base64","cat","cksum","comm","csplit","cut","expand","fmt","fold","head","join","md5sum","nl","numfmt","od","paste","ptx","pr","sha1sum","sha224sum","sha256sum","sha384sum","sha512sum","shuf","sort","split","sum","tac","tail","tr","tsort","unexpand","uniq","wc","arch","basename","chroot","date","dirname","du","echo","env","expr","factor","groups","hostid","id","link","logname","nice","nohup","nproc","pathchk","pinky","printenv","printf","pwd","readlink","runcon","seq","sleep","stat","stdbuf","stty","tee","test","timeout","tty","uname","unlink","uptime","users","who","whoami","yes"]
422
+ },contains:[c,e.SHEBANG(),d,l,r,s,{match:/(\/[a-z._-]+)+/},o,{match:/\\"/},{
423
+ className:"string",begin:/'/,end:/'/},{match:/\\'/},t]}},grmr_c:e=>{
424
+ const n=e.regex,t=e.COMMENT("//","$",{contains:[{begin:/\\\n/}]
425
+ }),a="decltype\\(auto\\)",i="[a-zA-Z_]\\w*::",r="("+a+"|"+n.optional(i)+"[a-zA-Z_]\\w*"+n.optional("<[^<>]+>")+")",s={
307
426
  className:"type",variants:[{begin:"\\b[a-z\\d_]*_t\\b"},{
308
- match:/\batomic_[a-z]{3,6}\b/}]},i={className:"string",variants:[{
427
+ match:/\batomic_[a-z]{3,6}\b/}]},o={className:"string",variants:[{
309
428
  begin:'(u8?|U|L)?"',end:'"',illegal:"\\n",contains:[e.BACKSLASH_ESCAPE]},{
310
429
  begin:"(u8?|U|L)?'(\\\\(x[0-9A-Fa-f]{2}|u[0-9A-Fa-f]{4,8}|[0-7]{3}|\\S)|.)",
311
430
  end:"'",illegal:"."},e.END_SAME_AS_BEGIN({
312
431
  begin:/(?:u8?|U|L)?R"([^()\\ ]{0,16})\(/,end:/\)([^()\\ ]{0,16})"/})]},l={
313
- className:"number",variants:[{begin:"\\b(0b[01']+)"},{
314
- begin:"(-?)\\b([\\d']+(\\.[\\d']*)?|\\.[\\d']+)((ll|LL|l|L)(u|U)?|(u|U)(ll|LL|l|L)?|f|F|b|B)"
432
+ className:"number",variants:[{match:/\b(0b[01']+)/},{
433
+ match:/(-?)\b([\d']+(\.[\d']*)?|\.[\d']+)((ll|LL|l|L)(u|U)?|(u|U)(ll|LL|l|L)?|f|F|b|B)/
315
434
  },{
316
- begin:"(-?)(\\b0[xX][a-fA-F0-9']+|(\\b[\\d']+(\\.[\\d']*)?|\\.[\\d']+)([eE][-+]?[\\d']+)?)"
317
- }],relevance:0},o={className:"meta",begin:/#\s*[a-z]+\b/,end:/$/,keywords:{
318
- keyword:"if else elif endif define undef warning error line pragma _Pragma ifdef ifndef include"
319
- },contains:[{begin:/\\\n/,relevance:0},e.inherit(i,{className:"string"}),{
320
- className:"string",begin:/<.*?>/},t,e.C_BLOCK_COMMENT_MODE]},c={
321
- className:"title",begin:n.optional(s)+e.IDENT_RE,relevance:0
322
- },d=n.optional(s)+e.IDENT_RE+"\\s*\\(",u={
323
- keyword:["asm","auto","break","case","continue","default","do","else","enum","extern","for","fortran","goto","if","inline","register","restrict","return","sizeof","struct","switch","typedef","union","volatile","while","_Alignas","_Alignof","_Atomic","_Generic","_Noreturn","_Static_assert","_Thread_local","alignas","alignof","noreturn","static_assert","thread_local","_Pragma"],
324
- type:["float","double","signed","unsigned","int","short","long","char","void","_Bool","_Complex","_Imaginary","_Decimal32","_Decimal64","_Decimal128","const","static","complex","bool","imaginary"],
435
+ match:/(-?)\b(0[xX][a-fA-F0-9]+(?:'[a-fA-F0-9]+)*(?:\.[a-fA-F0-9]*(?:'[a-fA-F0-9]*)*)?(?:[pP][-+]?[0-9]+)?(l|L)?(u|U)?)/
436
+ },{match:/(-?)\b\d+(?:'\d+)*(?:\.\d*(?:'\d*)*)?(?:[eE][-+]?\d+)?/}],relevance:0
437
+ },c={className:"meta",begin:/#\s*[a-z]+\b/,end:/$/,keywords:{
438
+ keyword:"if else elif endif define undef warning error line pragma _Pragma ifdef ifndef elifdef elifndef include"
439
+ },contains:[{begin:/\\\n/,relevance:0},e.inherit(o,{className:"string"}),{
440
+ className:"string",begin:/<.*?>/},t,e.C_BLOCK_COMMENT_MODE]},d={
441
+ className:"title",begin:n.optional(i)+e.IDENT_RE,relevance:0
442
+ },g=n.optional(i)+e.IDENT_RE+"\\s*\\(",u={
443
+ keyword:["asm","auto","break","case","continue","default","do","else","enum","extern","for","fortran","goto","if","inline","register","restrict","return","sizeof","typeof","typeof_unqual","struct","switch","typedef","union","volatile","while","_Alignas","_Alignof","_Atomic","_Generic","_Noreturn","_Static_assert","_Thread_local","alignas","alignof","noreturn","static_assert","thread_local","_Pragma"],
444
+ type:["float","double","signed","unsigned","int","short","long","char","void","_Bool","_BitInt","_Complex","_Imaginary","_Decimal32","_Decimal64","_Decimal96","_Decimal128","_Decimal64x","_Decimal128x","_Float16","_Float32","_Float64","_Float128","_Float32x","_Float64x","_Float128x","const","static","constexpr","complex","bool","imaginary"],
325
445
  literal:"true false NULL",
326
446
  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"
327
- },g=[o,r,t,e.C_BLOCK_COMMENT_MODE,l,i],m={variants:[{begin:/=/,end:/;/},{
447
+ },b=[c,s,t,e.C_BLOCK_COMMENT_MODE,l,o],m={variants:[{begin:/=/,end:/;/},{
328
448
  begin:/\(/,end:/\)/},{beginKeywords:"new throw return else",end:/;/}],
329
- keywords:u,contains:g.concat([{begin:/\(/,end:/\)/,keywords:u,
330
- contains:g.concat(["self"]),relevance:0}]),relevance:0},p={
331
- begin:"("+a+"[\\*&\\s]+)+"+d,returnBegin:!0,end:/[{;=]/,excludeEnd:!0,
332
- keywords:u,illegal:/[^\w\s\*&:<>.]/,contains:[{begin:"decltype\\(auto\\)",
333
- keywords:u,relevance:0},{begin:d,returnBegin:!0,contains:[e.inherit(c,{
334
- className:"title.function"})],relevance:0},{relevance:0,match:/,/},{
335
- className:"params",begin:/\(/,end:/\)/,keywords:u,relevance:0,
336
- contains:[t,e.C_BLOCK_COMMENT_MODE,i,l,r,{begin:/\(/,end:/\)/,keywords:u,
337
- relevance:0,contains:["self",t,e.C_BLOCK_COMMENT_MODE,i,l,r]}]
338
- },r,t,e.C_BLOCK_COMMENT_MODE,o]};return{name:"C",aliases:["h"],keywords:u,
339
- disableAutodetect:!0,illegal:"</",contains:[].concat(m,p,g,[o,{
449
+ keywords:u,contains:b.concat([{begin:/\(/,end:/\)/,keywords:u,
450
+ contains:b.concat(["self"]),relevance:0}]),relevance:0},p={
451
+ begin:"("+r+"[\\*&\\s]+)+"+g,returnBegin:!0,end:/[{;=]/,excludeEnd:!0,
452
+ keywords:u,illegal:/[^\w\s\*&:<>.]/,contains:[{begin:a,keywords:u,relevance:0},{
453
+ begin:g,returnBegin:!0,contains:[e.inherit(d,{className:"title.function"})],
454
+ relevance:0},{relevance:0,match:/,/},{className:"params",begin:/\(/,end:/\)/,
455
+ keywords:u,relevance:0,contains:[t,e.C_BLOCK_COMMENT_MODE,o,l,s,{begin:/\(/,
456
+ end:/\)/,keywords:u,relevance:0,contains:["self",t,e.C_BLOCK_COMMENT_MODE,o,l,s]
457
+ }]},s,t,e.C_BLOCK_COMMENT_MODE,c]};return{name:"C",aliases:["h"],keywords:u,
458
+ disableAutodetect:!0,illegal:"</",contains:[].concat(m,p,b,[c,{
340
459
  begin:e.IDENT_RE+"::",keywords:u},{className:"class",
341
460
  beginKeywords:"enum class struct union",end:/[{;:<>=]/,contains:[{
342
- beginKeywords:"final class struct"},e.TITLE_MODE]}]),exports:{preprocessor:o,
343
- strings:i,keywords:u}}}})();hljs.registerLanguage("c",e)})();/*! `xml` grammar compiled for Highlight.js 11.4.0 */
344
- (()=>{var e=(()=>{"use strict";return e=>{
345
- const a=e.regex,n=a.concat(/[A-Z_]/,a.optional(/[A-Z0-9_.-]*:/),/[A-Z0-9_.-]*/),s={
346
- className:"symbol",begin:/&[a-z]+;|&#[0-9]+;|&#x[a-f0-9]+;/},t={begin:/\s/,
347
- contains:[{className:"keyword",begin:/#?[a-z_][a-z1-9_-]+/,illegal:/\n/}]
348
- },i=e.inherit(t,{begin:/\(/,end:/\)/}),c=e.inherit(e.APOS_STRING_MODE,{
349
- className:"string"}),l=e.inherit(e.QUOTE_STRING_MODE,{className:"string"}),r={
350
- endsWithParent:!0,illegal:/</,relevance:0,contains:[{className:"attr",
351
- begin:/[A-Za-z0-9._:-]+/,relevance:0},{begin:/=\s*/,relevance:0,contains:[{
352
- className:"string",endsParent:!0,variants:[{begin:/"/,end:/"/,contains:[s]},{
353
- begin:/'/,end:/'/,contains:[s]},{begin:/[^\s"'=<>`]+/}]}]}]};return{
354
- name:"HTML, XML",
355
- aliases:["html","xhtml","rss","atom","xjb","xsd","xsl","plist","wsf","svg"],
356
- case_insensitive:!0,contains:[{className:"meta",begin:/<![a-z]/,end:/>/,
357
- relevance:10,contains:[t,l,c,i,{begin:/\[/,end:/\]/,contains:[{className:"meta",
358
- begin:/<![a-z]/,end:/>/,contains:[t,i,l,c]}]}]},e.COMMENT(/<!--/,/-->/,{
359
- relevance:10}),{begin:/<!\[CDATA\[/,end:/\]\]>/,relevance:10},s,{
360
- className:"meta",begin:/<\?xml/,end:/\?>/,relevance:10},{className:"tag",
361
- begin:/<style(?=\s|>)/,end:/>/,keywords:{name:"style"},contains:[r],starts:{
362
- end:/<\/style>/,returnEnd:!0,subLanguage:["css","xml"]}},{className:"tag",
363
- begin:/<script(?=\s|>)/,end:/>/,keywords:{name:"script"},contains:[r],starts:{
364
- end:/<\/script>/,returnEnd:!0,subLanguage:["javascript","handlebars","xml"]}},{
365
- className:"tag",begin:/<>|<\/>/},{className:"tag",
366
- begin:a.concat(/</,a.lookahead(a.concat(n,a.either(/\/>/,/>/,/\s/)))),
367
- end:/\/?>/,contains:[{className:"name",begin:n,relevance:0,starts:r}]},{
368
- className:"tag",begin:a.concat(/<\//,a.lookahead(a.concat(n,/>/))),contains:[{
369
- className:"name",begin:n,relevance:0},{begin:/>/,relevance:0,endsParent:!0}]}]}}
370
- })();hljs.registerLanguage("xml",e)})();/*! `markdown` grammar compiled for Highlight.js 11.4.0 */
371
- (()=>{var e=(()=>{"use strict";return e=>{const n={begin:/<\/?[A-Za-z_]/,
372
- end:">",subLanguage:"xml",relevance:0},a={variants:[{begin:/\[.+?\]\[.*?\]/,
373
- relevance:0},{
374
- begin:/\[.+?\]\(((data|javascript|mailto):|(?:http|ftp)s?:\/\/).*?\)/,
375
- relevance:2},{
376
- begin:e.regex.concat(/\[.+?\]\(/,/[A-Za-z][A-Za-z0-9+.-]*/,/:\/\/.*?\)/),
377
- relevance:2},{begin:/\[.+?\]\([./?&#].*?\)/,relevance:1},{
378
- begin:/\[.*?\]\(.*?\)/,relevance:0}],returnBegin:!0,contains:[{match:/\[(?=\])/
379
- },{className:"string",relevance:0,begin:"\\[",end:"\\]",excludeBegin:!0,
380
- returnEnd:!0},{className:"link",relevance:0,begin:"\\]\\(",end:"\\)",
381
- excludeBegin:!0,excludeEnd:!0},{className:"symbol",relevance:0,begin:"\\]\\[",
382
- end:"\\]",excludeBegin:!0,excludeEnd:!0}]},i={className:"strong",contains:[],
383
- variants:[{begin:/_{2}/,end:/_{2}/},{begin:/\*{2}/,end:/\*{2}/}]},s={
384
- className:"emphasis",contains:[],variants:[{begin:/\*(?!\*)/,end:/\*/},{
385
- begin:/_(?!_)/,end:/_/,relevance:0}]};i.contains.push(s),s.contains.push(i)
386
- ;let c=[n,a]
387
- ;return i.contains=i.contains.concat(c),s.contains=s.contains.concat(c),
388
- c=c.concat(i,s),{name:"Markdown",aliases:["md","mkdown","mkd"],contains:[{
389
- className:"section",variants:[{begin:"^#{1,6}",end:"$",contains:c},{
390
- begin:"(?=^.+?\\n[=-]{2,}$)",contains:[{begin:"^[=-]*$"},{begin:"^",end:"\\n",
391
- contains:c}]}]},n,{className:"bullet",begin:"^[ \t]*([*+-]|(\\d+\\.))(?=\\s+)",
392
- end:"\\s+",excludeEnd:!0},i,s,{className:"quote",begin:"^>\\s+",contains:c,
393
- end:"$"},{className:"code",variants:[{begin:"(`{3,})[^`](.|\\n)*?\\1`*[ ]*"},{
394
- begin:"(~{3,})[^~](.|\\n)*?\\1~*[ ]*"},{begin:"```",end:"```+[ ]*$"},{
395
- begin:"~~~",end:"~~~+[ ]*$"},{begin:"`.+?`"},{begin:"(?=^( {4}|\\t))",
396
- contains:[{begin:"^( {4}|\\t)",end:"(\\n)$"}],relevance:0}]},{
397
- begin:"^[-\\*]{3,}",end:"$"},a,{begin:/^\[[^\n]+\]:/,returnBegin:!0,contains:[{
398
- className:"symbol",begin:/\[/,end:/\]/,excludeBegin:!0,excludeEnd:!0},{
399
- className:"link",begin:/:\s*/,end:/$/,excludeBegin:!0}]}]}}})()
400
- ;hljs.registerLanguage("markdown",e)})();/*! `bash` grammar compiled for Highlight.js 11.4.0 */
401
- (()=>{var e=(()=>{"use strict";return e=>{const s=e.regex,t={},n={begin:/\$\{/,
402
- end:/\}/,contains:["self",{begin:/:-/,contains:[t]}]};Object.assign(t,{
403
- className:"variable",variants:[{
404
- begin:s.concat(/\$[\w\d#@][\w\d_]*/,"(?![\\w\\d])(?![$])")},n]});const a={
405
- className:"subst",begin:/\$\(/,end:/\)/,contains:[e.BACKSLASH_ESCAPE]},i={
406
- begin:/<<-?\s*(?=\w+)/,starts:{contains:[e.END_SAME_AS_BEGIN({begin:/(\w+)/,
407
- end:/(\w+)/,className:"string"})]}},c={className:"string",begin:/"/,end:/"/,
408
- contains:[e.BACKSLASH_ESCAPE,t,a]};a.contains.push(c);const o={begin:/\$\(\(/,
409
- end:/\)\)/,contains:[{begin:/\d+#[0-9a-f]+/,className:"number"},e.NUMBER_MODE,t]
410
- },r=e.SHEBANG({binary:"(fish|bash|zsh|sh|csh|ksh|tcsh|dash|scsh)",relevance:10
411
- }),l={className:"function",begin:/\w[\w\d_]*\s*\(\s*\)\s*\{/,returnBegin:!0,
412
- contains:[e.inherit(e.TITLE_MODE,{begin:/\w[\w\d_]*/})],relevance:0};return{
413
- name:"Bash",aliases:["sh"],keywords:{$pattern:/\b[a-z._-]+\b/,
414
- keyword:["if","then","else","elif","fi","for","while","in","do","done","case","esac","function"],
415
- literal:["true","false"],
416
- 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","chcon","chgrp","chown","chmod","cp","dd","df","dir","dircolors","ln","ls","mkdir","mkfifo","mknod","mktemp","mv","realpath","rm","rmdir","shred","sync","touch","truncate","vdir","b2sum","base32","base64","cat","cksum","comm","csplit","cut","expand","fmt","fold","head","join","md5sum","nl","numfmt","od","paste","ptx","pr","sha1sum","sha224sum","sha256sum","sha384sum","sha512sum","shuf","sort","split","sum","tac","tail","tr","tsort","unexpand","uniq","wc","arch","basename","chroot","date","dirname","du","echo","env","expr","factor","groups","hostid","id","link","logname","nice","nohup","nproc","pathchk","pinky","printenv","printf","pwd","readlink","runcon","seq","sleep","stat","stdbuf","stty","tee","test","timeout","tty","uname","unlink","uptime","users","who","whoami","yes"]
417
- },contains:[r,e.SHEBANG(),l,o,e.HASH_COMMENT_MODE,i,{match:/(\/[a-z._-]+)+/},c,{
418
- className:"",begin:/\\"/},{className:"string",begin:/'/,end:/'/},t]}}})()
419
- ;hljs.registerLanguage("bash",e)})();/*! `dockerfile` grammar compiled for Highlight.js 11.4.0 */
420
- (()=>{var e=(()=>{"use strict";return e=>({name:"Dockerfile",aliases:["docker"],
421
- case_insensitive:!0,
422
- keywords:["from","maintainer","expose","env","arg","user","onbuild","stopsignal"],
423
- contains:[e.HASH_COMMENT_MODE,e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,e.NUMBER_MODE,{
424
- beginKeywords:"run cmd entrypoint volume add copy workdir label healthcheck shell",
425
- starts:{end:/[^\\]$/,subLanguage:"bash"}}],illegal:"</"})})()
426
- ;hljs.registerLanguage("dockerfile",e)})();/*! `kotlin` grammar compiled for Highlight.js 11.4.0 */
427
- (()=>{var e=(()=>{"use strict"
428
- ;var e="\\.([0-9](_*[0-9])*)",n="[0-9a-fA-F](_*[0-9a-fA-F])*",a={
461
+ beginKeywords:"final class struct"},e.TITLE_MODE]}]),exports:{preprocessor:c,
462
+ strings:o,keywords:u}}},grmr_cpp:e=>{const n=e.regex,t=e.COMMENT("//","$",{
463
+ contains:[{begin:/\\\n/}]
464
+ }),a="decltype\\(auto\\)",i="[a-zA-Z_]\\w*::",r="(?!struct)("+a+"|"+n.optional(i)+"[a-zA-Z_]\\w*"+n.optional("<[^<>]+>")+")",s={
465
+ className:"type",begin:"\\b[a-z\\d_]*_t\\b"},o={className:"string",variants:[{
466
+ begin:'(u8?|U|L)?"',end:'"',illegal:"\\n",contains:[e.BACKSLASH_ESCAPE]},{
467
+ begin:"(u8?|U|L)?'(\\\\(x[0-9A-Fa-f]{2}|u[0-9A-Fa-f]{4,8}|[0-7]{3}|\\S)|.)",
468
+ end:"'",illegal:"."},e.END_SAME_AS_BEGIN({
469
+ begin:/(?:u8?|U|L)?R"([^()\\ ]{0,16})\(/,end:/\)([^()\\ ]{0,16})"/})]},l={
429
470
  className:"number",variants:[{
430
- begin:`(\\b([0-9](_*[0-9])*)((${e})|\\.)?|(${e}))[eE][+-]?([0-9](_*[0-9])*)[fFdD]?\\b`
431
- },{begin:`\\b([0-9](_*[0-9])*)((${e})[fFdD]?\\b|\\.([fFdD]\\b)?)`},{
432
- begin:`(${e})[fFdD]?\\b`},{begin:"\\b([0-9](_*[0-9])*)[fFdD]\\b"},{
433
- begin:`\\b0[xX]((${n})\\.?|(${n})?\\.(${n}))[pP][+-]?([0-9](_*[0-9])*)[fFdD]?\\b`
434
- },{begin:"\\b(0|[1-9](_*[0-9])*)[lL]?\\b"},{begin:`\\b0[xX](${n})[lL]?\\b`},{
435
- begin:"\\b0(_*[0-7])*[lL]?\\b"},{begin:"\\b0[bB][01](_*[01])*[lL]?\\b"}],
436
- relevance:0};return e=>{const n={
471
+ begin:"[+-]?(?:(?:[0-9](?:'?[0-9])*\\.(?:[0-9](?:'?[0-9])*)?|\\.[0-9](?:'?[0-9])*)(?:[Ee][+-]?[0-9](?:'?[0-9])*)?|[0-9](?:'?[0-9])*[Ee][+-]?[0-9](?:'?[0-9])*|0[Xx](?:[0-9A-Fa-f](?:'?[0-9A-Fa-f])*(?:\\.(?:[0-9A-Fa-f](?:'?[0-9A-Fa-f])*)?)?|\\.[0-9A-Fa-f](?:'?[0-9A-Fa-f])*)[Pp][+-]?[0-9](?:'?[0-9])*)(?:[Ff](?:16|32|64|128)?|(BF|bf)16|[Ll]|)"
472
+ },{
473
+ begin:"[+-]?\\b(?:0[Bb][01](?:'?[01])*|0[Xx][0-9A-Fa-f](?:'?[0-9A-Fa-f])*|0(?:'?[0-7])*|[1-9](?:'?[0-9])*)(?:[Uu](?:LL?|ll?)|[Uu][Zz]?|(?:LL?|ll?)[Uu]?|[Zz][Uu]|)"
474
+ }],relevance:0},c={className:"meta",begin:/#\s*[a-z]+\b/,end:/$/,keywords:{
475
+ keyword:"if else elif endif define undef warning error line pragma _Pragma ifdef ifndef include"
476
+ },contains:[{begin:/\\\n/,relevance:0},e.inherit(o,{className:"string"}),{
477
+ className:"string",begin:/<.*?>/},t,e.C_BLOCK_COMMENT_MODE]},d={
478
+ className:"title",begin:n.optional(i)+e.IDENT_RE,relevance:0
479
+ },g=n.optional(i)+e.IDENT_RE+"\\s*\\(",u={
480
+ type:["bool","char","char16_t","char32_t","char8_t","double","float","int","long","short","void","wchar_t","unsigned","signed","const","static"],
481
+ keyword:["alignas","alignof","and","and_eq","asm","atomic_cancel","atomic_commit","atomic_noexcept","auto","bitand","bitor","break","case","catch","class","co_await","co_return","co_yield","compl","concept","const_cast|10","consteval","constexpr","constinit","continue","decltype","default","delete","do","dynamic_cast|10","else","enum","explicit","export","extern","false","final","for","friend","goto","if","import","inline","module","mutable","namespace","new","noexcept","not","not_eq","nullptr","operator","or","or_eq","override","private","protected","public","reflexpr","register","reinterpret_cast|10","requires","return","sizeof","static_assert","static_cast|10","struct","switch","synchronized","template","this","thread_local","throw","transaction_safe","transaction_safe_dynamic","true","try","typedef","typeid","typename","union","using","virtual","volatile","while","xor","xor_eq"],
482
+ literal:["NULL","false","nullopt","nullptr","true"],built_in:["_Pragma"],
483
+ _type_hints:["any","auto_ptr","barrier","binary_semaphore","bitset","complex","condition_variable","condition_variable_any","counting_semaphore","deque","false_type","flat_map","flat_set","future","imaginary","initializer_list","istringstream","jthread","latch","lock_guard","multimap","multiset","mutex","optional","ostringstream","packaged_task","pair","promise","priority_queue","queue","recursive_mutex","recursive_timed_mutex","scoped_lock","set","shared_future","shared_lock","shared_mutex","shared_timed_mutex","shared_ptr","stack","string_view","stringstream","timed_mutex","thread","true_type","tuple","unique_lock","unique_ptr","unordered_map","unordered_multimap","unordered_multiset","unordered_set","variant","vector","weak_ptr","wstring","wstring_view"]
484
+ },b={className:"function.dispatch",relevance:0,keywords:{
485
+ _hint:["abort","abs","acos","apply","as_const","asin","atan","atan2","calloc","ceil","cerr","cin","clog","cos","cosh","cout","declval","endl","exchange","exit","exp","fabs","floor","fmod","forward","fprintf","fputs","free","frexp","fscanf","future","invoke","isalnum","isalpha","iscntrl","isdigit","isgraph","islower","isprint","ispunct","isspace","isupper","isxdigit","labs","launder","ldexp","log","log10","make_pair","make_shared","make_shared_for_overwrite","make_tuple","make_unique","malloc","memchr","memcmp","memcpy","memset","modf","move","pow","printf","putchar","puts","realloc","scanf","sin","sinh","snprintf","sprintf","sqrt","sscanf","std","stderr","stdin","stdout","strcat","strchr","strcmp","strcpy","strcspn","strlen","strncat","strncmp","strncpy","strpbrk","strrchr","strspn","strstr","swap","tan","tanh","terminate","to_underlying","tolower","toupper","vfprintf","visit","vprintf","vsprintf"]
486
+ },
487
+ begin:n.concat(/\b/,/(?!decltype)/,/(?!if)/,/(?!for)/,/(?!switch)/,/(?!while)/,e.IDENT_RE,n.lookahead(/(<[^<>]+>|)\s*\(/))
488
+ },m=[b,c,s,t,e.C_BLOCK_COMMENT_MODE,l,o],p={variants:[{begin:/=/,end:/;/},{
489
+ begin:/\(/,end:/\)/},{beginKeywords:"new throw return else",end:/;/}],
490
+ keywords:u,contains:m.concat([{begin:/\(/,end:/\)/,keywords:u,
491
+ contains:m.concat(["self"]),relevance:0}]),relevance:0},_={className:"function",
492
+ begin:"("+r+"[\\*&\\s]+)+"+g,returnBegin:!0,end:/[{;=]/,excludeEnd:!0,
493
+ keywords:u,illegal:/[^\w\s\*&:<>.]/,contains:[{begin:a,keywords:u,relevance:0},{
494
+ begin:g,returnBegin:!0,contains:[d],relevance:0},{begin:/::/,relevance:0},{
495
+ begin:/:/,endsWithParent:!0,contains:[o,l]},{relevance:0,match:/,/},{
496
+ className:"params",begin:/\(/,end:/\)/,keywords:u,relevance:0,
497
+ contains:[t,e.C_BLOCK_COMMENT_MODE,o,l,s,{begin:/\(/,end:/\)/,keywords:u,
498
+ relevance:0,contains:["self",t,e.C_BLOCK_COMMENT_MODE,o,l,s]}]
499
+ },s,t,e.C_BLOCK_COMMENT_MODE,c]};return{name:"C++",
500
+ aliases:["cc","c++","h++","hpp","hh","hxx","cxx"],keywords:u,illegal:"</",
501
+ classNameAliases:{"function.dispatch":"built_in"},
502
+ contains:[].concat(p,_,b,m,[c,{
503
+ begin:"\\b(deque|list|queue|priority_queue|pair|stack|vector|map|set|bitset|multiset|multimap|unordered_map|unordered_set|unordered_multiset|unordered_multimap|array|tuple|optional|variant|function|flat_map|flat_set)\\s*<(?!<)",
504
+ end:">",keywords:u,contains:["self",s]},{begin:e.IDENT_RE+"::",keywords:u},{
505
+ match:[/\b(?:enum(?:\s+(?:class|struct))?|class|struct|union)/,/\s+/,/\w+/],
506
+ className:{1:"keyword",3:"title.class"}}])}},grmr_csharp:e=>{const n={
507
+ keyword:["abstract","as","base","break","case","catch","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","scoped","sealed","sizeof","stackalloc","static","struct","switch","this","throw","try","typeof","unchecked","unsafe","using","virtual","void","volatile","while"].concat(["add","alias","and","ascending","args","async","await","by","descending","dynamic","equals","file","from","get","global","group","init","into","join","let","nameof","not","notnull","on","or","orderby","partial","record","remove","required","scoped","select","set","unmanaged","value|0","var","when","where","with","yield"]),
508
+ built_in:["bool","byte","char","decimal","delegate","double","dynamic","enum","float","int","long","nint","nuint","object","sbyte","short","string","ulong","uint","ushort"],
509
+ literal:["default","false","null","true"]},t=e.inherit(e.TITLE_MODE,{
510
+ begin:"[a-zA-Z](\\.?\\w)*"}),a={className:"number",variants:[{
511
+ begin:"\\b(0b[01']+)"},{
512
+ begin:"(-?)\\b([\\d']+(\\.[\\d']*)?|\\.[\\d']+)(u|U|l|L|ul|UL|f|F|b|B)"},{
513
+ begin:"(-?)(\\b0[xX][a-fA-F0-9']+|(\\b[\\d']+(\\.[\\d']*)?|\\.[\\d']+)([eE][-+]?[\\d']+)?)"
514
+ }],relevance:0},i={className:"string",begin:'@"',end:'"',contains:[{begin:'""'}]
515
+ },r=e.inherit(i,{illegal:/\n/}),s={className:"subst",begin:/\{/,end:/\}/,
516
+ keywords:n},o=e.inherit(s,{illegal:/\n/}),l={className:"string",begin:/\$"/,
517
+ end:'"',illegal:/\n/,contains:[{begin:/\{\{/},{begin:/\}\}/
518
+ },e.BACKSLASH_ESCAPE,o]},c={className:"string",begin:/\$@"/,end:'"',contains:[{
519
+ begin:/\{\{/},{begin:/\}\}/},{begin:'""'},s]},d=e.inherit(c,{illegal:/\n/,
520
+ contains:[{begin:/\{\{/},{begin:/\}\}/},{begin:'""'},o]})
521
+ ;s.contains=[c,l,i,e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,a,e.C_BLOCK_COMMENT_MODE],
522
+ o.contains=[d,l,r,e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,a,e.inherit(e.C_BLOCK_COMMENT_MODE,{
523
+ illegal:/\n/})];const g={variants:[{className:"string",
524
+ begin:/"""("*)(?!")(.|\n)*?"""\1/,relevance:1
525
+ },c,l,i,e.APOS_STRING_MODE,e.QUOTE_STRING_MODE]},u={begin:"<",end:">",
526
+ contains:[{beginKeywords:"in out"},t]
527
+ },b=e.IDENT_RE+"(<"+e.IDENT_RE+"(\\s*,\\s*"+e.IDENT_RE+")*>)?(\\[\\])?",m={
528
+ begin:"@"+e.IDENT_RE,relevance:0};return{name:"C#",aliases:["cs","c#"],
529
+ keywords:n,illegal:/::/,contains:[e.COMMENT("///","$",{returnBegin:!0,
530
+ contains:[{className:"doctag",variants:[{begin:"///",relevance:0},{
531
+ begin:"\x3c!--|--\x3e"},{begin:"</?",end:">"}]}]
532
+ }),e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,{className:"meta",begin:"#",
533
+ end:"$",keywords:{
534
+ keyword:"if else elif endif define undef warning error line region endregion pragma checksum"
535
+ }},g,a,{beginKeywords:"class interface",relevance:0,end:/[{;=]/,
536
+ illegal:/[^\s:,]/,contains:[{beginKeywords:"where class"
537
+ },t,u,e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE]},{beginKeywords:"namespace",
538
+ relevance:0,end:/[{;=]/,illegal:/[^\s:]/,
539
+ contains:[t,e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE]},{
540
+ beginKeywords:"record",relevance:0,end:/[{;=]/,illegal:/[^\s:]/,
541
+ contains:[t,u,e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE]},{className:"meta",
542
+ begin:"^\\s*\\[(?=[\\w])",excludeBegin:!0,end:"\\]",excludeEnd:!0,contains:[{
543
+ className:"string",begin:/"/,end:/"/}]},{
544
+ beginKeywords:"new return throw await else",relevance:0},{className:"function",
545
+ begin:"("+b+"\\s+)+"+e.IDENT_RE+"\\s*(<[^=]+>\\s*)?\\(",returnBegin:!0,
546
+ end:/\s*[{;=]/,excludeEnd:!0,keywords:n,contains:[{
547
+ beginKeywords:"public private protected static internal protected abstract async extern override unsafe virtual new sealed partial",
548
+ relevance:0},{begin:e.IDENT_RE+"\\s*(<[^=]+>\\s*)?\\(",returnBegin:!0,
549
+ contains:[e.TITLE_MODE,u],relevance:0},{match:/\(\)/},{className:"params",
550
+ begin:/\(/,end:/\)/,excludeBegin:!0,excludeEnd:!0,keywords:n,relevance:0,
551
+ contains:[g,a,e.C_BLOCK_COMMENT_MODE]
552
+ },e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE]},m]}},grmr_css:e=>{
553
+ const n=e.regex,t=te(e),a=[e.APOS_STRING_MODE,e.QUOTE_STRING_MODE];return{
554
+ name:"CSS",case_insensitive:!0,illegal:/[=|'\$]/,keywords:{
555
+ keyframePosition:"from to"},classNameAliases:{keyframePosition:"selector-tag"},
556
+ contains:[t.BLOCK_COMMENT,{begin:/-(webkit|moz|ms|o)-(?=[a-z])/
557
+ },t.CSS_NUMBER_MODE,{className:"selector-id",begin:/#[A-Za-z0-9_-]+/,relevance:0
558
+ },{className:"selector-class",begin:"\\.[a-zA-Z-][a-zA-Z0-9_-]*",relevance:0
559
+ },t.ATTRIBUTE_SELECTOR_MODE,{className:"selector-pseudo",variants:[{
560
+ begin:":("+re.join("|")+")"},{begin:":(:)?("+se.join("|")+")"}]
561
+ },t.CSS_VARIABLE,{className:"attribute",begin:"\\b("+oe.join("|")+")\\b"},{
562
+ begin:/:/,end:/[;}{]/,
563
+ contains:[t.BLOCK_COMMENT,t.HEXCOLOR,t.IMPORTANT,t.CSS_NUMBER_MODE,...a,{
564
+ begin:/(url|data-uri)\(/,end:/\)/,relevance:0,keywords:{built_in:"url data-uri"
565
+ },contains:[...a,{className:"string",begin:/[^)]/,endsWithParent:!0,
566
+ excludeEnd:!0}]},t.FUNCTION_DISPATCH]},{begin:n.lookahead(/@/),end:"[{;]",
567
+ relevance:0,illegal:/:/,contains:[{className:"keyword",begin:/@-?\w[\w]*(-\w+)*/
568
+ },{begin:/\s/,endsWithParent:!0,excludeEnd:!0,relevance:0,keywords:{
569
+ $pattern:/[a-z-]+/,keyword:"and or not only",attribute:ie.join(" ")},contains:[{
570
+ begin:/[a-z-]+(?=:)/,className:"attribute"},...a,t.CSS_NUMBER_MODE]}]},{
571
+ className:"selector-tag",begin:"\\b("+ae.join("|")+")\\b"}]}},grmr_diff:e=>{
572
+ const n=e.regex;return{name:"Diff",aliases:["patch"],contains:[{
573
+ className:"meta",relevance:10,
574
+ match:n.either(/^@@ +-\d+,\d+ +\+\d+,\d+ +@@/,/^\*\*\* +\d+,\d+ +\*\*\*\*$/,/^--- +\d+,\d+ +----$/)
575
+ },{className:"comment",variants:[{
576
+ begin:n.either(/Index: /,/^index/,/={3,}/,/^-{3}/,/^\*{3} /,/^\+{3}/,/^diff --git/),
577
+ end:/$/},{match:/^\*{15}$/}]},{className:"addition",begin:/^\+/,end:/$/},{
578
+ className:"deletion",begin:/^-/,end:/$/},{className:"addition",begin:/^!/,
579
+ end:/$/}]}},grmr_go:e=>{const n={
580
+ keyword:["break","case","chan","const","continue","default","defer","else","fallthrough","for","func","go","goto","if","import","interface","map","package","range","return","select","struct","switch","type","var"],
581
+ type:["bool","byte","complex64","complex128","error","float32","float64","int8","int16","int32","int64","string","uint8","uint16","uint32","uint64","int","uint","uintptr","rune"],
582
+ literal:["true","false","iota","nil"],
583
+ built_in:["append","cap","close","complex","copy","imag","len","make","new","panic","print","println","real","recover","delete"]
584
+ };return{name:"Go",aliases:["golang"],keywords:n,illegal:"</",
585
+ contains:[e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,{className:"string",
586
+ variants:[e.QUOTE_STRING_MODE,e.APOS_STRING_MODE,{begin:"`",end:"`"}]},{
587
+ className:"number",variants:[{
588
+ match:/-?\b0[xX]\.[a-fA-F0-9](_?[a-fA-F0-9])*[pP][+-]?\d(_?\d)*i?/,relevance:0
589
+ },{
590
+ match:/-?\b0[xX](_?[a-fA-F0-9])+((\.([a-fA-F0-9](_?[a-fA-F0-9])*)?)?[pP][+-]?\d(_?\d)*)?i?/,
591
+ relevance:0},{match:/-?\b0[oO](_?[0-7])*i?/,relevance:0},{
592
+ match:/-?\.\d(_?\d)*([eE][+-]?\d(_?\d)*)?i?/,relevance:0},{
593
+ match:/-?\b\d(_?\d)*(\.(\d(_?\d)*)?)?([eE][+-]?\d(_?\d)*)?i?/,relevance:0}]},{
594
+ begin:/:=/},{className:"function",beginKeywords:"func",end:"\\s*(\\{|$)",
595
+ excludeEnd:!0,contains:[e.TITLE_MODE,{className:"params",begin:/\(/,end:/\)/,
596
+ endsParent:!0,keywords:n,illegal:/["']/}]}]}},grmr_graphql:e=>{const n=e.regex
597
+ ;return{name:"GraphQL",aliases:["gql"],case_insensitive:!0,disableAutodetect:!1,
598
+ keywords:{
599
+ keyword:["query","mutation","subscription","type","input","schema","directive","interface","union","scalar","fragment","enum","on"],
600
+ literal:["true","false","null"]},
601
+ contains:[e.HASH_COMMENT_MODE,e.QUOTE_STRING_MODE,e.NUMBER_MODE,{
602
+ scope:"punctuation",match:/[.]{3}/,relevance:0},{scope:"punctuation",
603
+ begin:/[\!\(\)\:\=\[\]\{\|\}]{1}/,relevance:0},{scope:"variable",begin:/\$/,
604
+ end:/\W/,excludeEnd:!0,relevance:0},{scope:"meta",match:/@\w+/,excludeEnd:!0},{
605
+ scope:"symbol",begin:n.concat(/[_A-Za-z][_0-9A-Za-z]*/,n.lookahead(/\s*:/)),
606
+ relevance:0}],illegal:[/[;<']/,/BEGIN/]}},grmr_ini:e=>{const n=e.regex,t={
607
+ className:"number",relevance:0,variants:[{begin:/([+-]+)?[\d]+_[\d_]+/},{
608
+ begin:e.NUMBER_RE}]},a=e.COMMENT();a.variants=[{begin:/;/,end:/$/},{begin:/#/,
609
+ end:/$/}];const i={className:"variable",variants:[{begin:/\$[\w\d"][\w\d_]*/},{
610
+ begin:/\$\{(.*?)\}/}]},r={className:"literal",
611
+ begin:/\bon|off|true|false|yes|no\b/},s={className:"string",
612
+ contains:[e.BACKSLASH_ESCAPE],variants:[{begin:"'''",end:"'''",relevance:10},{
613
+ begin:'"""',end:'"""',relevance:10},{begin:'"',end:'"'},{begin:"'",end:"'"}]
614
+ },o={begin:/\[/,end:/\]/,contains:[a,r,i,s,t,"self"],relevance:0
615
+ },l=n.either(/[A-Za-z0-9_-]+/,/"(\\"|[^"])*"/,/'[^']*'/);return{
616
+ name:"TOML, also INI",aliases:["toml"],case_insensitive:!0,illegal:/\S/,
617
+ contains:[a,{className:"section",begin:/\[+/,end:/\]+/},{
618
+ begin:n.concat(l,"(\\s*\\.\\s*",l,")*",n.lookahead(/\s*=\s*[^#\s]/)),
619
+ className:"attr",starts:{end:/$/,contains:[a,o,r,i,s,t]}}]}},grmr_java:e=>{
620
+ const n=e.regex,t="[\xc0-\u02b8a-zA-Z_$][\xc0-\u02b8a-zA-Z_$0-9]*",a=t+be("(?:<"+t+"~~~(?:\\s*,\\s*"+t+"~~~)*>)?",/~~~/g,2),i={
621
+ keyword:["synchronized","abstract","private","var","static","if","const ","for","while","strictfp","finally","protected","import","native","final","void","enum","else","break","transient","catch","instanceof","volatile","case","assert","package","default","public","try","switch","continue","throws","protected","public","private","module","requires","exports","do","sealed","yield","permits","goto","when"],
622
+ literal:["false","true","null"],
623
+ type:["char","boolean","long","float","int","byte","short","double"],
624
+ built_in:["super","this"]},r={className:"meta",begin:"@"+t,contains:[{
625
+ begin:/\(/,end:/\)/,contains:["self"]}]},s={className:"params",begin:/\(/,
626
+ end:/\)/,keywords:i,relevance:0,contains:[e.C_BLOCK_COMMENT_MODE],endsParent:!0}
627
+ ;return{name:"Java",aliases:["jsp"],keywords:i,illegal:/<\/|#/,
628
+ contains:[e.COMMENT("/\\*\\*","\\*/",{relevance:0,contains:[{begin:/\w+@/,
629
+ relevance:0},{className:"doctag",begin:"@[A-Za-z]+"}]}),{
630
+ begin:/import java\.[a-z]+\./,keywords:"import",relevance:2
631
+ },e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,{begin:/"""/,end:/"""/,
632
+ className:"string",contains:[e.BACKSLASH_ESCAPE]
633
+ },e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,{
634
+ match:[/\b(?:class|interface|enum|extends|implements|new)/,/\s+/,t],className:{
635
+ 1:"keyword",3:"title.class"}},{match:/non-sealed/,scope:"keyword"},{
636
+ begin:[n.concat(/(?!else)/,t),/\s+/,t,/\s+/,/=(?!=)/],className:{1:"type",
637
+ 3:"variable",5:"operator"}},{begin:[/record/,/\s+/,t],className:{1:"keyword",
638
+ 3:"title.class"},contains:[s,e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE]},{
639
+ beginKeywords:"new throw return else",relevance:0},{
640
+ begin:["(?:"+a+"\\s+)",e.UNDERSCORE_IDENT_RE,/\s*(?=\()/],className:{
641
+ 2:"title.function"},keywords:i,contains:[{className:"params",begin:/\(/,
642
+ end:/\)/,keywords:i,relevance:0,
643
+ contains:[r,e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,ue,e.C_BLOCK_COMMENT_MODE]
644
+ },e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE]},ue,r]}},grmr_javascript:ve,
645
+ grmr_json:e=>{const n=["true","false","null"],t={scope:"literal",
646
+ beginKeywords:n.join(" ")};return{name:"JSON",aliases:["jsonc"],keywords:{
647
+ literal:n},contains:[{className:"attr",begin:/"(\\.|[^\\"\r\n])*"(?=\s*:)/,
648
+ relevance:1.01},{match:/[{}[\],:]/,className:"punctuation",relevance:0
649
+ },e.QUOTE_STRING_MODE,t,e.C_NUMBER_MODE,e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE],
650
+ illegal:"\\S"}},grmr_kotlin:e=>{const n={
437
651
  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",
438
652
  built_in:"Byte Short Char Int Long Boolean Float Double Void Unit Nothing",
439
- literal:"true false null"},i={className:"symbol",begin:e.UNDERSCORE_IDENT_RE+"@"
440
- },s={className:"subst",begin:/\$\{/,end:/\}/,contains:[e.C_NUMBER_MODE]},t={
653
+ literal:"true false null"},t={className:"symbol",begin:e.UNDERSCORE_IDENT_RE+"@"
654
+ },a={className:"subst",begin:/\$\{/,end:/\}/,contains:[e.C_NUMBER_MODE]},i={
441
655
  className:"variable",begin:"\\$"+e.UNDERSCORE_IDENT_RE},r={className:"string",
442
- variants:[{begin:'"""',end:'"""(?=[^"])',contains:[t,s]},{begin:"'",end:"'",
656
+ variants:[{begin:'"""',end:'"""(?=[^"])',contains:[i,a]},{begin:"'",end:"'",
443
657
  illegal:/\n/,contains:[e.BACKSLASH_ESCAPE]},{begin:'"',end:'"',illegal:/\n/,
444
- contains:[e.BACKSLASH_ESCAPE,t,s]}]};s.contains.push(r);const l={
658
+ contains:[e.BACKSLASH_ESCAPE,i,a]}]};a.contains.push(r);const s={
445
659
  className:"meta",
446
660
  begin:"@(?:file|property|field|get|set|receiver|param|setparam|delegate)\\s*:(?:\\s*"+e.UNDERSCORE_IDENT_RE+")?"
447
- },c={className:"meta",begin:"@"+e.UNDERSCORE_IDENT_RE,contains:[{begin:/\(/,
448
- end:/\)/,contains:[e.inherit(r,{className:"string"})]}]
449
- },o=a,b=e.COMMENT("/\\*","\\*/",{contains:[e.C_BLOCK_COMMENT_MODE]}),E={
661
+ },o={className:"meta",begin:"@"+e.UNDERSCORE_IDENT_RE,contains:[{begin:/\(/,
662
+ end:/\)/,contains:[e.inherit(r,{className:"string"}),"self"]}]
663
+ },l=ue,c=e.COMMENT("/\\*","\\*/",{contains:[e.C_BLOCK_COMMENT_MODE]}),d={
450
664
  variants:[{className:"type",begin:e.UNDERSCORE_IDENT_RE},{begin:/\(/,end:/\)/,
451
- contains:[]}]},d=E;return d.variants[1].contains=[E],E.variants[1].contains=[d],
665
+ contains:[]}]},g=d;return g.variants[1].contains=[d],d.variants[1].contains=[g],
452
666
  {name:"Kotlin",aliases:["kt","kts"],keywords:n,
453
667
  contains:[e.COMMENT("/\\*\\*","\\*/",{relevance:0,contains:[{className:"doctag",
454
- begin:"@[A-Za-z]+"}]}),e.C_LINE_COMMENT_MODE,b,{className:"keyword",
668
+ begin:"@[A-Za-z]+"}]}),e.C_LINE_COMMENT_MODE,c,{className:"keyword",
455
669
  begin:/\b(break|continue|return|this)\b/,starts:{contains:[{className:"symbol",
456
- begin:/@\w+/}]}},i,l,c,{className:"function",beginKeywords:"fun",end:"[(]|$",
670
+ begin:/@\w+/}]}},t,s,o,{className:"function",beginKeywords:"fun",end:"[(]|$",
457
671
  returnBegin:!0,excludeEnd:!0,keywords:n,relevance:5,contains:[{
458
672
  begin:e.UNDERSCORE_IDENT_RE+"\\s*\\(",returnBegin:!0,relevance:0,
459
673
  contains:[e.UNDERSCORE_TITLE_MODE]},{className:"type",begin:/</,end:/>/,
460
674
  keywords:"reified",relevance:0},{className:"params",begin:/\(/,end:/\)/,
461
675
  endsParent:!0,keywords:n,relevance:0,contains:[{begin:/:/,end:/[=,\/]/,
462
- endsWithParent:!0,contains:[E,e.C_LINE_COMMENT_MODE,b],relevance:0
463
- },e.C_LINE_COMMENT_MODE,b,l,c,r,e.C_NUMBER_MODE]},b]},{className:"class",
464
- beginKeywords:"class interface trait",end:/[:\{(]|$/,excludeEnd:!0,
676
+ endsWithParent:!0,contains:[d,e.C_LINE_COMMENT_MODE,c],relevance:0
677
+ },e.C_LINE_COMMENT_MODE,c,s,o,r,e.C_NUMBER_MODE]},c]},{
678
+ begin:[/class|interface|trait/,/\s+/,e.UNDERSCORE_IDENT_RE],beginScope:{
679
+ 3:"title.class"},keywords:"class interface trait",end:/[:\{(]|$/,excludeEnd:!0,
465
680
  illegal:"extends implements",contains:[{
466
681
  beginKeywords:"public protected internal private constructor"
467
682
  },e.UNDERSCORE_TITLE_MODE,{className:"type",begin:/</,end:/>/,excludeBegin:!0,
468
- excludeEnd:!0,relevance:0},{className:"type",begin:/[,:]\s*/,end:/[<\(,]|$/,
469
- excludeBegin:!0,returnEnd:!0},l,c]},r,{className:"meta",begin:"^#!/usr/bin/env",
470
- end:"$",illegal:"\n"},o]}}})();hljs.registerLanguage("kotlin",e)})();/*! `typescript` grammar compiled for Highlight.js 11.4.0 */
471
- (()=>{var e=(()=>{"use strict"
472
- ;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"],t=["Object","Function","Boolean","Symbol","Math","Date","Number","BigInt","String","RegExp","Array","Float32Array","Float64Array","Int8Array","Uint8Array","Uint8ClampedArray","Int16Array","Int32Array","Uint16Array","Uint32Array","BigInt64Array","BigUint64Array","Set","Map","WeakSet","WeakMap","ArrayBuffer","SharedArrayBuffer","Atomics","DataView","JSON","Promise","Generator","GeneratorFunction","AsyncFunction","Reflect","Proxy","Intl","WebAssembly"],s=["Error","EvalError","InternalError","RangeError","ReferenceError","SyntaxError","TypeError","URIError"],r=["setInterval","setTimeout","clearInterval","clearTimeout","require","exports","eval","isFinite","isNaN","parseFloat","parseInt","decodeURI","decodeURIComponent","encodeURI","encodeURIComponent","escape","unescape"],c=["arguments","this","super","console","window","document","localStorage","module","global"],i=[].concat(r,t,s)
473
- ;function o(o){const l=o.regex,d=e,b={begin:/<[A-Za-z0-9\\._:-]+/,
474
- end:/\/[A-Za-z0-9\\._:-]+>|\/>/,isTrulyOpeningTag:(e,n)=>{
475
- const a=e[0].length+e.index,t=e.input[a]
476
- ;if("<"===t||","===t)return void n.ignoreMatch();let s
477
- ;">"===t&&(((e,{after:n})=>{const a="</"+e[0].slice(1)
478
- ;return-1!==e.input.indexOf(a,n)})(e,{after:a
479
- })||n.ignoreMatch()),(s=e.input.substr(a).match(/^\s+extends\s+/))&&0===s.index&&n.ignoreMatch()
480
- }},g={$pattern:e,keyword:n,literal:a,built_in:i,"variable.language":c
481
- },u="\\.([0-9](_?[0-9])*)",m="0|[1-9](_?[0-9])*|0[0-7]*[89][0-9]*",E={
482
- className:"number",variants:[{
483
- begin:`(\\b(${m})((${u})|\\.)?|(${u}))[eE][+-]?([0-9](_?[0-9])*)\\b`},{
484
- begin:`\\b(${m})\\b((${u})\\b|\\.)?|(${u})\\b`},{
485
- begin:"\\b(0|[1-9](_?[0-9])*)n\\b"},{
486
- begin:"\\b0[xX][0-9a-fA-F](_?[0-9a-fA-F])*n?\\b"},{
487
- begin:"\\b0[bB][0-1](_?[0-1])*n?\\b"},{begin:"\\b0[oO][0-7](_?[0-7])*n?\\b"},{
488
- begin:"\\b0[0-7]+n?\\b"}],relevance:0},y={className:"subst",begin:"\\$\\{",
489
- end:"\\}",keywords:g,contains:[]},A={begin:"html`",end:"",starts:{end:"`",
490
- returnEnd:!1,contains:[o.BACKSLASH_ESCAPE,y],subLanguage:"xml"}},p={
491
- begin:"css`",end:"",starts:{end:"`",returnEnd:!1,
492
- contains:[o.BACKSLASH_ESCAPE,y],subLanguage:"css"}},_={className:"string",
493
- begin:"`",end:"`",contains:[o.BACKSLASH_ESCAPE,y]},f={className:"comment",
494
- variants:[o.COMMENT(/\/\*\*(?!\/)/,"\\*/",{relevance:0,contains:[{
495
- begin:"(?=@[A-Za-z]+)",relevance:0,contains:[{className:"doctag",
496
- begin:"@[A-Za-z]+"},{className:"type",begin:"\\{",end:"\\}",excludeEnd:!0,
497
- excludeBegin:!0,relevance:0},{className:"variable",begin:d+"(?=\\s*(-)|$)",
498
- endsParent:!0,relevance:0},{begin:/(?=[^\n])\s/,relevance:0}]}]
499
- }),o.C_BLOCK_COMMENT_MODE,o.C_LINE_COMMENT_MODE]
500
- },N=[o.APOS_STRING_MODE,o.QUOTE_STRING_MODE,A,p,_,E];y.contains=N.concat({
501
- begin:/\{/,end:/\}/,keywords:g,contains:["self"].concat(N)})
502
- ;const h=[].concat(f,y.contains),v=h.concat([{begin:/\(/,end:/\)/,keywords:g,
503
- contains:["self"].concat(h)}]),S={className:"params",begin:/\(/,end:/\)/,
504
- excludeBegin:!0,excludeEnd:!0,keywords:g,contains:v},w={variants:[{
505
- match:[/class/,/\s+/,d,/\s+/,/extends/,/\s+/,l.concat(d,"(",l.concat(/\./,d),")*")],
506
- scope:{1:"keyword",3:"title.class",5:"keyword",7:"title.class.inherited"}},{
507
- match:[/class/,/\s+/,d],scope:{1:"keyword",3:"title.class"}}]},R={relevance:0,
508
- match:l.either(/\bJSON/,/\b[A-Z][a-z]+([A-Z][a-z]*|\d)*/,/\b[A-Z]{2,}([A-Z][a-z]+|\d)+([A-Z][a-z]*)*/,/\b[A-Z]{2,}[a-z]+([A-Z][a-z]+|\d)*([A-Z][a-z]*)*/),
509
- className:"title.class",keywords:{_:[...t,...s]}},x={variants:[{
510
- match:[/function/,/\s+/,d,/(?=\s*\()/]},{match:[/function/,/\s*(?=\()/]}],
511
- className:{1:"keyword",3:"title.function"},label:"func.def",contains:[S],
512
- illegal:/%/},k={
513
- match:l.concat(/\b/,(O=[...r,"super"],l.concat("(?!",O.join("|"),")")),d,l.lookahead(/\(/)),
514
- className:"title.function",relevance:0};var O;const I={
515
- begin:l.concat(/\./,l.lookahead(l.concat(d,/(?![0-9A-Za-z$_(])/))),end:d,
516
- excludeBegin:!0,keywords:"prototype",className:"property",relevance:0},C={
517
- match:[/get|set/,/\s+/,d,/(?=\()/],className:{1:"keyword",3:"title.function"},
518
- contains:[{begin:/\(\)/},S]
519
- },T="(\\([^()]*(\\([^()]*(\\([^()]*\\)[^()]*)*\\)[^()]*)*\\)|"+o.UNDERSCORE_IDENT_RE+")\\s*=>",M={
520
- match:[/const|var|let/,/\s+/,d,/\s*/,/=\s*/,/(async\s*)?/,l.lookahead(T)],
521
- keywords:"async",className:{1:"keyword",3:"title.function"},contains:[S]}
522
- ;return{name:"Javascript",aliases:["js","jsx","mjs","cjs"],keywords:g,exports:{
523
- PARAMS_CONTAINS:v,CLASS_REFERENCE:R},illegal:/#(?![$_A-z])/,
524
- contains:[o.SHEBANG({label:"shebang",binary:"node",relevance:5}),{
525
- label:"use_strict",className:"meta",relevance:10,
526
- begin:/^\s*['"]use (strict|asm)['"]/
527
- },o.APOS_STRING_MODE,o.QUOTE_STRING_MODE,A,p,_,f,E,R,{className:"attr",
528
- begin:d+l.lookahead(":"),relevance:0},M,{
529
- begin:"("+o.RE_STARTERS_RE+"|\\b(case|return|throw)\\b)\\s*",
530
- keywords:"return throw case",relevance:0,contains:[f,o.REGEXP_MODE,{
531
- className:"function",begin:T,returnBegin:!0,end:"\\s*=>",contains:[{
532
- className:"params",variants:[{begin:o.UNDERSCORE_IDENT_RE,relevance:0},{
533
- className:null,begin:/\(\s*\)/,skip:!0},{begin:/\(/,end:/\)/,excludeBegin:!0,
534
- excludeEnd:!0,keywords:g,contains:v}]}]},{begin:/,/,relevance:0},{match:/\s+/,
535
- relevance:0},{variants:[{begin:"<>",end:"</>"},{
536
- match:/<[A-Za-z0-9\\._:-]+\s*\/>/},{begin:b.begin,
537
- "on:begin":b.isTrulyOpeningTag,end:b.end}],subLanguage:"xml",contains:[{
538
- begin:b.begin,end:b.end,skip:!0,contains:["self"]}]}]},x,{
539
- beginKeywords:"while if switch catch for"},{
540
- begin:"\\b(?!function)"+o.UNDERSCORE_IDENT_RE+"\\([^()]*(\\([^()]*(\\([^()]*\\)[^()]*)*\\)[^()]*)*\\)\\s*\\{",
541
- returnBegin:!0,label:"func.def",contains:[S,o.inherit(o.TITLE_MODE,{begin:d,
542
- className:"title.function"})]},{match:/\.\.\./,relevance:0},I,{match:"\\$"+d,
543
- relevance:0},{match:[/\bconstructor(?=\s*\()/],className:{1:"title.function"},
544
- contains:[S]},k,{relevance:0,match:/\b[A-Z][A-Z_0-9]+\b/,
545
- className:"variable.constant"},w,C,{match:/\$[(.]/}]}}return t=>{
546
- const s=o(t),r=["any","void","number","boolean","string","object","never","enum"],l={
547
- beginKeywords:"namespace",end:/\{/,excludeEnd:!0,
548
- contains:[s.exports.CLASS_REFERENCE]},d={beginKeywords:"interface",end:/\{/,
549
- excludeEnd:!0,keywords:{keyword:"interface extends",built_in:r},
550
- contains:[s.exports.CLASS_REFERENCE]},b={$pattern:e,
551
- keyword:n.concat(["type","namespace","typedef","interface","public","private","protected","implements","declare","abstract","readonly"]),
552
- literal:a,built_in:i.concat(r),"variable.language":c},g={className:"meta",
553
- begin:"@[A-Za-z$_][0-9A-Za-z$_]*"},u=(e,n,a)=>{
554
- const t=e.contains.findIndex((e=>e.label===n))
555
- ;if(-1===t)throw Error("can not find mode to replace");e.contains.splice(t,1,a)}
556
- ;return Object.assign(s.keywords,b),
557
- s.exports.PARAMS_CONTAINS.push(g),s.contains=s.contains.concat([g,l,d]),
558
- u(s,"shebang",t.SHEBANG()),u(s,"use_strict",{className:"meta",relevance:10,
559
- begin:/^\s*['"]use strict['"]/
560
- }),s.contains.find((e=>"func.def"===e.label)).relevance=0,Object.assign(s,{
561
- name:"TypeScript",aliases:["ts","tsx"]}),s}})()
562
- ;hljs.registerLanguage("typescript",e)})();/*! `python` grammar compiled for Highlight.js 11.4.0 */
563
- (()=>{var e=(()=>{"use strict";return e=>{
564
- const n=e.regex,a=/[\p{XID_Start}_]\p{XID_Continue}*/u,i=["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"],s={
565
- $pattern:/[A-Za-z]\w+|__\w+__/,keyword:i,
566
- 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"],
567
- literal:["__debug__","Ellipsis","False","None","NotImplemented","True"],
568
- type:["Any","Callable","Coroutine","Dict","List","Literal","Generic","Optional","Sequence","Set","Tuple","Type","Union"]
569
- },t={className:"meta",begin:/^(>>>|\.\.\.) /},r={className:"subst",begin:/\{/,
570
- end:/\}/,keywords:s,illegal:/#/},l={begin:/\{\{/,relevance:0},b={
571
- className:"string",contains:[e.BACKSLASH_ESCAPE],variants:[{
572
- begin:/([uU]|[bB]|[rR]|[bB][rR]|[rR][bB])?'''/,end:/'''/,
573
- contains:[e.BACKSLASH_ESCAPE,t],relevance:10},{
574
- begin:/([uU]|[bB]|[rR]|[bB][rR]|[rR][bB])?"""/,end:/"""/,
575
- contains:[e.BACKSLASH_ESCAPE,t],relevance:10},{
576
- begin:/([fF][rR]|[rR][fF]|[fF])'''/,end:/'''/,
577
- contains:[e.BACKSLASH_ESCAPE,t,l,r]},{begin:/([fF][rR]|[rR][fF]|[fF])"""/,
578
- end:/"""/,contains:[e.BACKSLASH_ESCAPE,t,l,r]},{begin:/([uU]|[rR])'/,end:/'/,
579
- relevance:10},{begin:/([uU]|[rR])"/,end:/"/,relevance:10},{
580
- begin:/([bB]|[bB][rR]|[rR][bB])'/,end:/'/},{begin:/([bB]|[bB][rR]|[rR][bB])"/,
581
- end:/"/},{begin:/([fF][rR]|[rR][fF]|[fF])'/,end:/'/,
582
- contains:[e.BACKSLASH_ESCAPE,l,r]},{begin:/([fF][rR]|[rR][fF]|[fF])"/,end:/"/,
583
- contains:[e.BACKSLASH_ESCAPE,l,r]},e.APOS_STRING_MODE,e.QUOTE_STRING_MODE]
584
- },o="[0-9](_?[0-9])*",c=`(\\b(${o}))?\\.(${o})|\\b(${o})\\.`,d="\\b|"+i.join("|"),g={
585
- className:"number",relevance:0,variants:[{
586
- begin:`(\\b(${o})|(${c}))[eE][+-]?(${o})[jJ]?(?=${d})`},{begin:`(${c})[jJ]?`},{
587
- begin:`\\b([1-9](_?[0-9])*|0+(_?0)*)[lLjJ]?(?=${d})`},{
588
- begin:`\\b0[bB](_?[01])+[lL]?(?=${d})`},{begin:`\\b0[oO](_?[0-7])+[lL]?(?=${d})`
589
- },{begin:`\\b0[xX](_?[0-9a-fA-F])+[lL]?(?=${d})`},{begin:`\\b(${o})[jJ](?=${d})`
590
- }]},p={className:"comment",begin:n.lookahead(/# type:/),end:/$/,keywords:s,
591
- contains:[{begin:/# type:/},{begin:/#/,end:/\b\B/,endsWithParent:!0}]},m={
592
- className:"params",variants:[{className:"",begin:/\(\s*\)/,skip:!0},{begin:/\(/,
593
- end:/\)/,excludeBegin:!0,excludeEnd:!0,keywords:s,
594
- contains:["self",t,g,b,e.HASH_COMMENT_MODE]}]};return r.contains=[b,g,t],{
595
- name:"Python",aliases:["py","gyp","ipython"],unicodeRegex:!0,keywords:s,
596
- illegal:/(<\/|->|\?)|=>/,contains:[t,g,{begin:/\bself\b/},{beginKeywords:"if",
597
- relevance:0},b,p,e.HASH_COMMENT_MODE,{match:[/\bdef/,/\s+/,a],scope:{
598
- 1:"keyword",3:"title.function"},contains:[m]},{variants:[{
599
- match:[/\bclass/,/\s+/,a,/\s*/,/\(\s*/,a,/\s*\)/]},{match:[/\bclass/,/\s+/,a]}],
600
- scope:{1:"keyword",3:"title.class",6:"title.class.inherited"}},{
601
- className:"meta",begin:/^[\t ]*@/,end:/(?=#)|$/,contains:[g,m,b]}]}}})()
602
- ;hljs.registerLanguage("python",e)})();/*! `python-repl` grammar compiled for Highlight.js 11.4.0 */
603
- (()=>{var a=(()=>{"use strict";return a=>({aliases:["pycon"],contains:[{
604
- className:"meta",starts:{end:/ |$/,starts:{end:"$",subLanguage:"python"}},
605
- variants:[{begin:/^>>>(?=[ ]|$)/},{begin:/^\.\.\.(?=[ ]|$)/}]}]})})()
606
- ;hljs.registerLanguage("python-repl",a)})();/*! `php` grammar compiled for Highlight.js 11.4.0 */
607
- (()=>{var e=(()=>{"use strict";return e=>{
608
- const t=e.regex,r="[a-zA-Z0-9_\x7f-\xff]*(?![A-Za-z0-9])(?![$]))",a=t.concat("([a-zA-Z_\\x7f-\\xff]",r),n=t.concat("([A-Z]",r),o={
609
- scope:"variable",match:"\\$+"+a},c={scope:"subst",variants:[{begin:/\$\w+/},{
610
- begin:/\{\$/,end:/\}/}]},i=e.inherit(e.APOS_STRING_MODE,{illegal:null
611
- }),l="[ \t\n]",s={scope:"string",variants:[e.inherit(e.QUOTE_STRING_MODE,{
612
- illegal:null,contains:e.QUOTE_STRING_MODE.contains.concat(c)
613
- }),i,e.END_SAME_AS_BEGIN({begin:/<<<[ \t]*(\w+)\n/,end:/[ \t]*(\w+)\b/,
614
- contains:e.QUOTE_STRING_MODE.contains.concat(c)})]},p={scope:"number",
615
- variants:[{begin:"\\b0[bB][01]+(?:_[01]+)*\\b"},{
616
- begin:"\\b0[oO][0-7]+(?:_[0-7]+)*\\b"},{
683
+ excludeEnd:!0,relevance:0},{className:"type",begin:/[,:]\s*/,end:/[<\(,){\s]|$/,
684
+ excludeBegin:!0,returnEnd:!0},s,o]},r,{className:"meta",begin:"^#!/usr/bin/env",
685
+ end:"$",illegal:"\n"},l]}},grmr_less:e=>{
686
+ const n=te(e),t=le,a="[\\w-]+",i="("+a+"|@\\{"+a+"\\})",r=[],s=[],o=e=>({
687
+ className:"string",begin:"~?"+e+".*?"+e}),l=(e,n,t)=>({className:e,begin:n,
688
+ relevance:t}),c={$pattern:/[a-z-]+/,keyword:"and or not only",
689
+ attribute:ie.join(" ")},d={begin:"\\(",end:"\\)",contains:s,keywords:c,
690
+ relevance:0}
691
+ ;s.push(e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,o("'"),o('"'),n.CSS_NUMBER_MODE,{
692
+ begin:"(url|data-uri)\\(",starts:{className:"string",end:"[\\)\\n]",
693
+ excludeEnd:!0}
694
+ },n.HEXCOLOR,d,l("variable","@@?"+a,10),l("variable","@\\{"+a+"\\}"),l("built_in","~?`[^`]*?`"),{
695
+ className:"attribute",begin:a+"\\s*:",end:":",returnBegin:!0,excludeEnd:!0
696
+ },n.IMPORTANT,{beginKeywords:"and not"},n.FUNCTION_DISPATCH);const g=s.concat({
697
+ begin:/\{/,end:/\}/,contains:r}),u={beginKeywords:"when",endsWithParent:!0,
698
+ contains:[{beginKeywords:"and not"}].concat(s)},b={begin:i+"\\s*:",
699
+ returnBegin:!0,end:/[;}]/,relevance:0,contains:[{begin:/-(webkit|moz|ms|o)-/
700
+ },n.CSS_VARIABLE,{className:"attribute",begin:"\\b("+oe.join("|")+")\\b",
701
+ end:/(?=:)/,starts:{endsWithParent:!0,illegal:"[<=$]",relevance:0,contains:s}}]
702
+ },m={className:"keyword",
703
+ begin:"@(import|media|charset|font-face|(-[a-z]+-)?keyframes|supports|document|namespace|page|viewport|host)\\b",
704
+ starts:{end:"[;{}]",keywords:c,returnEnd:!0,contains:s,relevance:0}},p={
705
+ className:"variable",variants:[{begin:"@"+a+"\\s*:",relevance:15},{begin:"@"+a
706
+ }],starts:{end:"[;}]",returnEnd:!0,contains:g}},_={variants:[{
707
+ begin:"[\\.#:&\\[>]",end:"[;{}]"},{begin:i,end:/\{/}],returnBegin:!0,
708
+ returnEnd:!0,illegal:"[<='$\"]",relevance:0,
709
+ contains:[e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,u,l("keyword","all\\b"),l("variable","@\\{"+a+"\\}"),{
710
+ begin:"\\b("+ae.join("|")+")\\b",className:"selector-tag"
711
+ },n.CSS_NUMBER_MODE,l("selector-tag",i,0),l("selector-id","#"+i),l("selector-class","\\."+i,0),l("selector-tag","&",0),n.ATTRIBUTE_SELECTOR_MODE,{
712
+ className:"selector-pseudo",begin:":("+re.join("|")+")"},{
713
+ className:"selector-pseudo",begin:":(:)?("+se.join("|")+")"},{begin:/\(/,
714
+ end:/\)/,relevance:0,contains:g},{begin:"!important"},n.FUNCTION_DISPATCH]},h={
715
+ begin:a+":(:)?"+`(${t.join("|")})`,returnBegin:!0,contains:[_]}
716
+ ;return r.push(e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,m,p,h,b,_,u,n.FUNCTION_DISPATCH),
717
+ {name:"Less",case_insensitive:!0,illegal:"[=>'/<($\"]",contains:r}},
718
+ grmr_lua:e=>{const n="\\[=*\\[",t="\\]=*\\]",a={begin:n,end:t,contains:["self"]
719
+ },i=[e.COMMENT("--(?!"+n+")","$"),e.COMMENT("--"+n,t,{contains:[a],relevance:10
720
+ })];return{name:"Lua",aliases:["pluto"],keywords:{
721
+ $pattern:e.UNDERSCORE_IDENT_RE,literal:"true false nil",
722
+ keyword:"and break do else elseif end for goto if in local not or repeat return then until while",
723
+ 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"
724
+ },contains:i.concat([{className:"function",beginKeywords:"function",end:"\\)",
725
+ contains:[e.inherit(e.TITLE_MODE,{
726
+ begin:"([_a-zA-Z]\\w*\\.)*([_a-zA-Z]\\w*:)?[_a-zA-Z]\\w*"}),{className:"params",
727
+ begin:"\\(",endsWithParent:!0,contains:i}].concat(i)
728
+ },e.C_NUMBER_MODE,e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,{className:"string",
729
+ begin:n,end:t,contains:[a],relevance:5}])}},grmr_makefile:e=>{const n={
730
+ className:"variable",variants:[{begin:"\\$\\("+e.UNDERSCORE_IDENT_RE+"\\)",
731
+ contains:[e.BACKSLASH_ESCAPE]},{begin:/\$[@%<?\^\+\*]/}]},t={className:"string",
732
+ begin:/"/,end:/"/,contains:[e.BACKSLASH_ESCAPE,n]},a={className:"variable",
733
+ begin:/\$\([\w-]+\s/,end:/\)/,keywords:{
734
+ built_in:"subst patsubst strip findstring filter filter-out sort word wordlist firstword lastword dir notdir suffix basename addsuffix addprefix join wildcard realpath abspath error warning shell origin flavor foreach if or and call eval file value"
735
+ },contains:[n,t]},i={begin:"^"+e.UNDERSCORE_IDENT_RE+"\\s*(?=[:+?]?=)"},r={
736
+ className:"section",begin:/^[^\s]+:/,end:/$/,contains:[n]};return{
737
+ name:"Makefile",aliases:["mk","mak","make"],keywords:{$pattern:/[\w-]+/,
738
+ keyword:"define endef undefine ifdef ifndef ifeq ifneq else endif include -include sinclude override export unexport private vpath"
739
+ },contains:[e.HASH_COMMENT_MODE,n,t,a,i,{className:"meta",begin:/^\.PHONY:/,
740
+ end:/$/,keywords:{$pattern:/[\.\w]+/,keyword:".PHONY"}},r]}},grmr_markdown:e=>{
741
+ const n={begin:/<\/?[A-Za-z_]/,end:">",subLanguage:"xml",relevance:0},t={
742
+ variants:[{begin:/\[.+?\]\[.*?\]/,relevance:0},{
743
+ begin:/\[.+?\]\(((data|javascript|mailto):|(?:http|ftp)s?:\/\/).*?\)/,
744
+ relevance:2},{
745
+ begin:e.regex.concat(/\[.+?\]\(/,/[A-Za-z][A-Za-z0-9+.-]*/,/:\/\/.*?\)/),
746
+ relevance:2},{begin:/\[.+?\]\([./?&#].*?\)/,relevance:1},{
747
+ begin:/\[.*?\]\(.*?\)/,relevance:0}],returnBegin:!0,contains:[{match:/\[(?=\])/
748
+ },{className:"string",relevance:0,begin:"\\[",end:"\\]",excludeBegin:!0,
749
+ returnEnd:!0},{className:"link",relevance:0,begin:"\\]\\(",end:"\\)",
750
+ excludeBegin:!0,excludeEnd:!0},{className:"symbol",relevance:0,begin:"\\]\\[",
751
+ end:"\\]",excludeBegin:!0,excludeEnd:!0}]},a={className:"strong",contains:[],
752
+ variants:[{begin:/_{2}(?!\s)/,end:/_{2}/},{begin:/\*{2}(?!\s)/,end:/\*{2}/}]
753
+ },i={className:"emphasis",contains:[],variants:[{begin:/\*(?![*\s])/,end:/\*/},{
754
+ begin:/_(?![_\s])/,end:/_/,relevance:0}]},r=e.inherit(a,{contains:[]
755
+ }),s=e.inherit(i,{contains:[]});a.contains.push(s),i.contains.push(r)
756
+ ;let o=[n,t];return[a,i,r,s].forEach((e=>{e.contains=e.contains.concat(o)
757
+ })),o=o.concat(a,i),{name:"Markdown",aliases:["md","mkdown","mkd"],contains:[{
758
+ className:"section",variants:[{begin:"^#{1,6}",end:"$",contains:o},{
759
+ begin:"(?=^.+?\\n[=-]{2,}$)",contains:[{begin:"^[=-]*$"},{begin:"^",end:"\\n",
760
+ contains:o}]}]},n,{className:"bullet",begin:"^[ \t]*([*+-]|(\\d+\\.))(?=\\s+)",
761
+ end:"\\s+",excludeEnd:!0},a,i,{className:"quote",begin:"^>\\s+",contains:o,
762
+ end:"$"},{className:"code",variants:[{begin:"(`{3,})[^`](.|\\n)*?\\1`*[ ]*"},{
763
+ begin:"(~{3,})[^~](.|\\n)*?\\1~*[ ]*"},{begin:"```",end:"```+[ ]*$"},{
764
+ begin:"~~~",end:"~~~+[ ]*$"},{begin:"`.+?`"},{begin:"(?=^( {4}|\\t))",
765
+ contains:[{begin:"^( {4}|\\t)",end:"(\\n)$"}],relevance:0}]},{
766
+ begin:"^[-\\*]{3,}",end:"$"},t,{begin:/^\[[^\n]+\]:/,returnBegin:!0,contains:[{
767
+ className:"symbol",begin:/\[/,end:/\]/,excludeBegin:!0,excludeEnd:!0},{
768
+ className:"link",begin:/:\s*/,end:/$/,excludeBegin:!0}]},{scope:"literal",
769
+ match:/&([a-zA-Z0-9]+|#[0-9]{1,7}|#[Xx][0-9a-fA-F]{1,6});/}]}},
770
+ grmr_objectivec:e=>{const n=/[a-zA-Z@][a-zA-Z0-9_]*/,t={$pattern:n,
771
+ keyword:["@interface","@class","@protocol","@implementation"]};return{
772
+ name:"Objective-C",aliases:["mm","objc","obj-c","obj-c++","objective-c++"],
773
+ keywords:{"variable.language":["this","super"],$pattern:n,
774
+ keyword:["while","export","sizeof","typedef","const","struct","for","union","volatile","static","mutable","if","do","return","goto","enum","else","break","extern","asm","case","default","register","explicit","typename","switch","continue","inline","readonly","assign","readwrite","self","@synchronized","id","typeof","nonatomic","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"],
775
+ literal:["false","true","FALSE","TRUE","nil","YES","NO","NULL"],
776
+ built_in:["dispatch_once_t","dispatch_queue_t","dispatch_sync","dispatch_async","dispatch_once"],
777
+ type:["int","float","char","unsigned","signed","short","long","double","wchar_t","unichar","void","bool","BOOL","id|0","_Bool"]
778
+ },illegal:"</",contains:[{className:"built_in",
779
+ begin:"\\b(AV|CA|CF|CG|CI|CL|CM|CN|CT|MK|MP|MTK|MTL|NS|SCN|SK|UI|WK|XC)\\w+"
780
+ },e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,e.C_NUMBER_MODE,e.QUOTE_STRING_MODE,e.APOS_STRING_MODE,{
781
+ className:"string",variants:[{begin:'@"',end:'"',illegal:"\\n",
782
+ contains:[e.BACKSLASH_ESCAPE]}]},{className:"meta",begin:/#\s*[a-z]+\b/,end:/$/,
783
+ keywords:{
784
+ keyword:"if else elif endif define undef warning error line pragma ifdef ifndef include"
785
+ },contains:[{begin:/\\\n/,relevance:0},e.inherit(e.QUOTE_STRING_MODE,{
786
+ className:"string"}),{className:"string",begin:/<.*?>/,end:/$/,illegal:"\\n"
787
+ },e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE]},{className:"class",
788
+ begin:"("+t.keyword.join("|")+")\\b",end:/(\{|$)/,excludeEnd:!0,keywords:t,
789
+ contains:[e.UNDERSCORE_TITLE_MODE]},{begin:"\\."+e.UNDERSCORE_IDENT_RE,
790
+ relevance:0}]}},grmr_perl:e=>{const n=e.regex,t=/[dualxmsipngr]{0,12}/,a={
791
+ $pattern:/[\w.]+/,
792
+ keyword:"abs accept alarm and atan2 bind binmode bless break caller chdir chmod chomp chop chown chr chroot class 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 field 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 method 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"
793
+ },i={className:"subst",begin:"[$@]\\{",end:"\\}",keywords:a},r={begin:/->\{/,
794
+ end:/\}/},s={scope:"attr",match:/\s+:\s*\w+(\s*\(.*?\))?/},o={scope:"variable",
795
+ variants:[{begin:/\$\d/},{
796
+ begin:n.concat(/[$%@](?!")(\^\w\b|#\w+(::\w+)*|\{\w+\}|\w+(::\w*)*)/,"(?![A-Za-z])(?![@$%])")
797
+ },{begin:/[$%@](?!")[^\s\w{=]|\$=/,relevance:0}],contains:[s]},l={
798
+ className:"number",variants:[{match:/0?\.[0-9][0-9_]+\b/},{
799
+ match:/\bv?(0|[1-9][0-9_]*(\.[0-9_]+)?|[1-9][0-9_]*)\b/},{
800
+ match:/\b0[0-7][0-7_]*\b/},{match:/\b0x[0-9a-fA-F][0-9a-fA-F_]*\b/},{
801
+ match:/\b0b[0-1][0-1_]*\b/}],relevance:0
802
+ },c=[e.BACKSLASH_ESCAPE,i,o],d=[/!/,/\//,/\|/,/\?/,/'/,/"/,/#/],g=(e,a,i="\\1")=>{
803
+ const r="\\1"===i?i:n.concat(i,a)
804
+ ;return n.concat(n.concat("(?:",e,")"),a,/(?:\\.|[^\\\/])*?/,r,/(?:\\.|[^\\\/])*?/,i,t)
805
+ },u=(e,a,i)=>n.concat(n.concat("(?:",e,")"),a,/(?:\\.|[^\\\/])*?/,i,t),b=[o,e.HASH_COMMENT_MODE,e.COMMENT(/^=\w/,/=cut/,{
806
+ endsWithParent:!0}),r,{className:"string",contains:c,variants:[{
807
+ begin:"q[qwxr]?\\s*\\(",end:"\\)",relevance:5},{begin:"q[qwxr]?\\s*\\[",
808
+ end:"\\]",relevance:5},{begin:"q[qwxr]?\\s*\\{",end:"\\}",relevance:5},{
809
+ begin:"q[qwxr]?\\s*\\|",end:"\\|",relevance:5},{begin:"q[qwxr]?\\s*<",end:">",
810
+ relevance:5},{begin:"qw\\s+q",end:"q",relevance:5},{begin:"'",end:"'",
811
+ contains:[e.BACKSLASH_ESCAPE]},{begin:'"',end:'"'},{begin:"`",end:"`",
812
+ contains:[e.BACKSLASH_ESCAPE]},{begin:/\{\w+\}/,relevance:0},{
813
+ begin:"-?\\w+\\s*=>",relevance:0}]},l,{
814
+ begin:"(\\/\\/|"+e.RE_STARTERS_RE+"|\\b(split|return|print|reverse|grep)\\b)\\s*",
815
+ keywords:"split return print reverse grep",relevance:0,
816
+ contains:[e.HASH_COMMENT_MODE,{className:"regexp",variants:[{
817
+ begin:g("s|tr|y",n.either(...d,{capture:!0}))},{begin:g("s|tr|y","\\(","\\)")},{
818
+ begin:g("s|tr|y","\\[","\\]")},{begin:g("s|tr|y","\\{","\\}")}],relevance:2},{
819
+ className:"regexp",variants:[{begin:/(m|qr)\/\//,relevance:0},{
820
+ begin:u("(?:m|qr)?",/\//,/\//)},{begin:u("m|qr",n.either(...d,{capture:!0
821
+ }),/\1/)},{begin:u("m|qr",/\(/,/\)/)},{begin:u("m|qr",/\[/,/\]/)},{
822
+ begin:u("m|qr",/\{/,/\}/)}]}]},{className:"function",beginKeywords:"sub method",
823
+ end:"(\\s*\\(.*?\\))?[;{]",excludeEnd:!0,relevance:5,contains:[e.TITLE_MODE,s]
824
+ },{className:"class",beginKeywords:"class",end:"[;{]",excludeEnd:!0,relevance:5,
825
+ contains:[e.TITLE_MODE,s,l]},{begin:"-\\w\\b",relevance:0},{begin:"^__DATA__$",
826
+ end:"^__END__$",subLanguage:"mojolicious",contains:[{begin:"^@@.*",end:"$",
827
+ className:"comment"}]}];return i.contains=b,r.contains=b,{name:"Perl",
828
+ aliases:["pl","pm"],keywords:a,contains:b}},grmr_php:e=>{
829
+ const n=e.regex,t=/(?![A-Za-z0-9])(?![$])/,a=n.concat(/[a-zA-Z_\x7f-\xff][a-zA-Z0-9_\x7f-\xff]*/,t),i=n.concat(/(\\?[A-Z][a-z0-9_\x7f-\xff]+|\\?[A-Z]+(?=[A-Z][a-z0-9_\x7f-\xff])){1,}/,t),r=n.concat(/[A-Z]+/,t),s={
830
+ scope:"variable",match:"\\$+"+a},o={scope:"subst",variants:[{begin:/\$\w+/},{
831
+ begin:/\{\$/,end:/\}/}]},l=e.inherit(e.APOS_STRING_MODE,{illegal:null
832
+ }),c="[ \t\n]",d={scope:"string",variants:[e.inherit(e.QUOTE_STRING_MODE,{
833
+ illegal:null,contains:e.QUOTE_STRING_MODE.contains.concat(o)}),l,{
834
+ begin:/<<<[ \t]*(?:(\w+)|"(\w+)")\n/,end:/[ \t]*(\w+)\b/,
835
+ contains:e.QUOTE_STRING_MODE.contains.concat(o),"on:begin":(e,n)=>{
836
+ n.data._beginMatch=e[1]||e[2]},"on:end":(e,n)=>{
837
+ n.data._beginMatch!==e[1]&&n.ignoreMatch()}},e.END_SAME_AS_BEGIN({
838
+ begin:/<<<[ \t]*'(\w+)'\n/,end:/[ \t]*(\w+)\b/})]},g={scope:"number",variants:[{
839
+ begin:"\\b0[bB][01]+(?:_[01]+)*\\b"},{begin:"\\b0[oO][0-7]+(?:_[0-7]+)*\\b"},{
617
840
  begin:"\\b0[xX][\\da-fA-F]+(?:_[\\da-fA-F]+)*\\b"},{
618
841
  begin:"(?:\\b\\d+(?:_\\d+)*(\\.(?:\\d+(?:_\\d+)*))?|\\B\\.\\d+)(?:[eE][+-]?\\d+)?"
619
842
  }],relevance:0
620
- },_=["__CLASS__","__DIR__","__FILE__","__FUNCTION__","__COMPILER_HALT_OFFSET__","__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","never","object","or","private","protected","public","readonly","real","return","string","switch","throw","trait","try","unset","use","var","void","while","xor","yield"],d=["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","SplPriorityQueue","SplQueue","SplStack","SplSubject","SplTempFileObject","TypeError","UnderflowException","UnexpectedValueException","UnhandledMatchError","ArrayAccess","BackedEnum","Closure","Fiber","Generator","Iterator","IteratorAggregate","Serializable","Stringable","Throwable","Traversable","UnitEnum","WeakReference","WeakMap","Directory","__PHP_Incomplete_Class","parent","php_user_filter","self","static","stdClass"],b={
621
- keyword:_,literal:(e=>{const t=[];return["false","null","true"].forEach((e=>{
622
- t.push(e),e.toLowerCase()===e?t.push(e.toUpperCase()):t.push(e.toLowerCase())
623
- })),t})(),built_in:d},u=e=>e.map((e=>e.replace(/\|\d+$/,""))),E={variants:[{
624
- match:[/new/,t.concat(l,"+"),t.concat("(?!",u(d).join("\\b|"),"\\b)"),t.concat(/\\?/,a),t.concat(l,"*",/\(/)],
625
- scope:{1:"keyword",4:"title.class"}}]},g={relevance:0,
626
- match:[/\b/,t.concat("(?!fn\\b|function\\b|",u(_).join("\\b|"),"|",u(d).join("\\b|"),"\\b)"),a,t.concat(l,"*"),t.lookahead(/(?=\()/)],
627
- scope:{3:"title.function.invoke"}},I=t.concat(a,"\\b(?!\\()"),h={variants:[{
628
- match:[t.concat(/::/,t.lookahead(/(?!class\b)/)),I],scope:{2:"variable.constant"
843
+ },u=["false","null","true"],b=["__CLASS__","__DIR__","__FILE__","__FUNCTION__","__COMPILER_HALT_OFFSET__","__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","never","object","or","private","protected","public","readonly","real","return","string","switch","throw","trait","try","unset","use","var","void","while","xor","yield"],m=["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","SplPriorityQueue","SplQueue","SplStack","SplSubject","SplTempFileObject","TypeError","UnderflowException","UnexpectedValueException","UnhandledMatchError","ArrayAccess","BackedEnum","Closure","Fiber","Generator","Iterator","IteratorAggregate","Serializable","Stringable","Throwable","Traversable","UnitEnum","WeakReference","WeakMap","Directory","__PHP_Incomplete_Class","parent","php_user_filter","self","static","stdClass"],p={
844
+ keyword:b,literal:(e=>{const n=[];return e.forEach((e=>{
845
+ n.push(e),e.toLowerCase()===e?n.push(e.toUpperCase()):n.push(e.toLowerCase())
846
+ })),n})(u),built_in:m},_=e=>e.map((e=>e.replace(/\|\d+$/,""))),h={variants:[{
847
+ match:[/new/,n.concat(c,"+"),n.concat("(?!",_(m).join("\\b|"),"\\b)"),i],scope:{
848
+ 1:"keyword",4:"title.class"}}]},f=n.concat(a,"\\b(?!\\()"),E={variants:[{
849
+ match:[n.concat(/::/,n.lookahead(/(?!class\b)/)),f],scope:{2:"variable.constant"
629
850
  }},{match:[/::/,/class/],scope:{2:"variable.language"}},{
630
- match:[n,t.concat("::",t.lookahead(/(?!class\b)/))],scope:{1:"title.class"}},{
631
- match:[n,/::/,/class/],scope:{1:"title.class",3:"variable.language"}}]};return{
632
- case_insensitive:!1,keywords:b,
633
- contains:[e.HASH_COMMENT_MODE,e.COMMENT("//","$"),e.COMMENT("/\\*","\\*/",{
851
+ match:[i,n.concat(/::/,n.lookahead(/(?!class\b)/)),f],scope:{1:"title.class",
852
+ 3:"variable.constant"}},{match:[i,n.concat("::",n.lookahead(/(?!class\b)/))],
853
+ scope:{1:"title.class"}},{match:[i,/::/,/class/],scope:{1:"title.class",
854
+ 3:"variable.language"}}]},y={scope:"attr",
855
+ match:n.concat(a,n.lookahead(":"),n.lookahead(/(?!::)/))},w={relevance:0,
856
+ begin:/\(/,end:/\)/,keywords:p,contains:[y,s,E,e.C_BLOCK_COMMENT_MODE,d,g,h]
857
+ },v={relevance:0,
858
+ match:[/\b/,n.concat("(?!fn\\b|function\\b|",_(b).join("\\b|"),"|",_(m).join("\\b|"),"\\b)"),a,n.concat(c,"*"),n.lookahead(/(?=\()/)],
859
+ scope:{3:"title.function.invoke"},contains:[w]};w.contains.push(v)
860
+ ;const N=[y,E,e.C_BLOCK_COMMENT_MODE,d,g,h],k={
861
+ begin:n.concat(/#\[\s*\\?/,n.either(i,r)),beginScope:"meta",end:/]/,
862
+ endScope:"meta",keywords:{literal:u,keyword:["new","array"]},contains:[{
863
+ begin:/\[/,end:/]/,keywords:{literal:u,keyword:["new","array"]},
864
+ contains:["self",...N]},...N,{scope:"meta",variants:[{match:i},{match:r}]}]}
865
+ ;return{case_insensitive:!1,keywords:p,
866
+ contains:[k,e.HASH_COMMENT_MODE,e.COMMENT("//","$"),e.COMMENT("/\\*","\\*/",{
634
867
  contains:[{scope:"doctag",match:"@[A-Za-z]+"}]}),{match:/__halt_compiler\(\);/,
635
868
  keywords:"__halt_compiler",starts:{scope:"comment",end:e.MATCH_NOTHING_RE,
636
869
  contains:[{match:/\?>/,scope:"meta",endsParent:!0}]}},{scope:"meta",variants:[{
637
- begin:/<\?php/,relevance:10},{begin:/<\?[=]?/},{begin:/\?>/}]},{
638
- scope:"variable.language",match:/\$this\b/},o,g,h,{
639
- match:[/const/,/\s/,a,/\s*=/],scope:{1:"keyword",3:"variable.constant"}},E,{
870
+ begin:/<\?php/,relevance:10},{begin:/<\?=/},{begin:/<\?/,relevance:.1},{
871
+ begin:/\?>/}]},{scope:"variable.language",match:/\$this\b/},s,v,E,{
872
+ match:[/const/,/\s/,a],scope:{1:"keyword",3:"variable.constant"}},h,{
640
873
  scope:"function",relevance:0,beginKeywords:"fn function",end:/[;{]/,
641
874
  excludeEnd:!0,illegal:"[$%\\[]",contains:[{beginKeywords:"use"
642
875
  },e.UNDERSCORE_TITLE_MODE,{begin:"=>",endsParent:!0},{scope:"params",
643
- begin:"\\(",end:"\\)",excludeBegin:!0,excludeEnd:!0,keywords:b,
644
- contains:["self",o,h,e.C_BLOCK_COMMENT_MODE,s,p]}]},{scope:"class",variants:[{
876
+ begin:"\\(",end:"\\)",excludeBegin:!0,excludeEnd:!0,keywords:p,
877
+ contains:["self",k,s,E,e.C_BLOCK_COMMENT_MODE,d,g]}]},{scope:"class",variants:[{
645
878
  beginKeywords:"enum",illegal:/[($"]/},{beginKeywords:"class interface trait",
646
879
  illegal:/[:($"]/}],relevance:0,end:/\{/,excludeEnd:!0,contains:[{
647
880
  beginKeywords:"extends implements"},e.UNDERSCORE_TITLE_MODE]},{
648
881
  beginKeywords:"namespace",relevance:0,end:";",illegal:/[.']/,
649
882
  contains:[e.inherit(e.UNDERSCORE_TITLE_MODE,{scope:"title.class"})]},{
650
883
  beginKeywords:"use",relevance:0,end:";",contains:[{
651
- match:/\b(as|const|function)\b/,scope:"keyword"},e.UNDERSCORE_TITLE_MODE]},s,p]}
652
- }})();hljs.registerLanguage("php",e)})();/*! `scss` grammar compiled for Highlight.js 11.4.0 */
653
- (()=>{var e=(()=>{"use strict"
654
- ;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"],r=["after","backdrop","before","cue","cue-region","first-letter","first-line","grammar-error","marker","part","placeholder","selection","slotted","spelling-error"],o=["align-content","align-items","align-self","all","animation","animation-delay","animation-direction","animation-duration","animation-fill-mode","animation-iteration-count","animation-name","animation-play-state","animation-timing-function","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","caret-color","clear","clip","clip-path","clip-rule","color","column-count","column-fill","column-gap","column-rule","column-rule-color","column-rule-style","column-rule-width","column-span","column-width","columns","contain","content","content-visibility","counter-increment","counter-reset","cue","cue-after","cue-before","cursor","direction","display","empty-cells","filter","flex","flex-basis","flex-direction","flex-flow","flex-grow","flex-shrink","flex-wrap","float","flow","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-synthesis","font-variant","font-variant-caps","font-variant-east-asian","font-variant-ligatures","font-variant-numeric","font-variant-position","font-variation-settings","font-weight","gap","glyph-orientation-vertical","grid","grid-area","grid-auto-columns","grid-auto-flow","grid-auto-rows","grid-column","grid-column-end","grid-column-start","grid-gap","grid-row","grid-row-end","grid-row-start","grid-template","grid-template-areas","grid-template-columns","grid-template-rows","hanging-punctuation","height","hyphens","icon","image-orientation","image-rendering","image-resolution","ime-mode","isolation","justify-content","left","letter-spacing","line-break","line-height","list-style","list-style-image","list-style-position","list-style-type","margin","margin-bottom","margin-left","margin-right","margin-top","marks","mask","mask-border","mask-border-mode","mask-border-outset","mask-border-repeat","mask-border-slice","mask-border-source","mask-border-width","mask-clip","mask-composite","mask-image","mask-mode","mask-origin","mask-position","mask-repeat","mask-size","mask-type","max-height","max-width","min-height","min-width","mix-blend-mode","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","pause","pause-after","pause-before","perspective","perspective-origin","pointer-events","position","quotes","resize","rest","rest-after","rest-before","right","row-gap","scroll-margin","scroll-margin-block","scroll-margin-block-end","scroll-margin-block-start","scroll-margin-bottom","scroll-margin-inline","scroll-margin-inline-end","scroll-margin-inline-start","scroll-margin-left","scroll-margin-right","scroll-margin-top","scroll-padding","scroll-padding-block","scroll-padding-block-end","scroll-padding-block-start","scroll-padding-bottom","scroll-padding-inline","scroll-padding-inline-end","scroll-padding-inline-start","scroll-padding-left","scroll-padding-right","scroll-padding-top","scroll-snap-align","scroll-snap-stop","scroll-snap-type","shape-image-threshold","shape-margin","shape-outside","speak","speak-as","src","tab-size","table-layout","text-align","text-align-all","text-align-last","text-combine-upright","text-decoration","text-decoration-color","text-decoration-line","text-decoration-style","text-emphasis","text-emphasis-color","text-emphasis-position","text-emphasis-style","text-indent","text-justify","text-orientation","text-overflow","text-rendering","text-shadow","text-transform","text-underline-position","top","transform","transform-box","transform-origin","transform-style","transition","transition-delay","transition-duration","transition-property","transition-timing-function","unicode-bidi","vertical-align","visibility","voice-balance","voice-duration","voice-family","voice-pitch","voice-range","voice-rate","voice-stress","voice-volume","white-space","widows","width","will-change","word-break","word-spacing","word-wrap","writing-mode","z-index"].reverse()
655
- ;return a=>{const n=(e=>({IMPORTANT:{scope:"meta",begin:"!important"},
656
- BLOCK_COMMENT:e.C_BLOCK_COMMENT_MODE,HEXCOLOR:{scope:"number",
657
- begin:/#(([0-9a-fA-F]{3,4})|(([0-9a-fA-F]{2}){3,4}))\b/},FUNCTION_DISPATCH:{
658
- className:"built_in",begin:/[\w-]+(?=\()/},ATTRIBUTE_SELECTOR_MODE:{
659
- scope:"selector-attr",begin:/\[/,end:/\]/,illegal:"$",
660
- contains:[e.APOS_STRING_MODE,e.QUOTE_STRING_MODE]},CSS_NUMBER_MODE:{
661
- scope:"number",
662
- begin:e.NUMBER_RE+"(%|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)?",
663
- relevance:0},CSS_VARIABLE:{className:"attr",begin:/--[A-Za-z][A-Za-z0-9_-]*/}
664
- }))(a),l=r,s=i,d="@[a-z-]+",c={className:"variable",
665
- begin:"(\\$[a-zA-Z-][a-zA-Z0-9_-]*)\\b"};return{name:"SCSS",case_insensitive:!0,
666
- illegal:"[=/|']",
667
- contains:[a.C_LINE_COMMENT_MODE,a.C_BLOCK_COMMENT_MODE,n.CSS_NUMBER_MODE,{
884
+ match:/\b(as|const|function)\b/,scope:"keyword"},e.UNDERSCORE_TITLE_MODE]},d,g]}
885
+ },grmr_php_template:e=>({name:"PHP template",subLanguage:"xml",contains:[{
886
+ begin:/<\?(php|=)?/,end:/\?>/,subLanguage:"php",contains:[{begin:"/\\*",
887
+ end:"\\*/",skip:!0},{begin:'b"',end:'"',skip:!0},{begin:"b'",end:"'",skip:!0
888
+ },e.inherit(e.APOS_STRING_MODE,{illegal:null,className:null,contains:null,
889
+ skip:!0}),e.inherit(e.QUOTE_STRING_MODE,{illegal:null,className:null,
890
+ contains:null,skip:!0})]}]}),grmr_plaintext:e=>({name:"Plain text",
891
+ aliases:["text","txt"],disableAutodetect:!0}),grmr_python:e=>{
892
+ const n=e.regex,t=/[\p{XID_Start}_]\p{XID_Continue}*/u,a=["and","as","assert","async","await","break","case","class","continue","def","del","elif","else","except","finally","for","from","global","if","import","in","is","lambda","match","nonlocal|10","not","or","pass","raise","return","try","while","with","yield"],i={
893
+ $pattern:/[A-Za-z]\w+|__\w+__/,keyword:a,
894
+ 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"],
895
+ literal:["__debug__","Ellipsis","False","None","NotImplemented","True"],
896
+ type:["Any","Callable","Coroutine","Dict","List","Literal","Generic","Optional","Sequence","Set","Tuple","Type","Union"]
897
+ },r={className:"meta",begin:/^(>>>|\.\.\.) /},s={className:"subst",begin:/\{/,
898
+ end:/\}/,keywords:i,illegal:/#/},o={begin:/\{\{/,relevance:0},l={
899
+ className:"string",contains:[e.BACKSLASH_ESCAPE],variants:[{
900
+ begin:/([uU]|[bB]|[rR]|[bB][rR]|[rR][bB])?'''/,end:/'''/,
901
+ contains:[e.BACKSLASH_ESCAPE,r],relevance:10},{
902
+ begin:/([uU]|[bB]|[rR]|[bB][rR]|[rR][bB])?"""/,end:/"""/,
903
+ contains:[e.BACKSLASH_ESCAPE,r],relevance:10},{
904
+ begin:/([fF][rR]|[rR][fF]|[fF])'''/,end:/'''/,
905
+ contains:[e.BACKSLASH_ESCAPE,r,o,s]},{begin:/([fF][rR]|[rR][fF]|[fF])"""/,
906
+ end:/"""/,contains:[e.BACKSLASH_ESCAPE,r,o,s]},{begin:/([uU]|[rR])'/,end:/'/,
907
+ relevance:10},{begin:/([uU]|[rR])"/,end:/"/,relevance:10},{
908
+ begin:/([bB]|[bB][rR]|[rR][bB])'/,end:/'/},{begin:/([bB]|[bB][rR]|[rR][bB])"/,
909
+ end:/"/},{begin:/([fF][rR]|[rR][fF]|[fF])'/,end:/'/,
910
+ contains:[e.BACKSLASH_ESCAPE,o,s]},{begin:/([fF][rR]|[rR][fF]|[fF])"/,end:/"/,
911
+ contains:[e.BACKSLASH_ESCAPE,o,s]},e.APOS_STRING_MODE,e.QUOTE_STRING_MODE]
912
+ },c="[0-9](_?[0-9])*",d=`(\\b(${c}))?\\.(${c})|\\b(${c})\\.`,g="\\b|"+a.join("|"),u={
913
+ className:"number",relevance:0,variants:[{
914
+ begin:`(\\b(${c})|(${d}))[eE][+-]?(${c})[jJ]?(?=${g})`},{begin:`(${d})[jJ]?`},{
915
+ begin:`\\b([1-9](_?[0-9])*|0+(_?0)*)[lLjJ]?(?=${g})`},{
916
+ begin:`\\b0[bB](_?[01])+[lL]?(?=${g})`},{begin:`\\b0[oO](_?[0-7])+[lL]?(?=${g})`
917
+ },{begin:`\\b0[xX](_?[0-9a-fA-F])+[lL]?(?=${g})`},{begin:`\\b(${c})[jJ](?=${g})`
918
+ }]},b={className:"comment",begin:n.lookahead(/# type:/),end:/$/,keywords:i,
919
+ contains:[{begin:/# type:/},{begin:/#/,end:/\b\B/,endsWithParent:!0}]},m={
920
+ className:"params",variants:[{className:"",begin:/\(\s*\)/,skip:!0},{begin:/\(/,
921
+ end:/\)/,excludeBegin:!0,excludeEnd:!0,keywords:i,
922
+ contains:["self",r,u,l,e.HASH_COMMENT_MODE]}]};return s.contains=[l,u,r],{
923
+ name:"Python",aliases:["py","gyp","ipython"],unicodeRegex:!0,keywords:i,
924
+ illegal:/(<\/|\?)|=>/,contains:[r,u,{scope:"variable.language",match:/\bself\b/
925
+ },{beginKeywords:"if",relevance:0},{match:/\bor\b/,scope:"keyword"
926
+ },l,b,e.HASH_COMMENT_MODE,{match:[/\bdef/,/\s+/,t],scope:{1:"keyword",
927
+ 3:"title.function"},contains:[m]},{variants:[{
928
+ match:[/\bclass/,/\s+/,t,/\s*/,/\(\s*/,t,/\s*\)/]},{match:[/\bclass/,/\s+/,t]}],
929
+ scope:{1:"keyword",3:"title.class",6:"title.class.inherited"}},{
930
+ className:"meta",begin:/^[\t ]*@/,end:/(?=#)|$/,contains:[u,m,l]}]}},
931
+ grmr_python_repl:e=>({aliases:["pycon"],contains:[{className:"meta.prompt",
932
+ starts:{end:/ |$/,starts:{end:"$",subLanguage:"python"}},variants:[{
933
+ begin:/^>>>(?=[ ]|$)/},{begin:/^\.\.\.(?=[ ]|$)/}]}]}),grmr_r:e=>{
934
+ const n=e.regex,t=/(?:(?:[a-zA-Z]|\.[._a-zA-Z])[._a-zA-Z0-9]*)|\.(?!\d)/,a=n.either(/0[xX][0-9a-fA-F]+\.[0-9a-fA-F]*[pP][+-]?\d+i?/,/0[xX][0-9a-fA-F]+(?:[pP][+-]?\d+)?[Li]?/,/(?:\d+(?:\.\d*)?|\.\d+)(?:[eE][+-]?\d+)?[Li]?/),i=/[=!<>:]=|\|\||&&|:::?|<-|<<-|->>|->|\|>|[-+*\/?!$&|:<=>@^~]|\*\*/,r=n.either(/[()]/,/[{}]/,/\[\[/,/[[\]]/,/\\/,/,/)
935
+ ;return{name:"R",keywords:{$pattern:t,
936
+ keyword:"function if in break next repeat else for while",
937
+ literal:"NULL NA TRUE FALSE Inf NaN NA_integer_|10 NA_real_|10 NA_character_|10 NA_complex_|10",
938
+ 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"
939
+ },contains:[e.COMMENT(/#'/,/$/,{contains:[{scope:"doctag",match:/@examples/,
940
+ starts:{end:n.lookahead(n.either(/\n^#'\s*(?=@[a-zA-Z]+)/,/\n^(?!#')/)),
941
+ endsParent:!0}},{scope:"doctag",begin:"@param",end:/$/,contains:[{
942
+ scope:"variable",variants:[{match:t},{match:/`(?:\\.|[^`\\])+`/}],endsParent:!0
943
+ }]},{scope:"doctag",match:/@[a-zA-Z]+/},{scope:"keyword",match:/\\[a-zA-Z]+/}]
944
+ }),e.HASH_COMMENT_MODE,{scope:"string",contains:[e.BACKSLASH_ESCAPE],
945
+ variants:[e.END_SAME_AS_BEGIN({begin:/[rR]"(-*)\(/,end:/\)(-*)"/
946
+ }),e.END_SAME_AS_BEGIN({begin:/[rR]"(-*)\{/,end:/\}(-*)"/
947
+ }),e.END_SAME_AS_BEGIN({begin:/[rR]"(-*)\[/,end:/\](-*)"/
948
+ }),e.END_SAME_AS_BEGIN({begin:/[rR]'(-*)\(/,end:/\)(-*)'/
949
+ }),e.END_SAME_AS_BEGIN({begin:/[rR]'(-*)\{/,end:/\}(-*)'/
950
+ }),e.END_SAME_AS_BEGIN({begin:/[rR]'(-*)\[/,end:/\](-*)'/}),{begin:'"',end:'"',
951
+ relevance:0},{begin:"'",end:"'",relevance:0}]},{relevance:0,variants:[{scope:{
952
+ 1:"operator",2:"number"},match:[i,a]},{scope:{1:"operator",2:"number"},
953
+ match:[/%[^%]*%/,a]},{scope:{1:"punctuation",2:"number"},match:[r,a]},{scope:{
954
+ 2:"number"},match:[/[^a-zA-Z0-9._]|^/,a]}]},{scope:{3:"operator"},
955
+ match:[t,/\s+/,/<-/,/\s+/]},{scope:"operator",relevance:0,variants:[{match:i},{
956
+ match:/%[^%]*%/}]},{scope:"punctuation",relevance:0,match:r},{begin:"`",end:"`",
957
+ contains:[{begin:/\\./}]}]}},grmr_ruby:e=>{
958
+ const n=e.regex,t="([a-zA-Z_]\\w*[!?=]?|[-+~]@|<<|>>|=~|===?|<=>|[<>]=?|\\*\\*|[-/+%^&*~`|]|\\[\\]=?)",a=n.either(/\b([A-Z]+[a-z0-9]+)+/,/\b([A-Z]+[a-z0-9]+)+[A-Z]+/),i=n.concat(a,/(::\w+)*/),r={
959
+ "variable.constant":["__FILE__","__LINE__","__ENCODING__"],
960
+ "variable.language":["self","super"],
961
+ keyword:["alias","and","begin","BEGIN","break","case","class","defined","do","else","elsif","end","END","ensure","for","if","in","module","next","not","or","redo","require","rescue","retry","return","then","undef","unless","until","when","while","yield","include","extend","prepend","public","private","protected","raise","throw"],
962
+ built_in:["proc","lambda","attr_accessor","attr_reader","attr_writer","define_method","private_constant","module_function"],
963
+ literal:["true","false","nil"]},s={className:"doctag",begin:"@[A-Za-z]+"},o={
964
+ begin:"#<",end:">"},l=[e.COMMENT("#","$",{contains:[s]
965
+ }),e.COMMENT("^=begin","^=end",{contains:[s],relevance:10
966
+ }),e.COMMENT("^__END__",e.MATCH_NOTHING_RE)],c={className:"subst",begin:/#\{/,
967
+ end:/\}/,keywords:r},d={className:"string",contains:[e.BACKSLASH_ESCAPE,c],
968
+ variants:[{begin:/'/,end:/'/},{begin:/"/,end:/"/},{begin:/`/,end:/`/},{
969
+ begin:/%[qQwWx]?\(/,end:/\)/},{begin:/%[qQwWx]?\[/,end:/\]/},{
970
+ begin:/%[qQwWx]?\{/,end:/\}/},{begin:/%[qQwWx]?</,end:/>/},{begin:/%[qQwWx]?\//,
971
+ end:/\//},{begin:/%[qQwWx]?%/,end:/%/},{begin:/%[qQwWx]?-/,end:/-/},{
972
+ begin:/%[qQwWx]?\|/,end:/\|/},{begin:/\B\?(\\\d{1,3})/},{
973
+ begin:/\B\?(\\x[A-Fa-f0-9]{1,2})/},{begin:/\B\?(\\u\{?[A-Fa-f0-9]{1,6}\}?)/},{
974
+ begin:/\B\?(\\M-\\C-|\\M-\\c|\\c\\M-|\\M-|\\C-\\M-)[\x20-\x7e]/},{
975
+ begin:/\B\?\\(c|C-)[\x20-\x7e]/},{begin:/\B\?\\?\S/},{
976
+ begin:n.concat(/<<[-~]?'?/,n.lookahead(/(\w+)(?=\W)[^\n]*\n(?:[^\n]*\n)*?\s*\1\b/)),
977
+ contains:[e.END_SAME_AS_BEGIN({begin:/(\w+)/,end:/(\w+)/,
978
+ contains:[e.BACKSLASH_ESCAPE,c]})]}]},g="[0-9](_?[0-9])*",u={className:"number",
979
+ relevance:0,variants:[{
980
+ begin:`\\b([1-9](_?[0-9])*|0)(\\.(${g}))?([eE][+-]?(${g})|r)?i?\\b`},{
981
+ begin:"\\b0[dD][0-9](_?[0-9])*r?i?\\b"},{begin:"\\b0[bB][0-1](_?[0-1])*r?i?\\b"
982
+ },{begin:"\\b0[oO][0-7](_?[0-7])*r?i?\\b"},{
983
+ begin:"\\b0[xX][0-9a-fA-F](_?[0-9a-fA-F])*r?i?\\b"},{
984
+ begin:"\\b0(_?[0-7])+r?i?\\b"}]},b={variants:[{match:/\(\)/},{
985
+ className:"params",begin:/\(/,end:/(?=\))/,excludeBegin:!0,endsParent:!0,
986
+ keywords:r}]},m=[d,{variants:[{match:[/class\s+/,i,/\s+<\s+/,i]},{
987
+ match:[/\b(class|module)\s+/,i]}],scope:{2:"title.class",
988
+ 4:"title.class.inherited"},keywords:r},{match:[/(include|extend)\s+/,i],scope:{
989
+ 2:"title.class"},keywords:r},{relevance:0,match:[i,/\.new[. (]/],scope:{
990
+ 1:"title.class"}},{relevance:0,match:/\b[A-Z][A-Z_0-9]+\b/,
991
+ className:"variable.constant"},{relevance:0,match:a,scope:"title.class"},{
992
+ match:[/def/,/\s+/,t],scope:{1:"keyword",3:"title.function"},contains:[b]},{
993
+ begin:e.IDENT_RE+"::"},{className:"symbol",
994
+ begin:e.UNDERSCORE_IDENT_RE+"(!|\\?)?:",relevance:0},{className:"symbol",
995
+ begin:":(?!\\s)",contains:[d,{begin:t}],relevance:0},u,{className:"variable",
996
+ begin:"(\\$\\W)|((\\$|@@?)(\\w+))(?=[^@$?])(?![A-Za-z])(?![@$?'])"},{
997
+ className:"params",begin:/\|(?!=)/,end:/\|/,excludeBegin:!0,excludeEnd:!0,
998
+ relevance:0,keywords:r},{begin:"("+e.RE_STARTERS_RE+"|unless)\\s*",
999
+ keywords:"unless",contains:[{className:"regexp",contains:[e.BACKSLASH_ESCAPE,c],
1000
+ illegal:/\n/,variants:[{begin:"/",end:"/[a-z]*"},{begin:/%r\{/,end:/\}[a-z]*/},{
1001
+ begin:"%r\\(",end:"\\)[a-z]*"},{begin:"%r!",end:"![a-z]*"},{begin:"%r\\[",
1002
+ end:"\\][a-z]*"}]}].concat(o,l),relevance:0}].concat(o,l)
1003
+ ;c.contains=m,b.contains=m;const p=[{begin:/^\s*=>/,starts:{end:"$",contains:m}
1004
+ },{className:"meta.prompt",
1005
+ begin:"^([>?]>|[\\w#]+\\(\\w+\\):\\d+:\\d+[>*]|(\\w+-)?\\d+\\.\\d+\\.\\d+(p\\d+)?[^\\d][^>]+>)(?=[ ])",
1006
+ starts:{end:"$",keywords:r,contains:m}}];return l.unshift(o),{name:"Ruby",
1007
+ aliases:["rb","gemspec","podspec","thor","irb"],keywords:r,illegal:/\/\*/,
1008
+ contains:[e.SHEBANG({binary:"ruby"})].concat(p).concat(l).concat(m)}},
1009
+ grmr_rust:e=>{
1010
+ const n=e.regex,t=/(r#)?/,a=n.concat(t,e.UNDERSCORE_IDENT_RE),i=n.concat(t,e.IDENT_RE),r={
1011
+ className:"title.function.invoke",relevance:0,
1012
+ begin:n.concat(/\b/,/(?!let|for|while|if|else|match\b)/,i,n.lookahead(/\s*\(/))
1013
+ },s="([ui](8|16|32|64|128|size)|f(32|64))?",o=["drop ","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!","eprintln!","panic!","file!","format!","format_args!","include_bytes!","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!"],l=["i8","i16","i32","i64","i128","isize","u8","u16","u32","u64","u128","usize","f32","f64","str","char","bool","Box","Option","Result","String","Vec"]
1014
+ ;return{name:"Rust",aliases:["rs"],keywords:{$pattern:e.IDENT_RE+"!?",type:l,
1015
+ 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","union","unsafe","unsized","use","virtual","where","while","yield"],
1016
+ literal:["true","false","Some","None","Ok","Err"],built_in:o},illegal:"</",
1017
+ contains:[e.C_LINE_COMMENT_MODE,e.COMMENT("/\\*","\\*/",{contains:["self"]
1018
+ }),e.inherit(e.QUOTE_STRING_MODE,{begin:/b?"/,illegal:null}),{
1019
+ className:"symbol",begin:/'[a-zA-Z_][a-zA-Z0-9_]*(?!')/},{scope:"string",
1020
+ variants:[{begin:/b?r(#*)"(.|\n)*?"\1(?!#)/},{begin:/b?'/,end:/'/,contains:[{
1021
+ scope:"char.escape",match:/\\('|\w|x\w{2}|u\w{4}|U\w{8})/}]}]},{
1022
+ className:"number",variants:[{begin:"\\b0b([01_]+)"+s},{begin:"\\b0o([0-7_]+)"+s
1023
+ },{begin:"\\b0x([A-Fa-f0-9_]+)"+s},{
1024
+ begin:"\\b(\\d[\\d_]*(\\.[0-9_]+)?([eE][+-]?[0-9_]+)?)"+s}],relevance:0},{
1025
+ begin:[/fn/,/\s+/,a],className:{1:"keyword",3:"title.function"}},{
1026
+ className:"meta",begin:"#!?\\[",end:"\\]",contains:[{className:"string",
1027
+ begin:/"/,end:/"/,contains:[e.BACKSLASH_ESCAPE]}]},{
1028
+ begin:[/let/,/\s+/,/(?:mut\s+)?/,a],className:{1:"keyword",3:"keyword",
1029
+ 4:"variable"}},{begin:[/for/,/\s+/,a,/\s+/,/in/],className:{1:"keyword",
1030
+ 3:"variable",5:"keyword"}},{begin:[/type/,/\s+/,a],className:{1:"keyword",
1031
+ 3:"title.class"}},{begin:[/(?:trait|enum|struct|union|impl|for)/,/\s+/,a],
1032
+ className:{1:"keyword",3:"title.class"}},{begin:e.IDENT_RE+"::",keywords:{
1033
+ keyword:"Self",built_in:o,type:l}},{className:"punctuation",begin:"->"},r]}},
1034
+ grmr_scss:e=>{const n=te(e),t=se,a=re,i="@[a-z-]+",r={className:"variable",
1035
+ begin:"(\\$[a-zA-Z-][a-zA-Z0-9_-]*)\\b",relevance:0};return{name:"SCSS",
1036
+ case_insensitive:!0,illegal:"[=/|']",
1037
+ contains:[e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,n.CSS_NUMBER_MODE,{
668
1038
  className:"selector-id",begin:"#[A-Za-z0-9_-]+",relevance:0},{
669
1039
  className:"selector-class",begin:"\\.[A-Za-z0-9_-]+",relevance:0
670
1040
  },n.ATTRIBUTE_SELECTOR_MODE,{className:"selector-tag",
671
- begin:"\\b("+e.join("|")+")\\b",relevance:0},{className:"selector-pseudo",
672
- begin:":("+s.join("|")+")"},{className:"selector-pseudo",
673
- begin:":(:)?("+l.join("|")+")"},c,{begin:/\(/,end:/\)/,
1041
+ begin:"\\b("+ae.join("|")+")\\b",relevance:0},{className:"selector-pseudo",
1042
+ begin:":("+a.join("|")+")"},{className:"selector-pseudo",
1043
+ begin:":(:)?("+t.join("|")+")"},r,{begin:/\(/,end:/\)/,
674
1044
  contains:[n.CSS_NUMBER_MODE]},n.CSS_VARIABLE,{className:"attribute",
675
- begin:"\\b("+o.join("|")+")\\b"},{
1045
+ begin:"\\b("+oe.join("|")+")\\b"},{
676
1046
  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"
677
- },{begin:/:/,end:/[;}{]/,
678
- contains:[n.BLOCK_COMMENT,c,n.HEXCOLOR,n.CSS_NUMBER_MODE,a.QUOTE_STRING_MODE,a.APOS_STRING_MODE,n.IMPORTANT]
679
- },{begin:"@(page|font-face)",keywords:{$pattern:d,keyword:"@page @font-face"}},{
1047
+ },{begin:/:/,end:/[;}{]/,relevance:0,
1048
+ contains:[n.BLOCK_COMMENT,r,n.HEXCOLOR,n.CSS_NUMBER_MODE,e.QUOTE_STRING_MODE,e.APOS_STRING_MODE,n.IMPORTANT,n.FUNCTION_DISPATCH]
1049
+ },{begin:"@(page|font-face)",keywords:{$pattern:i,keyword:"@page @font-face"}},{
680
1050
  begin:"@",end:"[{;]",returnBegin:!0,keywords:{$pattern:/[a-z-]+/,
681
- keyword:"and or not only",attribute:t.join(" ")},contains:[{begin:d,
1051
+ keyword:"and or not only",attribute:ie.join(" ")},contains:[{begin:i,
682
1052
  className:"keyword"},{begin:/[a-z-]+(?=:)/,className:"attribute"
683
- },c,a.QUOTE_STRING_MODE,a.APOS_STRING_MODE,n.HEXCOLOR,n.CSS_NUMBER_MODE]
684
- },n.FUNCTION_DISPATCH]}}})();hljs.registerLanguage("scss",e)})();/*! `latex` grammar compiled for Highlight.js 11.4.0 */
685
- (()=>{var e=(()=>{"use strict";return e=>{const n=[{begin:/\^{6}[0-9a-f]{6}/},{
686
- begin:/\^{5}[0-9a-f]{5}/},{begin:/\^{4}[0-9a-f]{4}/},{begin:/\^{3}[0-9a-f]{3}/
687
- },{begin:/\^{2}[0-9a-f]{2}/},{begin:/\^{2}[\u0000-\u007f]/}],a=[{
688
- className:"keyword",begin:/\\/,relevance:0,contains:[{endsParent:!0,
689
- begin:e.regex.either(...["(?:NeedsTeXFormat|RequirePackage|GetIdInfo)","Provides(?:Expl)?(?:Package|Class|File)","(?:DeclareOption|ProcessOptions)","(?:documentclass|usepackage|input|include)","makeat(?:letter|other)","ExplSyntax(?:On|Off)","(?:new|renew|provide)?command","(?:re)newenvironment","(?:New|Renew|Provide|Declare)(?:Expandable)?DocumentCommand","(?:New|Renew|Provide|Declare)DocumentEnvironment","(?:(?:e|g|x)?def|let)","(?:begin|end)","(?:part|chapter|(?:sub){0,2}section|(?:sub)?paragraph)","caption","(?:label|(?:eq|page|name)?ref|(?:paren|foot|super)?cite)","(?:alpha|beta|[Gg]amma|[Dd]elta|(?:var)?epsilon|zeta|eta|[Tt]heta|vartheta)","(?:iota|(?:var)?kappa|[Ll]ambda|mu|nu|[Xx]i|[Pp]i|varpi|(?:var)rho)","(?:[Ss]igma|varsigma|tau|[Uu]psilon|[Pp]hi|varphi|chi|[Pp]si|[Oo]mega)","(?:frac|sum|prod|lim|infty|times|sqrt|leq|geq|left|right|middle|[bB]igg?)","(?:[lr]angle|q?quad|[lcvdi]?dots|d?dot|hat|tilde|bar)"].map((e=>e+"(?![a-zA-Z@:_])")))
690
- },{endsParent:!0,
691
- begin:RegExp(["(?:__)?[a-zA-Z]{2,}_[a-zA-Z](?:_?[a-zA-Z])+:[a-zA-Z]*","[lgc]__?[a-zA-Z](?:_?[a-zA-Z])*_[a-zA-Z]{2,}","[qs]__?[a-zA-Z](?:_?[a-zA-Z])+","use(?:_i)?:[a-zA-Z]*","(?:else|fi|or):","(?:if|cs|exp):w","(?:hbox|vbox):n","::[a-zA-Z]_unbraced","::[a-zA-Z:]"].map((e=>e+"(?![a-zA-Z:_])")).join("|"))
692
- },{endsParent:!0,variants:n},{endsParent:!0,relevance:0,variants:[{
693
- begin:/[a-zA-Z@]+/},{begin:/[^a-zA-Z@]?/}]}]},{className:"params",relevance:0,
694
- begin:/#+\d?/},{variants:n},{className:"built_in",relevance:0,begin:/[$&^_]/},{
695
- className:"meta",begin:/% ?!(T[eE]X|tex|BIB|bib)/,end:"$",relevance:10
696
- },e.COMMENT("%","$",{relevance:0})],i={begin:/\{/,end:/\}/,relevance:0,
697
- contains:["self",...a]},t=e.inherit(i,{relevance:0,endsParent:!0,
698
- contains:[i,...a]}),r={begin:/\[/,end:/\]/,endsParent:!0,relevance:0,
699
- contains:[i,...a]},s={begin:/\s+/,relevance:0},c=[t],l=[r],o=(e,n)=>({
700
- contains:[s],starts:{relevance:0,contains:e,starts:n}}),d=(e,n)=>({
701
- begin:"\\\\"+e+"(?![a-zA-Z@:_])",keywords:{$pattern:/\\[a-zA-Z]+/,keyword:"\\"+e
702
- },relevance:0,contains:[s],starts:n}),g=(n,a)=>e.inherit({
703
- begin:"\\\\begin(?=[ \t]*(\\r?\\n[ \t]*)?\\{"+n+"\\})",keywords:{
704
- $pattern:/\\[a-zA-Z]+/,keyword:"\\begin"},relevance:0
705
- },o(c,a)),m=(n="string")=>e.END_SAME_AS_BEGIN({className:n,begin:/(.|\r?\n)/,
706
- end:/(.|\r?\n)/,excludeBegin:!0,excludeEnd:!0,endsParent:!0}),b=e=>({
707
- className:"string",end:"(?=\\\\end\\{"+e+"\\})"}),p=(e="string")=>({relevance:0,
708
- begin:/\{/,starts:{endsParent:!0,contains:[{className:e,end:/(?=\})/,
709
- endsParent:!0,contains:[{begin:/\{/,end:/\}/,relevance:0,contains:["self"]}]}]}
710
- });return{name:"LaTeX",aliases:["tex"],
711
- contains:[...["verb","lstinline"].map((e=>d(e,{contains:[m()]}))),d("mint",o(c,{
712
- contains:[m()]})),d("mintinline",o(c,{contains:[p(),m()]})),d("url",{
713
- contains:[p("link"),p("link")]}),d("hyperref",{contains:[p("link")]
714
- }),d("href",o(l,{contains:[p("link")]
715
- })),...[].concat(...["","\\*"].map((e=>[g("verbatim"+e,b("verbatim"+e)),g("filecontents"+e,o(c,b("filecontents"+e))),...["","B","L"].map((n=>g(n+"Verbatim"+e,o(l,b(n+"Verbatim"+e)))))]))),g("minted",o(l,o(c,b("minted")))),...a]
716
- }}})();hljs.registerLanguage("latex",e)})();/*! `vbnet` grammar compiled for Highlight.js 11.4.0 */
717
- (()=>{var e=(()=>{"use strict";return e=>{
718
- const n=e.regex,t=/\d{1,2}\/\d{1,2}\/\d{4}/,a=/\d{4}-\d{1,2}-\d{1,2}/,i=/(\d|1[012])(:\d+){0,2} *(AM|PM)/,s=/\d{1,2}(:\d{1,2}){1,2}/,r={
1053
+ },r,e.QUOTE_STRING_MODE,e.APOS_STRING_MODE,n.HEXCOLOR,n.CSS_NUMBER_MODE]
1054
+ },n.FUNCTION_DISPATCH]}},grmr_shell:e=>({name:"Shell Session",
1055
+ aliases:["console","shellsession"],contains:[{className:"meta.prompt",
1056
+ begin:/^\s{0,3}[/~\w\d[\]()@-]*[>%$#][ ]?/,starts:{end:/[^\\](?=\s*$)/,
1057
+ subLanguage:"bash"}}]}),grmr_sql:e=>{
1058
+ const n=e.regex,t=e.COMMENT("--","$"),a=["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"],i=a,r=["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=>!a.includes(e))),s={
1059
+ match:n.concat(/\b/,n.either(...i),/\s*\(/),relevance:0,keywords:{built_in:i}}
1060
+ ;function o(e){
1061
+ return n.concat(/\b/,n.either(...e.map((e=>e.replace(/\s+/,"\\s+")))),/\b/)}
1062
+ const l={scope:"keyword",
1063
+ match: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"]),
1064
+ relevance:0};return{name:"SQL",case_insensitive:!0,illegal:/[{}]|<\//,keywords:{
1065
+ $pattern:/\b[\w\.]+/,keyword:((e,{exceptions:n,when:t}={})=>{const a=t
1066
+ ;return n=n||[],e.map((e=>e.match(/\|\d+$/)||n.includes(e)?e:a(e)?e+"|0":e))
1067
+ })(r,{when:e=>e.length<3}),literal:["true","false","unknown"],
1068
+ type:["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"],
1069
+ 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"]
1070
+ },contains:[{scope:"type",
1071
+ match:o(["double precision","large object","with timezone","without timezone"])
1072
+ },l,s,{scope:"variable",match:/@[a-z0-9][a-z0-9_]*/},{scope:"string",variants:[{
1073
+ begin:/'/,end:/'/,contains:[{match:/''/}]}]},{begin:/"/,end:/"/,contains:[{
1074
+ match:/""/}]},e.C_NUMBER_MODE,e.C_BLOCK_COMMENT_MODE,t,{scope:"operator",
1075
+ match:/[-+*/=%^~]|&&?|\|\|?|!=?|<(?:=>?|<|>)?|>[>=]?/,relevance:0}]}},
1076
+ grmr_swift:e=>{const n={match:/\s+/,relevance:0},t=e.COMMENT("/\\*","\\*/",{
1077
+ contains:["self"]}),a=[e.C_LINE_COMMENT_MODE,t],i={match:[/\./,m(...ke,...xe)],
1078
+ className:{2:"keyword"}},r={match:b(/\./,m(...Me)),relevance:0
1079
+ },s=Me.filter((e=>"string"==typeof e)).concat(["_|0"]),o={variants:[{
1080
+ className:"keyword",
1081
+ match:m(...Me.filter((e=>"string"!=typeof e)).concat(Oe).map(Ne),...xe)}]},l={
1082
+ $pattern:m(/\b\w+/,/#\w+/),keyword:s.concat(Ce),literal:Ae},c=[i,r,o],g=[{
1083
+ match:b(/\./,m(...Te)),relevance:0},{className:"built_in",
1084
+ match:b(/\b/,m(...Te),/(?=\()/)}],u={match:/->/,relevance:0},p=[u,{
1085
+ className:"operator",relevance:0,variants:[{match:Ie},{match:`\\.(\\.|${De})+`}]
1086
+ }],_="([0-9]_*)+",h="([0-9a-fA-F]_*)+",f={className:"number",relevance:0,
1087
+ variants:[{match:`\\b(${_})(\\.(${_}))?([eE][+-]?(${_}))?\\b`},{
1088
+ match:`\\b0x(${h})(\\.(${h}))?([pP][+-]?(${_}))?\\b`},{match:/\b0o([0-7]_*)+\b/
1089
+ },{match:/\b0b([01]_*)+\b/}]},E=(e="")=>({className:"subst",variants:[{
1090
+ match:b(/\\/,e,/[0\\tnr"']/)},{match:b(/\\/,e,/u\{[0-9a-fA-F]{1,8}\}/)}]
1091
+ }),y=(e="")=>({className:"subst",match:b(/\\/,e,/[\t ]*(?:[\r\n]|\r\n)/)
1092
+ }),w=(e="")=>({className:"subst",label:"interpol",begin:b(/\\/,e,/\(/),end:/\)/
1093
+ }),v=(e="")=>({begin:b(e,/"""/),end:b(/"""/,e),contains:[E(e),y(e),w(e)]
1094
+ }),N=(e="")=>({begin:b(e,/"/),end:b(/"/,e),contains:[E(e),w(e)]}),k={
1095
+ className:"string",
1096
+ variants:[v(),v("#"),v("##"),v("###"),N(),N("#"),N("##"),N("###")]
1097
+ },x=[e.BACKSLASH_ESCAPE,{begin:/\[/,end:/\]/,relevance:0,
1098
+ contains:[e.BACKSLASH_ESCAPE]}],O={begin:/\/[^\s](?=[^/\n]*\/)/,end:/\//,
1099
+ contains:x},M=e=>{const n=b(e,/\//),t=b(/\//,e);return{begin:n,end:t,
1100
+ contains:[...x,{scope:"comment",begin:`#(?!.*${t})`,end:/$/}]}},A={
1101
+ scope:"regexp",variants:[M("###"),M("##"),M("#"),O]},S={match:b(/`/,$e,/`/)
1102
+ },C=[S,{className:"variable",match:/\$\d+/},{className:"variable",
1103
+ match:`\\$${Be}+`}],T=[{match:/(@|#(un)?)available/,scope:"keyword",starts:{
1104
+ contains:[{begin:/\(/,end:/\)/,keywords:je,contains:[...p,f,k]}]}},{
1105
+ scope:"keyword",match:b(/@/,m(...ze),d(m(/\(/,/\s+/)))},{scope:"meta",
1106
+ match:b(/@/,$e)}],R={match:d(/\b[A-Z]/),relevance:0,contains:[{className:"type",
1107
+ match:b(/(AV|CA|CF|CG|CI|CL|CM|CN|CT|MK|MP|MTK|MTL|NS|SCN|SK|UI|WK|XC)/,Be,"+")
1108
+ },{className:"type",match:Fe,relevance:0},{match:/[?!]+/,relevance:0},{
1109
+ match:/\.\.\./,relevance:0},{match:b(/\s+&\s+/,d(Fe)),relevance:0}]},D={
1110
+ begin:/</,end:/>/,keywords:l,contains:[...a,...c,...T,u,R]};R.contains.push(D)
1111
+ ;const I={begin:/\(/,end:/\)/,relevance:0,keywords:l,contains:["self",{
1112
+ match:b($e,/\s*:/),keywords:"_|0",relevance:0
1113
+ },...a,A,...c,...g,...p,f,k,...C,...T,R]},L={begin:/</,end:/>/,
1114
+ keywords:"repeat each",contains:[...a,R]},B={begin:/\(/,end:/\)/,keywords:l,
1115
+ contains:[{begin:m(d(b($e,/\s*:/)),d(b($e,/\s+/,$e,/\s*:/))),end:/:/,
1116
+ relevance:0,contains:[{className:"keyword",match:/\b_\b/},{className:"params",
1117
+ match:$e}]},...a,...c,...p,f,k,...T,R,I],endsParent:!0,illegal:/["']/},$={
1118
+ match:[/(func|macro)/,/\s+/,m(S.match,$e,Ie)],className:{1:"keyword",
1119
+ 3:"title.function"},contains:[L,B,n],illegal:[/\[/,/%/]},F={
1120
+ match:[/\b(?:subscript|init[?!]?)/,/\s*(?=[<(])/],className:{1:"keyword"},
1121
+ contains:[L,B,n],illegal:/\[|%/},z={match:[/operator/,/\s+/,Ie],className:{
1122
+ 1:"keyword",3:"title"}},j={begin:[/precedencegroup/,/\s+/,Fe],className:{
1123
+ 1:"keyword",3:"title"},contains:[R],keywords:[...Se,...Ae],end:/}/},U={
1124
+ begin:[/(struct|protocol|class|extension|enum|actor)/,/\s+/,$e,/\s*/],
1125
+ beginScope:{1:"keyword",3:"title.class"},keywords:l,contains:[L,...c,{begin:/:/,
1126
+ end:/\{/,keywords:l,contains:[{scope:"title.class.inherited",match:Fe},...c],
1127
+ relevance:0}]};for(const e of k.variants){
1128
+ const n=e.contains.find((e=>"interpol"===e.label));n.keywords=l
1129
+ ;const t=[...c,...g,...p,f,k,...C];n.contains=[...t,{begin:/\(/,end:/\)/,
1130
+ contains:["self",...t]}]}return{name:"Swift",keywords:l,contains:[...a,$,F,{
1131
+ match:[/class\b/,/\s+/,/func\b/,/\s+/,/\b[A-Za-z_][A-Za-z0-9_]*\b/],scope:{
1132
+ 1:"keyword",3:"keyword",5:"title.function"}},{match:[/class\b/,/\s+/,/var\b/],
1133
+ scope:{1:"keyword",3:"keyword"}},U,z,j,{beginKeywords:"import",end:/$/,
1134
+ contains:[...a],relevance:0},A,...c,...g,...p,f,k,...C,...T,R,I]}},
1135
+ grmr_typescript:e=>{
1136
+ const n=e.regex,t=ve(e),a=me,i=["any","void","number","boolean","string","object","never","symbol","bigint","unknown"],r={
1137
+ begin:[/namespace/,/\s+/,e.IDENT_RE],beginScope:{1:"keyword",3:"title.class"}
1138
+ },s={beginKeywords:"interface",end:/\{/,excludeEnd:!0,keywords:{
1139
+ keyword:"interface extends",built_in:i},contains:[t.exports.CLASS_REFERENCE]
1140
+ },o={$pattern:me,
1141
+ keyword:pe.concat(["type","interface","public","private","protected","implements","declare","abstract","readonly","enum","override","satisfies"]),
1142
+ literal:_e,built_in:we.concat(i),"variable.language":ye},l={className:"meta",
1143
+ begin:"@"+a},c=(e,n,t)=>{const a=e.contains.findIndex((e=>e.label===n))
1144
+ ;if(-1===a)throw Error("can not find mode to replace");e.contains.splice(a,1,t)}
1145
+ ;Object.assign(t.keywords,o),t.exports.PARAMS_CONTAINS.push(l)
1146
+ ;const d=t.contains.find((e=>"attr"===e.scope)),g=Object.assign({},d,{
1147
+ match:n.concat(a,n.lookahead(/\s*\?:/))})
1148
+ ;return t.exports.PARAMS_CONTAINS.push([t.exports.CLASS_REFERENCE,d,g]),
1149
+ t.contains=t.contains.concat([l,r,s,g]),
1150
+ c(t,"shebang",e.SHEBANG()),c(t,"use_strict",{className:"meta",relevance:10,
1151
+ begin:/^\s*['"]use strict['"]/
1152
+ }),t.contains.find((e=>"func.def"===e.label)).relevance=0,Object.assign(t,{
1153
+ name:"TypeScript",aliases:["ts","tsx","mts","cts"]}),t},grmr_vbnet:e=>{
1154
+ const n=e.regex,t=/\d{1,2}\/\d{1,2}\/\d{4}/,a=/\d{4}-\d{1,2}-\d{1,2}/,i=/(\d|1[012])(:\d+){0,2} *(AM|PM)/,r=/\d{1,2}(:\d{1,2}){1,2}/,s={
719
1155
  className:"literal",variants:[{begin:n.concat(/# */,n.either(a,t),/ *#/)},{
720
- begin:n.concat(/# */,s,/ *#/)},{begin:n.concat(/# */,i,/ *#/)},{
721
- begin:n.concat(/# */,n.either(a,t),/ +/,n.either(i,s),/ *#/)}]
722
- },l=e.COMMENT(/'''/,/$/,{contains:[{className:"doctag",begin:/<\/?/,end:/>/}]
723
- }),o=e.COMMENT(null,/$/,{variants:[{begin:/'/},{begin:/([\t ]|^)REM(?=\s)/}]})
1156
+ begin:n.concat(/# */,r,/ *#/)},{begin:n.concat(/# */,i,/ *#/)},{
1157
+ begin:n.concat(/# */,n.either(a,t),/ +/,n.either(i,r),/ *#/)}]
1158
+ },o=e.COMMENT(/'''/,/$/,{contains:[{className:"doctag",begin:/<\/?/,end:/>/}]
1159
+ }),l=e.COMMENT(null,/$/,{variants:[{begin:/'/},{begin:/([\t ]|^)REM(?=\s)/}]})
724
1160
  ;return{name:"Visual Basic .NET",aliases:["vb"],case_insensitive:!0,
725
1161
  classNameAliases:{label:"symbol"},keywords:{
726
1162
  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",
@@ -729,673 +1165,80 @@ type:"boolean byte char date decimal double integer long object sbyte short sing
729
1165
  literal:"true false nothing"},
730
1166
  illegal:"//|\\{|\\}|endif|gosub|variant|wend|^\\$ ",contains:[{
731
1167
  className:"string",begin:/"(""|[^/n])"C\b/},{className:"string",begin:/"/,
732
- end:/"/,illegal:/\n/,contains:[{begin:/""/}]},r,{className:"number",relevance:0,
1168
+ end:/"/,illegal:/\n/,contains:[{begin:/""/}]},s,{className:"number",relevance:0,
733
1169
  variants:[{begin:/\b\d[\d_]*((\.[\d_]+(E[+-]?[\d_]+)?)|(E[+-]?[\d_]+))[RFD@!#]?/
734
1170
  },{begin:/\b\d[\d_]*((U?[SIL])|[%&])?/},{begin:/&H[\dA-F_]+((U?[SIL])|[%&])?/},{
735
1171
  begin:/&O[0-7_]+((U?[SIL])|[%&])?/},{begin:/&B[01_]+((U?[SIL])|[%&])?/}]},{
736
- className:"label",begin:/^\w+:/},l,o,{className:"meta",
1172
+ className:"label",begin:/^\w+:/},o,l,{className:"meta",
737
1173
  begin:/[\t ]*#(const|disable|else|elseif|enable|end|externalsource|if|region)\b/,
738
1174
  end:/$/,keywords:{
739
1175
  keyword:"const disable else elseif enable end externalsource if region then"},
740
- contains:[o]}]}}})();hljs.registerLanguage("vbnet",e)})();/*! `diff` grammar compiled for Highlight.js 11.4.0 */
741
- (()=>{var e=(()=>{"use strict";return e=>{const a=e.regex;return{name:"Diff",
742
- aliases:["patch"],contains:[{className:"meta",relevance:10,
743
- match:a.either(/^@@ +-\d+,\d+ +\+\d+,\d+ +@@/,/^\*\*\* +\d+,\d+ +\*\*\*\*$/,/^--- +\d+,\d+ +----$/)
744
- },{className:"comment",variants:[{
745
- begin:a.either(/Index: /,/^index/,/={3,}/,/^-{3}/,/^\*{3} /,/^\+{3}/,/^diff --git/),
746
- end:/$/},{match:/^\*{15}$/}]},{className:"addition",begin:/^\+/,end:/$/},{
747
- className:"deletion",begin:/^-/,end:/$/},{className:"addition",begin:/^!/,
748
- end:/$/}]}}})();hljs.registerLanguage("diff",e)})();/*! `makefile` grammar compiled for Highlight.js 11.4.0 */
749
- (()=>{var e=(()=>{"use strict";return e=>{const i={className:"variable",
750
- variants:[{begin:"\\$\\("+e.UNDERSCORE_IDENT_RE+"\\)",
751
- contains:[e.BACKSLASH_ESCAPE]},{begin:/\$[@%<?\^\+\*]/}]},a={className:"string",
752
- begin:/"/,end:/"/,contains:[e.BACKSLASH_ESCAPE,i]},n={className:"variable",
753
- begin:/\$\([\w-]+\s/,end:/\)/,keywords:{
754
- built_in:"subst patsubst strip findstring filter filter-out sort word wordlist firstword lastword dir notdir suffix basename addsuffix addprefix join wildcard realpath abspath error warning shell origin flavor foreach if or and call eval file value"
755
- },contains:[i]},s={begin:"^"+e.UNDERSCORE_IDENT_RE+"\\s*(?=[:+?]?=)"},r={
756
- className:"section",begin:/^[^\s]+:/,end:/$/,contains:[i]};return{
757
- name:"Makefile",aliases:["mk","mak","make"],keywords:{$pattern:/[\w-]+/,
758
- keyword:"define endef undefine ifdef ifndef ifeq ifneq else endif include -include sinclude override export unexport private vpath"
759
- },contains:[e.HASH_COMMENT_MODE,i,a,n,s,{className:"meta",begin:/^\.PHONY:/,
760
- end:/$/,keywords:{$pattern:/[\.\w]+/,keyword:".PHONY"}},r]}}})()
761
- ;hljs.registerLanguage("makefile",e)})();/*! `lua` grammar compiled for Highlight.js 11.4.0 */
762
- (()=>{var e=(()=>{"use strict";return e=>{const t="\\[=*\\[",a="\\]=*\\]",n={
763
- begin:t,end:a,contains:["self"]
764
- },o=[e.COMMENT("--(?!\\[=*\\[)","$"),e.COMMENT("--\\[=*\\[",a,{contains:[n],
765
- relevance:10})];return{name:"Lua",keywords:{$pattern:e.UNDERSCORE_IDENT_RE,
766
- literal:"true false nil",
767
- keyword:"and break do else elseif end for goto if in local not or repeat return then until while",
768
- 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"
769
- },contains:o.concat([{className:"function",beginKeywords:"function",end:"\\)",
770
- contains:[e.inherit(e.TITLE_MODE,{
771
- begin:"([_a-zA-Z]\\w*\\.)*([_a-zA-Z]\\w*:)?[_a-zA-Z]\\w*"}),{className:"params",
772
- begin:"\\(",endsWithParent:!0,contains:o}].concat(o)
773
- },e.C_NUMBER_MODE,e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,{className:"string",
774
- begin:t,end:a,contains:[n],relevance:5}])}}})();hljs.registerLanguage("lua",e)
775
- })();/*! `csharp` grammar compiled for Highlight.js 11.4.0 */
776
- (()=>{var e=(()=>{"use strict";return e=>{const n={
777
- keyword:["abstract","as","base","break","case","catch","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"]),
778
- built_in:["bool","byte","char","decimal","delegate","double","dynamic","enum","float","int","long","nint","nuint","object","sbyte","short","string","ulong","uint","ushort"],
779
- literal:["default","false","null","true"]},a=e.inherit(e.TITLE_MODE,{
780
- begin:"[a-zA-Z](\\.?\\w)*"}),i={className:"number",variants:[{
781
- begin:"\\b(0b[01']+)"},{
782
- begin:"(-?)\\b([\\d']+(\\.[\\d']*)?|\\.[\\d']+)(u|U|l|L|ul|UL|f|F|b|B)"},{
783
- begin:"(-?)(\\b0[xX][a-fA-F0-9']+|(\\b[\\d']+(\\.[\\d']*)?|\\.[\\d']+)([eE][-+]?[\\d']+)?)"
784
- }],relevance:0},s={className:"string",begin:'@"',end:'"',contains:[{begin:'""'}]
785
- },t=e.inherit(s,{illegal:/\n/}),r={className:"subst",begin:/\{/,end:/\}/,
786
- keywords:n},l=e.inherit(r,{illegal:/\n/}),c={className:"string",begin:/\$"/,
787
- end:'"',illegal:/\n/,contains:[{begin:/\{\{/},{begin:/\}\}/
788
- },e.BACKSLASH_ESCAPE,l]},o={className:"string",begin:/\$@"/,end:'"',contains:[{
789
- begin:/\{\{/},{begin:/\}\}/},{begin:'""'},r]},d=e.inherit(o,{illegal:/\n/,
790
- contains:[{begin:/\{\{/},{begin:/\}\}/},{begin:'""'},l]})
791
- ;r.contains=[o,c,s,e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,i,e.C_BLOCK_COMMENT_MODE],
792
- l.contains=[d,c,t,e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,i,e.inherit(e.C_BLOCK_COMMENT_MODE,{
793
- illegal:/\n/})];const g={variants:[o,c,s,e.APOS_STRING_MODE,e.QUOTE_STRING_MODE]
794
- },E={begin:"<",end:">",contains:[{beginKeywords:"in out"},a]
795
- },_=e.IDENT_RE+"(<"+e.IDENT_RE+"(\\s*,\\s*"+e.IDENT_RE+")*>)?(\\[\\])?",b={
796
- begin:"@"+e.IDENT_RE,relevance:0};return{name:"C#",aliases:["cs","c#"],
797
- keywords:n,illegal:/::/,contains:[e.COMMENT("///","$",{returnBegin:!0,
798
- contains:[{className:"doctag",variants:[{begin:"///",relevance:0},{
799
- begin:"\x3c!--|--\x3e"},{begin:"</?",end:">"}]}]
800
- }),e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,{className:"meta",begin:"#",
801
- end:"$",keywords:{
802
- keyword:"if else elif endif define undef warning error line region endregion pragma checksum"
803
- }},g,i,{beginKeywords:"class interface",relevance:0,end:/[{;=]/,
804
- illegal:/[^\s:,]/,contains:[{beginKeywords:"where class"
805
- },a,E,e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE]},{beginKeywords:"namespace",
806
- relevance:0,end:/[{;=]/,illegal:/[^\s:]/,
807
- contains:[a,e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE]},{
808
- beginKeywords:"record",relevance:0,end:/[{;=]/,illegal:/[^\s:]/,
809
- contains:[a,E,e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE]},{className:"meta",
810
- begin:"^\\s*\\[(?=[\\w])",excludeBegin:!0,end:"\\]",excludeEnd:!0,contains:[{
811
- className:"string",begin:/"/,end:/"/}]},{
812
- beginKeywords:"new return throw await else",relevance:0},{className:"function",
813
- begin:"("+_+"\\s+)+"+e.IDENT_RE+"\\s*(<[^=]+>\\s*)?\\(",returnBegin:!0,
814
- end:/\s*[{;=]/,excludeEnd:!0,keywords:n,contains:[{
815
- beginKeywords:"public private protected static internal protected abstract async extern override unsafe virtual new sealed partial",
816
- relevance:0},{begin:e.IDENT_RE+"\\s*(<[^=]+>\\s*)?\\(",returnBegin:!0,
817
- contains:[e.TITLE_MODE,E],relevance:0},{match:/\(\)/},{className:"params",
818
- begin:/\(/,end:/\)/,excludeBegin:!0,excludeEnd:!0,keywords:n,relevance:0,
819
- contains:[g,i,e.C_BLOCK_COMMENT_MODE]
820
- },e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE]},b]}}})()
821
- ;hljs.registerLanguage("csharp",e)})();/*! `json` grammar compiled for Highlight.js 11.4.0 */
822
- (()=>{var e=(()=>{"use strict";return e=>({name:"JSON",contains:[{
823
- className:"attr",begin:/"(\\.|[^\\"\r\n])*"(?=\s*:)/,relevance:1.01},{
824
- match:/[{}[\],:]/,className:"punctuation",relevance:0},e.QUOTE_STRING_MODE,{
825
- beginKeywords:"true false null"
826
- },e.C_NUMBER_MODE,e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE],illegal:"\\S"})
827
- })();hljs.registerLanguage("json",e)})();/*! `nginx` grammar compiled for Highlight.js 11.4.0 */
828
- (()=>{var e=(()=>{"use strict";return e=>{const n=e.regex,a={
829
- className:"variable",variants:[{begin:/\$\d+/},{begin:/\$\{\w+\}/},{
830
- begin:n.concat(/[$@]/,e.UNDERSCORE_IDENT_RE)}]},s={endsWithParent:!0,keywords:{
831
- $pattern:/[a-z_]{2,}|\/dev\/poll/,
832
- 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"]
833
- },relevance:0,illegal:"=>",contains:[e.HASH_COMMENT_MODE,{className:"string",
834
- contains:[e.BACKSLASH_ESCAPE,a],variants:[{begin:/"/,end:/"/},{begin:/'/,end:/'/
835
- }]},{begin:"([a-z]+):/",end:"\\s",endsWithParent:!0,excludeEnd:!0,contains:[a]
836
- },{className:"regexp",contains:[e.BACKSLASH_ESCAPE,a],variants:[{begin:"\\s\\^",
837
- end:"\\s|\\{|;",returnEnd:!0},{begin:"~\\*?\\s+",end:"\\s|\\{|;",returnEnd:!0},{
838
- begin:"\\*(\\.[a-z\\-]+)+"},{begin:"([a-z\\-]+\\.)+\\*"}]},{className:"number",
839
- begin:"\\b\\d{1,3}\\.\\d{1,3}\\.\\d{1,3}\\.\\d{1,3}(:\\d{1,5})?\\b"},{
840
- className:"number",begin:"\\b\\d+[kKmMgGdshdwy]?\\b",relevance:0},a]};return{
841
- name:"Nginx config",aliases:["nginxconf"],contains:[e.HASH_COMMENT_MODE,{
842
- beginKeywords:"upstream location",end:/;|\{/,contains:s.contains,keywords:{
843
- section:"upstream location"}},{className:"section",
844
- begin:n.concat(e.UNDERSCORE_IDENT_RE+n.lookahead(/\s+\{/)),relevance:0},{
845
- begin:n.lookahead(e.UNDERSCORE_IDENT_RE+"\\s"),end:";|\\{",contains:[{
846
- className:"attribute",begin:e.UNDERSCORE_IDENT_RE,starts:s}],relevance:0}],
847
- illegal:"[^\\s\\}\\{]"}}})();hljs.registerLanguage("nginx",e)})();/*! `ruby` grammar compiled for Highlight.js 11.4.0 */
848
- (()=>{var e=(()=>{"use strict";return e=>{
849
- const n=e.regex,a="([a-zA-Z_]\\w*[!?=]?|[-+~]@|<<|>>|=~|===?|<=>|[<>]=?|\\*\\*|[-/+%^&*~`|]|\\[\\]=?)",i={
850
- 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__",
851
- built_in:"proc lambda",literal:"true false nil"},s={className:"doctag",
852
- begin:"@[A-Za-z]+"},b={begin:"#<",end:">"},r=[e.COMMENT("#","$",{contains:[s]
853
- }),e.COMMENT("^=begin","^=end",{contains:[s],relevance:10
854
- }),e.COMMENT("^__END__","\\n$")],c={className:"subst",begin:/#\{/,end:/\}/,
855
- keywords:i},t={className:"string",contains:[e.BACKSLASH_ESCAPE,c],variants:[{
856
- begin:/'/,end:/'/},{begin:/"/,end:/"/},{begin:/`/,end:/`/},{begin:/%[qQwWx]?\(/,
857
- end:/\)/},{begin:/%[qQwWx]?\[/,end:/\]/},{begin:/%[qQwWx]?\{/,end:/\}/},{
858
- begin:/%[qQwWx]?</,end:/>/},{begin:/%[qQwWx]?\//,end:/\//},{begin:/%[qQwWx]?%/,
859
- end:/%/},{begin:/%[qQwWx]?-/,end:/-/},{begin:/%[qQwWx]?\|/,end:/\|/},{
860
- begin:/\B\?(\\\d{1,3})/},{begin:/\B\?(\\x[A-Fa-f0-9]{1,2})/},{
861
- begin:/\B\?(\\u\{?[A-Fa-f0-9]{1,6}\}?)/},{
862
- begin:/\B\?(\\M-\\C-|\\M-\\c|\\c\\M-|\\M-|\\C-\\M-)[\x20-\x7e]/},{
863
- begin:/\B\?\\(c|C-)[\x20-\x7e]/},{begin:/\B\?\\?\S/},{
864
- begin:n.concat(/<<[-~]?'?/,n.lookahead(/(\w+)(?=\W)[^\n]*\n(?:[^\n]*\n)*?\s*\1\b/)),
865
- contains:[e.END_SAME_AS_BEGIN({begin:/(\w+)/,end:/(\w+)/,
866
- contains:[e.BACKSLASH_ESCAPE,c]})]}]},d="[0-9](_?[0-9])*",g={className:"number",
867
- relevance:0,variants:[{
868
- begin:`\\b([1-9](_?[0-9])*|0)(\\.(${d}))?([eE][+-]?(${d})|r)?i?\\b`},{
869
- begin:"\\b0[dD][0-9](_?[0-9])*r?i?\\b"},{begin:"\\b0[bB][0-1](_?[0-1])*r?i?\\b"
870
- },{begin:"\\b0[oO][0-7](_?[0-7])*r?i?\\b"},{
871
- begin:"\\b0[xX][0-9a-fA-F](_?[0-9a-fA-F])*r?i?\\b"},{
872
- begin:"\\b0(_?[0-7])+r?i?\\b"}]},l={className:"params",begin:"\\(",end:"\\)",
873
- endsParent:!0,keywords:i},o=[t,{className:"class",beginKeywords:"class module",
874
- end:"$|;",illegal:/=/,contains:[e.inherit(e.TITLE_MODE,{
875
- begin:"[A-Za-z_]\\w*(::\\w+)*(\\?|!)?"}),{begin:"<\\s*",contains:[{
876
- begin:"("+e.IDENT_RE+"::)?"+e.IDENT_RE,relevance:0}]}].concat(r)},{
877
- className:"function",begin:n.concat(/def\s+/,n.lookahead(a+"\\s*(\\(|;|$)")),
878
- relevance:0,keywords:"def",end:"$|;",contains:[e.inherit(e.TITLE_MODE,{begin:a
879
- }),l].concat(r)},{begin:e.IDENT_RE+"::"},{className:"symbol",
880
- begin:e.UNDERSCORE_IDENT_RE+"(!|\\?)?:",relevance:0},{className:"symbol",
881
- begin:":(?!\\s)",contains:[t,{begin:a}],relevance:0},g,{className:"variable",
882
- begin:"(\\$\\W)|((\\$|@@?)(\\w+))(?=[^@$?])(?![A-Za-z])(?![@$?'])"},{
883
- className:"params",begin:/\|/,end:/\|/,relevance:0,keywords:i},{
884
- begin:"("+e.RE_STARTERS_RE+"|unless)\\s*",keywords:"unless",contains:[{
885
- className:"regexp",contains:[e.BACKSLASH_ESCAPE,c],illegal:/\n/,variants:[{
886
- begin:"/",end:"/[a-z]*"},{begin:/%r\{/,end:/\}[a-z]*/},{begin:"%r\\(",
887
- end:"\\)[a-z]*"},{begin:"%r!",end:"![a-z]*"},{begin:"%r\\[",end:"\\][a-z]*"}]
888
- }].concat(b,r),relevance:0}].concat(b,r);c.contains=o,l.contains=o;const _=[{
889
- begin:/^\s*=>/,starts:{end:"$",contains:o}},{className:"meta",
890
- begin:"^([>?]>|[\\w#]+\\(\\w+\\):\\d+:\\d+>|(\\w+-)?\\d+\\.\\d+\\.\\d+(p\\d+)?[^\\d][^>]+>)(?=[ ])",
891
- starts:{end:"$",contains:o}}];return r.unshift(b),{name:"Ruby",
892
- aliases:["rb","gemspec","podspec","thor","irb"],keywords:i,illegal:/\/\*/,
893
- contains:[e.SHEBANG({binary:"ruby"})].concat(_).concat(r).concat(o)}}})()
894
- ;hljs.registerLanguage("ruby",e)})();/*! `yaml` grammar compiled for Highlight.js 11.4.0 */
895
- (()=>{var e=(()=>{"use strict";return e=>{
896
- const n="true false yes no null",a="[\\w#;/?:@&=+$,.~*'()[\\]]+",s={
897
- className:"string",relevance:0,variants:[{begin:/'/,end:/'/},{begin:/"/,end:/"/
898
- },{begin:/\S+/}],contains:[e.BACKSLASH_ESCAPE,{className:"template-variable",
899
- variants:[{begin:/\{\{/,end:/\}\}/},{begin:/%\{/,end:/\}/}]}]},i=e.inherit(s,{
900
- variants:[{begin:/'/,end:/'/},{begin:/"/,end:/"/},{begin:/[^\s,{}[\]]+/}]}),l={
901
- end:",",endsWithParent:!0,excludeEnd:!0,keywords:n,relevance:0},t={begin:/\{/,
902
- end:/\}/,contains:[l],illegal:"\\n",relevance:0},g={begin:"\\[",end:"\\]",
903
- contains:[l],illegal:"\\n",relevance:0},b=[{className:"attr",variants:[{
904
- begin:"\\w[\\w :\\/.-]*:(?=[ \t]|$)"},{begin:'"\\w[\\w :\\/.-]*":(?=[ \t]|$)'},{
905
- begin:"'\\w[\\w :\\/.-]*':(?=[ \t]|$)"}]},{className:"meta",begin:"^---\\s*$",
906
- relevance:10},{className:"string",
1176
+ contains:[l]}]}},grmr_wasm:e=>{e.regex;const n=e.COMMENT(/\(;/,/;\)/)
1177
+ ;return n.contains.push("self"),{name:"WebAssembly",keywords:{$pattern:/[\w.]+/,
1178
+ keyword:["anyfunc","block","br","br_if","br_table","call","call_indirect","data","drop","elem","else","end","export","func","global.get","global.set","local.get","local.set","local.tee","get_global","get_local","global","if","import","local","loop","memory","memory.grow","memory.size","module","mut","nop","offset","param","result","return","select","set_global","set_local","start","table","tee_local","then","type","unreachable"]
1179
+ },contains:[e.COMMENT(/;;/,/$/),n,{match:[/(?:offset|align)/,/\s*/,/=/],
1180
+ className:{1:"keyword",3:"operator"}},{className:"variable",begin:/\$[\w_]+/},{
1181
+ match:/(\((?!;)|\))+/,className:"punctuation",relevance:0},{
1182
+ begin:[/(?:func|call|call_indirect)/,/\s+/,/\$[^\s)]+/],className:{1:"keyword",
1183
+ 3:"title.function"}},e.QUOTE_STRING_MODE,{match:/(i32|i64|f32|f64)(?!\.)/,
1184
+ className:"type"},{className:"keyword",
1185
+ match:/\b(f32|f64|i32|i64)(?:\.(?:abs|add|and|ceil|clz|const|convert_[su]\/i(?:32|64)|copysign|ctz|demote\/f64|div(?:_[su])?|eqz?|extend_[su]\/i32|floor|ge(?:_[su])?|gt(?:_[su])?|le(?:_[su])?|load(?:(?:8|16|32)_[su])?|lt(?:_[su])?|max|min|mul|nearest|neg?|or|popcnt|promote\/f32|reinterpret\/[fi](?:32|64)|rem_[su]|rot[lr]|shl|shr_[su]|store(?:8|16|32)?|sqrt|sub|trunc(?:_[su]\/f(?:32|64))?|wrap\/i64|xor))\b/
1186
+ },{className:"number",relevance:0,
1187
+ match:/[+-]?\b(?:\d(?:_?\d)*(?:\.\d(?:_?\d)*)?(?:[eE][+-]?\d(?:_?\d)*)?|0x[\da-fA-F](?:_?[\da-fA-F])*(?:\.[\da-fA-F](?:_?[\da-fA-D])*)?(?:[pP][+-]?\d(?:_?\d)*)?)\b|\binf\b|\bnan(?::0x[\da-fA-F](?:_?[\da-fA-D])*)?\b/
1188
+ }]}},grmr_xml:e=>{
1189
+ const n=e.regex,t=n.concat(/[\p{L}_]/u,n.optional(/[\p{L}0-9_.-]*:/u),/[\p{L}0-9_.-]*/u),a={
1190
+ className:"symbol",begin:/&[a-z]+;|&#[0-9]+;|&#x[a-f0-9]+;/},i={begin:/\s/,
1191
+ contains:[{className:"keyword",begin:/#?[a-z_][a-z1-9_-]+/,illegal:/\n/}]
1192
+ },r=e.inherit(i,{begin:/\(/,end:/\)/}),s=e.inherit(e.APOS_STRING_MODE,{
1193
+ className:"string"}),o=e.inherit(e.QUOTE_STRING_MODE,{className:"string"}),l={
1194
+ endsWithParent:!0,illegal:/</,relevance:0,contains:[{className:"attr",
1195
+ begin:/[\p{L}0-9._:-]+/u,relevance:0},{begin:/=\s*/,relevance:0,contains:[{
1196
+ className:"string",endsParent:!0,variants:[{begin:/"/,end:/"/,contains:[a]},{
1197
+ begin:/'/,end:/'/,contains:[a]},{begin:/[^\s"'=<>`]+/}]}]}]};return{
1198
+ name:"HTML, XML",
1199
+ aliases:["html","xhtml","rss","atom","xjb","xsd","xsl","plist","wsf","svg"],
1200
+ case_insensitive:!0,unicodeRegex:!0,contains:[{className:"meta",begin:/<![a-z]/,
1201
+ end:/>/,relevance:10,contains:[i,o,s,r,{begin:/\[/,end:/\]/,contains:[{
1202
+ className:"meta",begin:/<![a-z]/,end:/>/,contains:[i,r,o,s]}]}]
1203
+ },e.COMMENT(/<!--/,/-->/,{relevance:10}),{begin:/<!\[CDATA\[/,end:/\]\]>/,
1204
+ relevance:10},a,{className:"meta",end:/\?>/,variants:[{begin:/<\?xml/,
1205
+ relevance:10,contains:[o]},{begin:/<\?[a-z][a-z0-9]+/}]},{className:"tag",
1206
+ begin:/<style(?=\s|>)/,end:/>/,keywords:{name:"style"},contains:[l],starts:{
1207
+ end:/<\/style>/,returnEnd:!0,subLanguage:["css","xml"]}},{className:"tag",
1208
+ begin:/<script(?=\s|>)/,end:/>/,keywords:{name:"script"},contains:[l],starts:{
1209
+ end:/<\/script>/,returnEnd:!0,subLanguage:["javascript","handlebars","xml"]}},{
1210
+ className:"tag",begin:/<>|<\/>/},{className:"tag",
1211
+ begin:n.concat(/</,n.lookahead(n.concat(t,n.either(/\/>/,/>/,/\s/)))),
1212
+ end:/\/?>/,contains:[{className:"name",begin:t,relevance:0,starts:l}]},{
1213
+ className:"tag",begin:n.concat(/<\//,n.lookahead(n.concat(t,/>/))),contains:[{
1214
+ className:"name",begin:t,relevance:0},{begin:/>/,relevance:0,endsParent:!0}]}]}
1215
+ },grmr_yaml:e=>{
1216
+ const n="true false yes no null",t="[\\w#;/?:@&=+$,.~*'()[\\]]+",a={
1217
+ className:"string",relevance:0,variants:[{begin:/"/,end:/"/},{begin:/\S+/}],
1218
+ contains:[e.BACKSLASH_ESCAPE,{className:"template-variable",variants:[{
1219
+ begin:/\{\{/,end:/\}\}/},{begin:/%\{/,end:/\}/}]}]},i=e.inherit(a,{variants:[{
1220
+ begin:/'/,end:/'/,contains:[{begin:/''/,relevance:0}]},{begin:/"/,end:/"/},{
1221
+ begin:/[^\s,{}[\]]+/}]}),r={end:",",endsWithParent:!0,excludeEnd:!0,keywords:n,
1222
+ relevance:0},s={begin:/\{/,end:/\}/,contains:[r],illegal:"\\n",relevance:0},o={
1223
+ begin:"\\[",end:"\\]",contains:[r],illegal:"\\n",relevance:0},l=[{
1224
+ className:"attr",variants:[{begin:/[\w*@][\w*@ :()\./-]*:(?=[ \t]|$)/},{
1225
+ begin:/"[\w*@][\w*@ :()\./-]*":(?=[ \t]|$)/},{
1226
+ begin:/'[\w*@][\w*@ :()\./-]*':(?=[ \t]|$)/}]},{className:"meta",
1227
+ begin:"^---\\s*$",relevance:10},{className:"string",
907
1228
  begin:"[\\|>]([1-9]?[+-])?[ ]*\\n( +)[^ ][^\\n]*\\n(\\2[^\\n]+\\n?)*"},{
908
1229
  begin:"<%[%=-]?",end:"[%-]?%>",subLanguage:"ruby",excludeBegin:!0,excludeEnd:!0,
909
- relevance:0},{className:"type",begin:"!\\w+!"+a},{className:"type",
910
- begin:"!<"+a+">"},{className:"type",begin:"!"+a},{className:"type",begin:"!!"+a
1230
+ relevance:0},{className:"type",begin:"!\\w+!"+t},{className:"type",
1231
+ begin:"!<"+t+">"},{className:"type",begin:"!"+t},{className:"type",begin:"!!"+t
911
1232
  },{className:"meta",begin:"&"+e.UNDERSCORE_IDENT_RE+"$"},{className:"meta",
912
1233
  begin:"\\*"+e.UNDERSCORE_IDENT_RE+"$"},{className:"bullet",begin:"-(?=[ ]|$)",
913
1234
  relevance:0},e.HASH_COMMENT_MODE,{beginKeywords:n,keywords:{literal:n}},{
914
1235
  className:"number",
915
1236
  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"
916
- },{className:"number",begin:e.C_NUMBER_RE+"\\b",relevance:0},t,g,s],r=[...b]
917
- ;return r.pop(),r.push(i),l.contains=r,{name:"YAML",case_insensitive:!0,
918
- aliases:["yml"],contains:b}}})();hljs.registerLanguage("yaml",e)})();/*! `php-template` grammar compiled for Highlight.js 11.4.0 */
919
- (()=>{var n=(()=>{"use strict";return n=>({name:"PHP template",
920
- subLanguage:"xml",contains:[{begin:/<\?(php|=)?/,end:/\?>/,subLanguage:"php",
921
- contains:[{begin:"/\\*",end:"\\*/",skip:!0},{begin:'b"',end:'"',skip:!0},{
922
- begin:"b'",end:"'",skip:!0},n.inherit(n.APOS_STRING_MODE,{illegal:null,
923
- className:null,contains:null,skip:!0}),n.inherit(n.QUOTE_STRING_MODE,{
924
- illegal:null,className:null,contains:null,skip:!0})]}]})})()
925
- ;hljs.registerLanguage("php-template",n)})();/*! `sql` grammar compiled for Highlight.js 11.4.0 */
926
- (()=>{var e=(()=>{"use strict";return e=>{
927
- const r=e.regex,t=e.COMMENT("--","$"),n=["true","false","unknown"],a=["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"],i=["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"],s=["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"],o=i,c=["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=>!i.includes(e))),l={
928
- begin:r.concat(/\b/,r.either(...o),/\s*\(/),relevance:0,keywords:{built_in:o}}
929
- ;return{name:"SQL",case_insensitive:!0,illegal:/[{}]|<\//,keywords:{
930
- $pattern:/\b[\w\.]+/,keyword:((e,{exceptions:r,when:t}={})=>{const n=t
931
- ;return r=r||[],e.map((e=>e.match(/\|\d+$/)||r.includes(e)?e:n(e)?e+"|0":e))
932
- })(c,{when:e=>e.length<3}),literal:n,type:a,
933
- 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"]
934
- },contains:[{begin:r.either(...s),relevance:0,keywords:{$pattern:/[\w\.]+/,
935
- keyword:c.concat(s),literal:n,type:a}},{className:"type",
936
- begin:r.either("double precision","large object","with timezone","without timezone")
937
- },l,{className:"variable",begin:/@[a-z0-9]+/},{className:"string",variants:[{
938
- begin:/'/,end:/'/,contains:[{begin:/''/}]}]},{begin:/"/,end:/"/,contains:[{
939
- begin:/""/}]},e.C_NUMBER_MODE,e.C_BLOCK_COMMENT_MODE,t,{className:"operator",
940
- begin:/[-+*/=%^~]|&&?|\|\|?|!=?|<(?:=>?|<|>)?|>[>=]?/,relevance:0}]}}})()
941
- ;hljs.registerLanguage("sql",e)})();/*! `objectivec` grammar compiled for Highlight.js 11.4.0 */
942
- (()=>{var e=(()=>{"use strict";return e=>{const n=/[a-zA-Z@][a-zA-Z0-9_]*/,_={
943
- $pattern:n,keyword:["@interface","@class","@protocol","@implementation"]}
944
- ;return{name:"Objective-C",
945
- aliases:["mm","objc","obj-c","obj-c++","objective-c++"],keywords:{$pattern:n,
946
- 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"],
947
- literal:["false","true","FALSE","TRUE","nil","YES","NO","NULL"],
948
- built_in:["BOOL","dispatch_once_t","dispatch_queue_t","dispatch_sync","dispatch_async","dispatch_once"]
949
- },illegal:"</",contains:[{className:"built_in",
950
- begin:"\\b(AV|CA|CF|CG|CI|CL|CM|CN|CT|MK|MP|MTK|MTL|NS|SCN|SK|UI|WK|XC)\\w+"
951
- },e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,e.C_NUMBER_MODE,e.QUOTE_STRING_MODE,e.APOS_STRING_MODE,{
952
- className:"string",variants:[{begin:'@"',end:'"',illegal:"\\n",
953
- contains:[e.BACKSLASH_ESCAPE]}]},{className:"meta",begin:/#\s*[a-z]+\b/,end:/$/,
954
- keywords:{
955
- keyword:"if else elif endif define undef warning error line pragma ifdef ifndef include"
956
- },contains:[{begin:/\\\n/,relevance:0},e.inherit(e.QUOTE_STRING_MODE,{
957
- className:"string"}),{className:"string",begin:/<.*?>/,end:/$/,illegal:"\\n"
958
- },e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE]},{className:"class",
959
- begin:"("+_.keyword.join("|")+")\\b",end:/(\{|$)/,excludeEnd:!0,keywords:_,
960
- contains:[e.UNDERSCORE_TITLE_MODE]},{begin:"\\."+e.UNDERSCORE_IDENT_RE,
961
- relevance:0}]}}})();hljs.registerLanguage("objectivec",e)})();/*! `cpp` grammar compiled for Highlight.js 11.4.0 */
962
- (()=>{var e=(()=>{"use strict";return e=>{const t=e.regex,a=e.COMMENT("//","$",{
963
- contains:[{begin:/\\\n/}]
964
- }),n="[a-zA-Z_]\\w*::",r="(?!struct)(decltype\\(auto\\)|"+t.optional(n)+"[a-zA-Z_]\\w*"+t.optional("<[^<>]+>")+")",i={
965
- className:"type",begin:"\\b[a-z\\d_]*_t\\b"},s={className:"string",variants:[{
966
- begin:'(u8?|U|L)?"',end:'"',illegal:"\\n",contains:[e.BACKSLASH_ESCAPE]},{
967
- begin:"(u8?|U|L)?'(\\\\(x[0-9A-Fa-f]{2}|u[0-9A-Fa-f]{4,8}|[0-7]{3}|\\S)|.)",
968
- end:"'",illegal:"."},e.END_SAME_AS_BEGIN({
969
- begin:/(?:u8?|U|L)?R"([^()\\ ]{0,16})\(/,end:/\)([^()\\ ]{0,16})"/})]},c={
970
- className:"number",variants:[{begin:"\\b(0b[01']+)"},{
971
- begin:"(-?)\\b([\\d']+(\\.[\\d']*)?|\\.[\\d']+)((ll|LL|l|L)(u|U)?|(u|U)(ll|LL|l|L)?|f|F|b|B)"
972
- },{
973
- begin:"(-?)(\\b0[xX][a-fA-F0-9']+|(\\b[\\d']+(\\.[\\d']*)?|\\.[\\d']+)([eE][-+]?[\\d']+)?)"
974
- }],relevance:0},o={className:"meta",begin:/#\s*[a-z]+\b/,end:/$/,keywords:{
975
- keyword:"if else elif endif define undef warning error line pragma _Pragma ifdef ifndef include"
976
- },contains:[{begin:/\\\n/,relevance:0},e.inherit(s,{className:"string"}),{
977
- className:"string",begin:/<.*?>/},a,e.C_BLOCK_COMMENT_MODE]},l={
978
- className:"title",begin:t.optional(n)+e.IDENT_RE,relevance:0
979
- },d=t.optional(n)+e.IDENT_RE+"\\s*\\(",u={
980
- type:["bool","char","char16_t","char32_t","char8_t","double","float","int","long","short","void","wchar_t","unsigned","signed","const","static"],
981
- keyword:["alignas","alignof","and","and_eq","asm","atomic_cancel","atomic_commit","atomic_noexcept","auto","bitand","bitor","break","case","catch","class","co_await","co_return","co_yield","compl","concept","const_cast|10","consteval","constexpr","constinit","continue","decltype","default","delete","do","dynamic_cast|10","else","enum","explicit","export","extern","false","final","for","friend","goto","if","import","inline","module","mutable","namespace","new","noexcept","not","not_eq","nullptr","operator","or","or_eq","override","private","protected","public","reflexpr","register","reinterpret_cast|10","requires","return","sizeof","static_assert","static_cast|10","struct","switch","synchronized","template","this","thread_local","throw","transaction_safe","transaction_safe_dynamic","true","try","typedef","typeid","typename","union","using","virtual","volatile","while","xor","xor_eq"],
982
- literal:["NULL","false","nullopt","nullptr","true"],built_in:["_Pragma"],
983
- _type_hints:["any","auto_ptr","barrier","binary_semaphore","bitset","complex","condition_variable","condition_variable_any","counting_semaphore","deque","false_type","future","imaginary","initializer_list","istringstream","jthread","latch","lock_guard","multimap","multiset","mutex","optional","ostringstream","packaged_task","pair","promise","priority_queue","queue","recursive_mutex","recursive_timed_mutex","scoped_lock","set","shared_future","shared_lock","shared_mutex","shared_timed_mutex","shared_ptr","stack","string_view","stringstream","timed_mutex","thread","true_type","tuple","unique_lock","unique_ptr","unordered_map","unordered_multimap","unordered_multiset","unordered_set","variant","vector","weak_ptr","wstring","wstring_view"]
984
- },p={className:"function.dispatch",relevance:0,keywords:{
985
- _hint:["abort","abs","acos","apply","as_const","asin","atan","atan2","calloc","ceil","cerr","cin","clog","cos","cosh","cout","declval","endl","exchange","exit","exp","fabs","floor","fmod","forward","fprintf","fputs","free","frexp","fscanf","future","invoke","isalnum","isalpha","iscntrl","isdigit","isgraph","islower","isprint","ispunct","isspace","isupper","isxdigit","labs","launder","ldexp","log","log10","make_pair","make_shared","make_shared_for_overwrite","make_tuple","make_unique","malloc","memchr","memcmp","memcpy","memset","modf","move","pow","printf","putchar","puts","realloc","scanf","sin","sinh","snprintf","sprintf","sqrt","sscanf","std","stderr","stdin","stdout","strcat","strchr","strcmp","strcpy","strcspn","strlen","strncat","strncmp","strncpy","strpbrk","strrchr","strspn","strstr","swap","tan","tanh","terminate","to_underlying","tolower","toupper","vfprintf","visit","vprintf","vsprintf"]
986
- },
987
- begin:t.concat(/\b/,/(?!decltype)/,/(?!if)/,/(?!for)/,/(?!switch)/,/(?!while)/,e.IDENT_RE,t.lookahead(/(<[^<>]+>|)\s*\(/))
988
- },_=[p,o,i,a,e.C_BLOCK_COMMENT_MODE,c,s],m={variants:[{begin:/=/,end:/;/},{
989
- begin:/\(/,end:/\)/},{beginKeywords:"new throw return else",end:/;/}],
990
- keywords:u,contains:_.concat([{begin:/\(/,end:/\)/,keywords:u,
991
- contains:_.concat(["self"]),relevance:0}]),relevance:0},g={className:"function",
992
- begin:"("+r+"[\\*&\\s]+)+"+d,returnBegin:!0,end:/[{;=]/,excludeEnd:!0,
993
- keywords:u,illegal:/[^\w\s\*&:<>.]/,contains:[{begin:"decltype\\(auto\\)",
994
- keywords:u,relevance:0},{begin:d,returnBegin:!0,contains:[l],relevance:0},{
995
- begin:/::/,relevance:0},{begin:/:/,endsWithParent:!0,contains:[s,c]},{
996
- relevance:0,match:/,/},{className:"params",begin:/\(/,end:/\)/,keywords:u,
997
- relevance:0,contains:[a,e.C_BLOCK_COMMENT_MODE,s,c,i,{begin:/\(/,end:/\)/,
998
- keywords:u,relevance:0,contains:["self",a,e.C_BLOCK_COMMENT_MODE,s,c,i]}]
999
- },i,a,e.C_BLOCK_COMMENT_MODE,o]};return{name:"C++",
1000
- aliases:["cc","c++","h++","hpp","hh","hxx","cxx"],keywords:u,illegal:"</",
1001
- classNameAliases:{"function.dispatch":"built_in"},
1002
- contains:[].concat(m,g,p,_,[o,{
1003
- begin:"\\b(deque|list|queue|priority_queue|pair|stack|vector|map|set|bitset|multiset|multimap|unordered_map|unordered_set|unordered_multiset|unordered_multimap|array|tuple|optional|variant|function)\\s*<(?!<)",
1004
- end:">",keywords:u,contains:["self",i]},{begin:e.IDENT_RE+"::",keywords:u},{
1005
- match:[/\b(?:enum(?:\s+(?:class|struct))?|class|struct|union)/,/\s+/,/\w+/],
1006
- className:{1:"keyword",3:"title.class"}}])}}})();hljs.registerLanguage("cpp",e)
1007
- })();/*! `apache` grammar compiled for Highlight.js 11.4.0 */
1008
- (()=>{var e=(()=>{"use strict";return e=>{const n={className:"number",
1009
- begin:/\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}(:\d{1,5})?/};return{
1010
- name:"Apache config",aliases:["apacheconf"],case_insensitive:!0,
1011
- contains:[e.HASH_COMMENT_MODE,{className:"section",begin:/<\/?/,end:/>/,
1012
- contains:[n,{className:"number",begin:/:\d{1,5}/
1013
- },e.inherit(e.QUOTE_STRING_MODE,{relevance:0})]},{className:"attribute",
1014
- begin:/\w+/,relevance:0,keywords:{
1015
- _:["order","deny","allow","setenv","rewriterule","rewriteengine","rewritecond","documentroot","sethandler","errordocument","loadmodule","options","header","listen","serverroot","servername"]
1016
- },starts:{end:/$/,relevance:0,keywords:{literal:"on off all deny allow"},
1017
- contains:[{className:"meta",begin:/\s\[/,end:/\]$/},{className:"variable",
1018
- begin:/[\$%]\{/,end:/\}/,contains:["self",{className:"number",begin:/[$%]\d+/}]
1019
- },n,{className:"number",begin:/\b\d+/},e.QUOTE_STRING_MODE]}}],illegal:/\S/}}
1020
- })();hljs.registerLanguage("apache",e)})();/*! `plaintext` grammar compiled for Highlight.js 11.4.0 */
1021
- (()=>{var t=(()=>{"use strict";return t=>({name:"Plain text",
1022
- aliases:["text","txt"],disableAutodetect:!0})})()
1023
- ;hljs.registerLanguage("plaintext",t)})();/*! `shell` grammar compiled for Highlight.js 11.4.0 */
1024
- (()=>{var s=(()=>{"use strict";return s=>({name:"Shell Session",
1025
- aliases:["console","shellsession"],contains:[{className:"meta",
1026
- begin:/^\s{0,3}[/~\w\d[\]()@-]*[>%$#][ ]?/,starts:{end:/[^\\](?=\s*$)/,
1027
- subLanguage:"bash"}}]})})();hljs.registerLanguage("shell",s)})();/*! `r` grammar compiled for Highlight.js 11.4.0 */
1028
- (()=>{var e=(()=>{"use strict";return e=>{
1029
- const a=e.regex,n=/(?:(?:[a-zA-Z]|\.[._a-zA-Z])[._a-zA-Z0-9]*)|\.(?!\d)/,i=a.either(/0[xX][0-9a-fA-F]+\.[0-9a-fA-F]*[pP][+-]?\d+i?/,/0[xX][0-9a-fA-F]+(?:[pP][+-]?\d+)?[Li]?/,/(?:\d+(?:\.\d*)?|\.\d+)(?:[eE][+-]?\d+)?[Li]?/),s=/[=!<>:]=|\|\||&&|:::?|<-|<<-|->>|->|\|>|[-+*\/?!$&|:<=>@^~]|\*\*/,t=a.either(/[()]/,/[{}]/,/\[\[/,/[[\]]/,/\\/,/,/)
1030
- ;return{name:"R",keywords:{$pattern:n,
1031
- keyword:"function if in break next repeat else for while",
1032
- literal:"NULL NA TRUE FALSE Inf NaN NA_integer_|10 NA_real_|10 NA_character_|10 NA_complex_|10",
1033
- 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"
1034
- },contains:[e.COMMENT(/#'/,/$/,{contains:[{scope:"doctag",match:/@examples/,
1035
- starts:{end:a.lookahead(a.either(/\n^#'\s*(?=@[a-zA-Z]+)/,/\n^(?!#')/)),
1036
- endsParent:!0}},{scope:"doctag",begin:"@param",end:/$/,contains:[{
1037
- scope:"variable",variants:[{match:n},{match:/`(?:\\.|[^`\\])+`/}],endsParent:!0
1038
- }]},{scope:"doctag",match:/@[a-zA-Z]+/},{scope:"keyword",match:/\\[a-zA-Z]+/}]
1039
- }),e.HASH_COMMENT_MODE,{scope:"string",contains:[e.BACKSLASH_ESCAPE],
1040
- variants:[e.END_SAME_AS_BEGIN({begin:/[rR]"(-*)\(/,end:/\)(-*)"/
1041
- }),e.END_SAME_AS_BEGIN({begin:/[rR]"(-*)\{/,end:/\}(-*)"/
1042
- }),e.END_SAME_AS_BEGIN({begin:/[rR]"(-*)\[/,end:/\](-*)"/
1043
- }),e.END_SAME_AS_BEGIN({begin:/[rR]'(-*)\(/,end:/\)(-*)'/
1044
- }),e.END_SAME_AS_BEGIN({begin:/[rR]'(-*)\{/,end:/\}(-*)'/
1045
- }),e.END_SAME_AS_BEGIN({begin:/[rR]'(-*)\[/,end:/\](-*)'/}),{begin:'"',end:'"',
1046
- relevance:0},{begin:"'",end:"'",relevance:0}]},{relevance:0,variants:[{scope:{
1047
- 1:"operator",2:"number"},match:[s,i]},{scope:{1:"operator",2:"number"},
1048
- match:[/%[^%]*%/,i]},{scope:{1:"punctuation",2:"number"},match:[t,i]},{scope:{
1049
- 2:"number"},match:[/[^a-zA-Z0-9._]|^/,i]}]},{scope:{3:"operator"},
1050
- match:[n,/\s+/,/<-/,/\s+/]},{scope:"operator",relevance:0,variants:[{match:s},{
1051
- match:/%[^%]*%/}]},{scope:"punctuation",relevance:0,match:t},{begin:"`",end:"`",
1052
- contains:[{begin:/\\./}]}]}}})();hljs.registerLanguage("r",e)})();/*! `ini` grammar compiled for Highlight.js 11.4.0 */
1053
- (()=>{var e=(()=>{"use strict";return e=>{const n=e.regex,a={className:"number",
1054
- relevance:0,variants:[{begin:/([+-]+)?[\d]+_[\d_]+/},{begin:e.NUMBER_RE}]
1055
- },s=e.COMMENT();s.variants=[{begin:/;/,end:/$/},{begin:/#/,end:/$/}];const i={
1056
- className:"variable",variants:[{begin:/\$[\w\d"][\w\d_]*/},{begin:/\$\{(.*?)\}/
1057
- }]},t={className:"literal",begin:/\bon|off|true|false|yes|no\b/},r={
1058
- className:"string",contains:[e.BACKSLASH_ESCAPE],variants:[{begin:"'''",
1059
- end:"'''",relevance:10},{begin:'"""',end:'"""',relevance:10},{begin:'"',end:'"'
1060
- },{begin:"'",end:"'"}]},l={begin:/\[/,end:/\]/,contains:[s,t,i,r,a,"self"],
1061
- relevance:0},c=n.either(/[A-Za-z0-9_-]+/,/"(\\"|[^"])*"/,/'[^']*'/);return{
1062
- name:"TOML, also INI",aliases:["toml"],case_insensitive:!0,illegal:/\S/,
1063
- contains:[s,{className:"section",begin:/\[+/,end:/\]+/},{
1064
- begin:n.concat(c,"(\\s*\\.\\s*",c,")*",n.lookahead(/\s*=\s*[^#\s]/)),
1065
- className:"attr",starts:{end:/$/,contains:[s,l,t,i,r,a]}}]}}})()
1066
- ;hljs.registerLanguage("ini",e)})();/*! `less` grammar compiled for Highlight.js 11.4.0 */
1067
- (()=>{var e=(()=>{"use strict"
1068
- ;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"],r=["after","backdrop","before","cue","cue-region","first-letter","first-line","grammar-error","marker","part","placeholder","selection","slotted","spelling-error"],o=["align-content","align-items","align-self","all","animation","animation-delay","animation-direction","animation-duration","animation-fill-mode","animation-iteration-count","animation-name","animation-play-state","animation-timing-function","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","caret-color","clear","clip","clip-path","clip-rule","color","column-count","column-fill","column-gap","column-rule","column-rule-color","column-rule-style","column-rule-width","column-span","column-width","columns","contain","content","content-visibility","counter-increment","counter-reset","cue","cue-after","cue-before","cursor","direction","display","empty-cells","filter","flex","flex-basis","flex-direction","flex-flow","flex-grow","flex-shrink","flex-wrap","float","flow","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-synthesis","font-variant","font-variant-caps","font-variant-east-asian","font-variant-ligatures","font-variant-numeric","font-variant-position","font-variation-settings","font-weight","gap","glyph-orientation-vertical","grid","grid-area","grid-auto-columns","grid-auto-flow","grid-auto-rows","grid-column","grid-column-end","grid-column-start","grid-gap","grid-row","grid-row-end","grid-row-start","grid-template","grid-template-areas","grid-template-columns","grid-template-rows","hanging-punctuation","height","hyphens","icon","image-orientation","image-rendering","image-resolution","ime-mode","isolation","justify-content","left","letter-spacing","line-break","line-height","list-style","list-style-image","list-style-position","list-style-type","margin","margin-bottom","margin-left","margin-right","margin-top","marks","mask","mask-border","mask-border-mode","mask-border-outset","mask-border-repeat","mask-border-slice","mask-border-source","mask-border-width","mask-clip","mask-composite","mask-image","mask-mode","mask-origin","mask-position","mask-repeat","mask-size","mask-type","max-height","max-width","min-height","min-width","mix-blend-mode","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","pause","pause-after","pause-before","perspective","perspective-origin","pointer-events","position","quotes","resize","rest","rest-after","rest-before","right","row-gap","scroll-margin","scroll-margin-block","scroll-margin-block-end","scroll-margin-block-start","scroll-margin-bottom","scroll-margin-inline","scroll-margin-inline-end","scroll-margin-inline-start","scroll-margin-left","scroll-margin-right","scroll-margin-top","scroll-padding","scroll-padding-block","scroll-padding-block-end","scroll-padding-block-start","scroll-padding-bottom","scroll-padding-inline","scroll-padding-inline-end","scroll-padding-inline-start","scroll-padding-left","scroll-padding-right","scroll-padding-top","scroll-snap-align","scroll-snap-stop","scroll-snap-type","shape-image-threshold","shape-margin","shape-outside","speak","speak-as","src","tab-size","table-layout","text-align","text-align-all","text-align-last","text-combine-upright","text-decoration","text-decoration-color","text-decoration-line","text-decoration-style","text-emphasis","text-emphasis-color","text-emphasis-position","text-emphasis-style","text-indent","text-justify","text-orientation","text-overflow","text-rendering","text-shadow","text-transform","text-underline-position","top","transform","transform-box","transform-origin","transform-style","transition","transition-delay","transition-duration","transition-property","transition-timing-function","unicode-bidi","vertical-align","visibility","voice-balance","voice-duration","voice-family","voice-pitch","voice-range","voice-rate","voice-stress","voice-volume","white-space","widows","width","will-change","word-break","word-spacing","word-wrap","writing-mode","z-index"].reverse(),n=i.concat(r)
1069
- ;return a=>{const s=(e=>({IMPORTANT:{scope:"meta",begin:"!important"},
1070
- BLOCK_COMMENT:e.C_BLOCK_COMMENT_MODE,HEXCOLOR:{scope:"number",
1071
- begin:/#(([0-9a-fA-F]{3,4})|(([0-9a-fA-F]{2}){3,4}))\b/},FUNCTION_DISPATCH:{
1072
- className:"built_in",begin:/[\w-]+(?=\()/},ATTRIBUTE_SELECTOR_MODE:{
1073
- scope:"selector-attr",begin:/\[/,end:/\]/,illegal:"$",
1074
- contains:[e.APOS_STRING_MODE,e.QUOTE_STRING_MODE]},CSS_NUMBER_MODE:{
1075
- scope:"number",
1076
- begin:e.NUMBER_RE+"(%|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)?",
1077
- relevance:0},CSS_VARIABLE:{className:"attr",begin:/--[A-Za-z][A-Za-z0-9_-]*/}
1078
- }))(a),l=n,d="([\\w-]+|@\\{[\\w-]+\\})",c=[],g=[],m=e=>({className:"string",
1079
- begin:"~?"+e+".*?"+e}),p=(e,t,i)=>({className:e,begin:t,relevance:i}),b={
1080
- $pattern:/[a-z-]+/,keyword:"and or not only",attribute:t.join(" ")},u={
1081
- begin:"\\(",end:"\\)",contains:g,keywords:b,relevance:0}
1082
- ;g.push(a.C_LINE_COMMENT_MODE,a.C_BLOCK_COMMENT_MODE,m("'"),m('"'),s.CSS_NUMBER_MODE,{
1083
- begin:"(url|data-uri)\\(",starts:{className:"string",end:"[\\)\\n]",
1084
- excludeEnd:!0}
1085
- },s.HEXCOLOR,u,p("variable","@@?[\\w-]+",10),p("variable","@\\{[\\w-]+\\}"),p("built_in","~?`[^`]*?`"),{
1086
- className:"attribute",begin:"[\\w-]+\\s*:",end:":",returnBegin:!0,excludeEnd:!0
1087
- },s.IMPORTANT);const h=g.concat({begin:/\{/,end:/\}/,contains:c}),f={
1088
- beginKeywords:"when",endsWithParent:!0,contains:[{beginKeywords:"and not"
1089
- }].concat(g)},v={begin:d+"\\s*:",returnBegin:!0,end:/[;}]/,relevance:0,
1090
- contains:[{begin:/-(webkit|moz|ms|o)-/},s.CSS_VARIABLE,{className:"attribute",
1091
- begin:"\\b("+o.join("|")+")\\b",end:/(?=:)/,starts:{endsWithParent:!0,
1092
- illegal:"[<=$]",relevance:0,contains:g}}]},w={className:"keyword",
1093
- begin:"@(import|media|charset|font-face|(-[a-z]+-)?keyframes|supports|document|namespace|page|viewport|host)\\b",
1094
- starts:{end:"[;{}]",keywords:b,returnEnd:!0,contains:g,relevance:0}},k={
1095
- className:"variable",variants:[{begin:"@[\\w-]+\\s*:",relevance:15},{
1096
- begin:"@[\\w-]+"}],starts:{end:"[;}]",returnEnd:!0,contains:h}},y={variants:[{
1097
- begin:"[\\.#:&\\[>]",end:"[;{}]"},{begin:d,end:/\{/}],returnBegin:!0,
1098
- returnEnd:!0,illegal:"[<='$\"]",relevance:0,
1099
- contains:[a.C_LINE_COMMENT_MODE,a.C_BLOCK_COMMENT_MODE,f,p("keyword","all\\b"),p("variable","@\\{[\\w-]+\\}"),{
1100
- begin:"\\b("+e.join("|")+")\\b",className:"selector-tag"
1101
- },s.CSS_NUMBER_MODE,p("selector-tag",d,0),p("selector-id","#"+d),p("selector-class","\\."+d,0),p("selector-tag","&",0),s.ATTRIBUTE_SELECTOR_MODE,{
1102
- className:"selector-pseudo",begin:":("+i.join("|")+")"},{
1103
- className:"selector-pseudo",begin:":(:)?("+r.join("|")+")"},{begin:/\(/,
1104
- end:/\)/,relevance:0,contains:h},{begin:"!important"},s.FUNCTION_DISPATCH]},x={
1105
- begin:`[\\w-]+:(:)?(${l.join("|")})`,returnBegin:!0,contains:[y]}
1106
- ;return c.push(a.C_LINE_COMMENT_MODE,a.C_BLOCK_COMMENT_MODE,w,k,x,v,y),{
1107
- name:"Less",case_insensitive:!0,illegal:"[=>'/<($\"]",contains:c}}})()
1108
- ;hljs.registerLanguage("less",e)})();/*! `fortran` grammar compiled for Highlight.js 11.4.0 */
1109
- (()=>{var e=(()=>{"use strict";return e=>{const n=e.regex,a={
1110
- variants:[e.COMMENT("!","$",{relevance:0}),e.COMMENT("^C[ ]","$",{relevance:0
1111
- }),e.COMMENT("^C$","$",{relevance:0})]
1112
- },t=/(_[a-z_\d]+)?/,i=/([de][+-]?\d+)?/,c={className:"number",variants:[{
1113
- begin:n.concat(/\b\d+/,/\.(\d*)/,i,t)},{begin:n.concat(/\b\d+/,i,t)},{
1114
- begin:n.concat(/\.\d+/,i,t)}],relevance:0},o={className:"function",
1115
- beginKeywords:"subroutine function program",illegal:"[${=\\n]",
1116
- contains:[e.UNDERSCORE_TITLE_MODE,{className:"params",begin:"\\(",end:"\\)"}]}
1117
- ;return{name:"Fortran",case_insensitive:!0,aliases:["f90","f95"],keywords:{
1118
- keyword:["kind","do","concurrent","local","shared","while","private","call","intrinsic","where","elsewhere","type","endtype","endmodule","endselect","endinterface","end","enddo","endif","if","forall","endforall","only","contains","default","return","stop","then","block","endblock","endassociate","public","subroutine|10","function","program",".and.",".or.",".not.",".le.",".eq.",".ge.",".gt.",".lt.","goto","save","else","use","module","select","case","access","blank","direct","exist","file","fmt","form","formatted","iostat","name","named","nextrec","number","opened","rec","recl","sequential","status","unformatted","unit","continue","format","pause","cycle","exit","c_null_char","c_alert","c_backspace","c_form_feed","flush","wait","decimal","round","iomsg","synchronous","nopass","non_overridable","pass","protected","volatile","abstract","extends","import","non_intrinsic","value","deferred","generic","final","enumerator","class","associate","bind","enum","c_int","c_short","c_long","c_long_long","c_signed_char","c_size_t","c_int8_t","c_int16_t","c_int32_t","c_int64_t","c_int_least8_t","c_int_least16_t","c_int_least32_t","c_int_least64_t","c_int_fast8_t","c_int_fast16_t","c_int_fast32_t","c_int_fast64_t","c_intmax_t","C_intptr_t","c_float","c_double","c_long_double","c_float_complex","c_double_complex","c_long_double_complex","c_bool","c_char","c_null_ptr","c_null_funptr","c_new_line","c_carriage_return","c_horizontal_tab","c_vertical_tab","iso_c_binding","c_loc","c_funloc","c_associated","c_f_pointer","c_ptr","c_funptr","iso_fortran_env","character_storage_size","error_unit","file_storage_size","input_unit","iostat_end","iostat_eor","numeric_storage_size","output_unit","c_f_procpointer","ieee_arithmetic","ieee_support_underflow_control","ieee_get_underflow_mode","ieee_set_underflow_mode","newunit","contiguous","recursive","pad","position","action","delim","readwrite","eor","advance","nml","interface","procedure","namelist","include","sequence","elemental","pure","impure","integer","real","character","complex","logical","codimension","dimension","allocatable|10","parameter","external","implicit|10","none","double","precision","assign","intent","optional","pointer","target","in","out","common","equivalence","data"],
1119
- literal:[".False.",".True."],
1120
- built_in:["alog","alog10","amax0","amax1","amin0","amin1","amod","cabs","ccos","cexp","clog","csin","csqrt","dabs","dacos","dasin","datan","datan2","dcos","dcosh","ddim","dexp","dint","dlog","dlog10","dmax1","dmin1","dmod","dnint","dsign","dsin","dsinh","dsqrt","dtan","dtanh","float","iabs","idim","idint","idnint","ifix","isign","max0","max1","min0","min1","sngl","algama","cdabs","cdcos","cdexp","cdlog","cdsin","cdsqrt","cqabs","cqcos","cqexp","cqlog","cqsin","cqsqrt","dcmplx","dconjg","derf","derfc","dfloat","dgamma","dimag","dlgama","iqint","qabs","qacos","qasin","qatan","qatan2","qcmplx","qconjg","qcos","qcosh","qdim","qerf","qerfc","qexp","qgamma","qimag","qlgama","qlog","qlog10","qmax1","qmin1","qmod","qnint","qsign","qsin","qsinh","qsqrt","qtan","qtanh","abs","acos","aimag","aint","anint","asin","atan","atan2","char","cmplx","conjg","cos","cosh","exp","ichar","index","int","log","log10","max","min","nint","sign","sin","sinh","sqrt","tan","tanh","print","write","dim","lge","lgt","lle","llt","mod","nullify","allocate","deallocate","adjustl","adjustr","all","allocated","any","associated","bit_size","btest","ceiling","count","cshift","date_and_time","digits","dot_product","eoshift","epsilon","exponent","floor","fraction","huge","iand","ibclr","ibits","ibset","ieor","ior","ishft","ishftc","lbound","len_trim","matmul","maxexponent","maxloc","maxval","merge","minexponent","minloc","minval","modulo","mvbits","nearest","pack","present","product","radix","random_number","random_seed","range","repeat","reshape","rrspacing","scale","scan","selected_int_kind","selected_real_kind","set_exponent","shape","size","spacing","spread","sum","system_clock","tiny","transpose","trim","ubound","unpack","verify","achar","iachar","transfer","dble","entry","dprod","cpu_time","command_argument_count","get_command","get_command_argument","get_environment_variable","is_iostat_end","ieee_arithmetic","ieee_support_underflow_control","ieee_get_underflow_mode","ieee_set_underflow_mode","is_iostat_eor","move_alloc","new_line","selected_char_kind","same_type_as","extends_type_of","acosh","asinh","atanh","bessel_j0","bessel_j1","bessel_jn","bessel_y0","bessel_y1","bessel_yn","erf","erfc","erfc_scaled","gamma","log_gamma","hypot","norm2","atomic_define","atomic_ref","execute_command_line","leadz","trailz","storage_size","merge_bits","bge","bgt","ble","blt","dshiftl","dshiftr","findloc","iall","iany","iparity","image_index","lcobound","ucobound","maskl","maskr","num_images","parity","popcnt","poppar","shifta","shiftl","shiftr","this_image","sync","change","team","co_broadcast","co_max","co_min","co_sum","co_reduce"]
1121
- },illegal:/\/\*/,contains:[{className:"string",relevance:0,
1122
- variants:[e.APOS_STRING_MODE,e.QUOTE_STRING_MODE]},o,{begin:/^C\s*=(?!=)/,
1123
- relevance:0},a,c]}}})();hljs.registerLanguage("fortran",e)})();/*! `css` grammar compiled for Highlight.js 11.4.0 */
1124
- (()=>{var e=(()=>{"use strict"
1125
- ;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","all","animation","animation-delay","animation-direction","animation-duration","animation-fill-mode","animation-iteration-count","animation-name","animation-play-state","animation-timing-function","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","caret-color","clear","clip","clip-path","clip-rule","color","column-count","column-fill","column-gap","column-rule","column-rule-color","column-rule-style","column-rule-width","column-span","column-width","columns","contain","content","content-visibility","counter-increment","counter-reset","cue","cue-after","cue-before","cursor","direction","display","empty-cells","filter","flex","flex-basis","flex-direction","flex-flow","flex-grow","flex-shrink","flex-wrap","float","flow","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-synthesis","font-variant","font-variant-caps","font-variant-east-asian","font-variant-ligatures","font-variant-numeric","font-variant-position","font-variation-settings","font-weight","gap","glyph-orientation-vertical","grid","grid-area","grid-auto-columns","grid-auto-flow","grid-auto-rows","grid-column","grid-column-end","grid-column-start","grid-gap","grid-row","grid-row-end","grid-row-start","grid-template","grid-template-areas","grid-template-columns","grid-template-rows","hanging-punctuation","height","hyphens","icon","image-orientation","image-rendering","image-resolution","ime-mode","isolation","justify-content","left","letter-spacing","line-break","line-height","list-style","list-style-image","list-style-position","list-style-type","margin","margin-bottom","margin-left","margin-right","margin-top","marks","mask","mask-border","mask-border-mode","mask-border-outset","mask-border-repeat","mask-border-slice","mask-border-source","mask-border-width","mask-clip","mask-composite","mask-image","mask-mode","mask-origin","mask-position","mask-repeat","mask-size","mask-type","max-height","max-width","min-height","min-width","mix-blend-mode","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","pause","pause-after","pause-before","perspective","perspective-origin","pointer-events","position","quotes","resize","rest","rest-after","rest-before","right","row-gap","scroll-margin","scroll-margin-block","scroll-margin-block-end","scroll-margin-block-start","scroll-margin-bottom","scroll-margin-inline","scroll-margin-inline-end","scroll-margin-inline-start","scroll-margin-left","scroll-margin-right","scroll-margin-top","scroll-padding","scroll-padding-block","scroll-padding-block-end","scroll-padding-block-start","scroll-padding-bottom","scroll-padding-inline","scroll-padding-inline-end","scroll-padding-inline-start","scroll-padding-left","scroll-padding-right","scroll-padding-top","scroll-snap-align","scroll-snap-stop","scroll-snap-type","shape-image-threshold","shape-margin","shape-outside","speak","speak-as","src","tab-size","table-layout","text-align","text-align-all","text-align-last","text-combine-upright","text-decoration","text-decoration-color","text-decoration-line","text-decoration-style","text-emphasis","text-emphasis-color","text-emphasis-position","text-emphasis-style","text-indent","text-justify","text-orientation","text-overflow","text-rendering","text-shadow","text-transform","text-underline-position","top","transform","transform-box","transform-origin","transform-style","transition","transition-delay","transition-duration","transition-property","transition-timing-function","unicode-bidi","vertical-align","visibility","voice-balance","voice-duration","voice-family","voice-pitch","voice-range","voice-rate","voice-stress","voice-volume","white-space","widows","width","will-change","word-break","word-spacing","word-wrap","writing-mode","z-index"].reverse()
1126
- ;return a=>{const n=a.regex,l=(e=>({IMPORTANT:{scope:"meta",begin:"!important"},
1127
- BLOCK_COMMENT:e.C_BLOCK_COMMENT_MODE,HEXCOLOR:{scope:"number",
1128
- begin:/#(([0-9a-fA-F]{3,4})|(([0-9a-fA-F]{2}){3,4}))\b/},FUNCTION_DISPATCH:{
1129
- className:"built_in",begin:/[\w-]+(?=\()/},ATTRIBUTE_SELECTOR_MODE:{
1130
- scope:"selector-attr",begin:/\[/,end:/\]/,illegal:"$",
1131
- contains:[e.APOS_STRING_MODE,e.QUOTE_STRING_MODE]},CSS_NUMBER_MODE:{
1132
- scope:"number",
1133
- begin:e.NUMBER_RE+"(%|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)?",
1134
- relevance:0},CSS_VARIABLE:{className:"attr",begin:/--[A-Za-z][A-Za-z0-9_-]*/}
1135
- }))(a),s=[a.APOS_STRING_MODE,a.QUOTE_STRING_MODE];return{name:"CSS",
1136
- case_insensitive:!0,illegal:/[=|'\$]/,keywords:{keyframePosition:"from to"},
1137
- classNameAliases:{keyframePosition:"selector-tag"},contains:[l.BLOCK_COMMENT,{
1138
- begin:/-(webkit|moz|ms|o)-(?=[a-z])/},l.CSS_NUMBER_MODE,{
1139
- className:"selector-id",begin:/#[A-Za-z0-9_-]+/,relevance:0},{
1140
- className:"selector-class",begin:"\\.[a-zA-Z-][a-zA-Z0-9_-]*",relevance:0
1141
- },l.ATTRIBUTE_SELECTOR_MODE,{className:"selector-pseudo",variants:[{
1142
- begin:":("+i.join("|")+")"},{begin:":(:)?("+o.join("|")+")"}]},l.CSS_VARIABLE,{
1143
- className:"attribute",begin:"\\b("+r.join("|")+")\\b"},{begin:/:/,end:/[;}{]/,
1144
- contains:[l.BLOCK_COMMENT,l.HEXCOLOR,l.IMPORTANT,l.CSS_NUMBER_MODE,...s,{
1145
- begin:/(url|data-uri)\(/,end:/\)/,relevance:0,keywords:{built_in:"url data-uri"
1146
- },contains:[{className:"string",begin:/[^)]/,endsWithParent:!0,excludeEnd:!0}]
1147
- },l.FUNCTION_DISPATCH]},{begin:n.lookahead(/@/),end:"[{;]",relevance:0,
1148
- illegal:/:/,contains:[{className:"keyword",begin:/@-?\w[\w]*(-\w+)*/},{
1149
- begin:/\s/,endsWithParent:!0,excludeEnd:!0,relevance:0,keywords:{
1150
- $pattern:/[a-z-]+/,keyword:"and or not only",attribute:t.join(" ")},contains:[{
1151
- begin:/[a-z-]+(?=:)/,className:"attribute"},...s,l.CSS_NUMBER_MODE]}]},{
1152
- className:"selector-tag",begin:"\\b("+e.join("|")+")\\b"}]}}})()
1153
- ;hljs.registerLanguage("css",e)})();/*! `perl` grammar compiled for Highlight.js 11.4.0 */
1154
- (()=>{var e=(()=>{"use strict";return e=>{
1155
- const n=e.regex,t=/[dualxmsipngr]{0,12}/,r={$pattern:/[\w.]+/,
1156
- 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"
1157
- },s={className:"subst",begin:"[$@]\\{",end:"\\}",keywords:r},i={begin:/->\{/,
1158
- end:/\}/},a={variants:[{begin:/\$\d/},{
1159
- begin:n.concat(/[$%@](\^\w\b|#\w+(::\w+)*|\{\w+\}|\w+(::\w*)*)/,"(?![A-Za-z])(?![@$%])")
1160
- },{begin:/[$%@][^\s\w{]/,relevance:0}]
1161
- },c=[e.BACKSLASH_ESCAPE,s,a],o=[/!/,/\//,/\|/,/\?/,/'/,/"/,/#/],g=(e,r,s="\\1")=>{
1162
- const i="\\1"===s?s:n.concat(s,r)
1163
- ;return n.concat(n.concat("(?:",e,")"),r,/(?:\\.|[^\\\/])*?/,i,/(?:\\.|[^\\\/])*?/,s,t)
1164
- },l=(e,r,s)=>n.concat(n.concat("(?:",e,")"),r,/(?:\\.|[^\\\/])*?/,s,t),d=[a,e.HASH_COMMENT_MODE,e.COMMENT(/^=\w/,/=cut/,{
1165
- endsWithParent:!0}),i,{className:"string",contains:c,variants:[{
1166
- begin:"q[qwxr]?\\s*\\(",end:"\\)",relevance:5},{begin:"q[qwxr]?\\s*\\[",
1167
- end:"\\]",relevance:5},{begin:"q[qwxr]?\\s*\\{",end:"\\}",relevance:5},{
1168
- begin:"q[qwxr]?\\s*\\|",end:"\\|",relevance:5},{begin:"q[qwxr]?\\s*<",end:">",
1169
- relevance:5},{begin:"qw\\s+q",end:"q",relevance:5},{begin:"'",end:"'",
1170
- contains:[e.BACKSLASH_ESCAPE]},{begin:'"',end:'"'},{begin:"`",end:"`",
1171
- contains:[e.BACKSLASH_ESCAPE]},{begin:/\{\w+\}/,relevance:0},{
1172
- begin:"-?\\w+\\s*=>",relevance:0}]},{className:"number",
1173
- begin:"(\\b0[0-7_]+)|(\\b0x[0-9a-fA-F_]+)|(\\b[1-9][0-9_]*(\\.[0-9_]+)?)|[0_]\\b",
1174
- relevance:0},{
1175
- begin:"(\\/\\/|"+e.RE_STARTERS_RE+"|\\b(split|return|print|reverse|grep)\\b)\\s*",
1176
- keywords:"split return print reverse grep",relevance:0,
1177
- contains:[e.HASH_COMMENT_MODE,{className:"regexp",variants:[{
1178
- begin:g("s|tr|y",n.either(...o,{capture:!0}))},{begin:g("s|tr|y","\\(","\\)")},{
1179
- begin:g("s|tr|y","\\[","\\]")},{begin:g("s|tr|y","\\{","\\}")}],relevance:2},{
1180
- className:"regexp",variants:[{begin:/(m|qr)\/\//,relevance:0},{
1181
- begin:l("(?:m|qr)?",/\//,/\//)},{begin:l("m|qr",n.either(...o,{capture:!0
1182
- }),/\1/)},{begin:l("m|qr",/\(/,/\)/)},{begin:l("m|qr",/\[/,/\]/)},{
1183
- begin:l("m|qr",/\{/,/\}/)}]}]},{className:"function",beginKeywords:"sub",
1184
- end:"(\\s*\\(.*?\\))?[;{]",excludeEnd:!0,relevance:5,contains:[e.TITLE_MODE]},{
1185
- begin:"-\\w\\b",relevance:0},{begin:"^__DATA__$",end:"^__END__$",
1186
- subLanguage:"mojolicious",contains:[{begin:"^@@.*",end:"$",className:"comment"}]
1187
- }];return s.contains=d,i.contains=d,{name:"Perl",aliases:["pl","pm"],keywords:r,
1188
- contains:d}}})();hljs.registerLanguage("perl",e)})();/*! `swift` grammar compiled for Highlight.js 11.4.0 */
1189
- (()=>{var e=(()=>{"use strict";function e(e){
1190
- return e?"string"==typeof e?e:e.source:null}function a(e){return t("(?=",e,")")}
1191
- function t(...a){return a.map((a=>e(a))).join("")}function n(...a){const t=(e=>{
1192
- const a=e[e.length-1]
1193
- ;return"object"==typeof a&&a.constructor===Object?(e.splice(e.length-1,1),a):{}
1194
- })(a);return"("+(t.capture?"":"?:")+a.map((a=>e(a))).join("|")+")"}
1195
- const i=e=>t(/\b/,e,/\w$/.test(e)?/\b/:/\B/),s=["Protocol","Type"].map(i),u=["init","self"].map(i),c=["Any","Self"],r=["actor","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","isolated","nonisolated","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"],p=["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"],d=n(/[/=\-+!*%<>&|^~?]/,/[\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=n(d,/[\u0300-\u036F]/,/[\u1DC0-\u1DFF]/,/[\u20D0-\u20FF]/,/[\uFE00-\uFE0F]/,/[\uFE20-\uFE2F]/),b=t(d,F,"*"),h=n(/[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=n(h,/\d/,/[\u0300-\u036F\u1DC0-\u1DFF\u20D0-\u20FF\uFE20-\uFE2F]/),w=t(h,f,"*"),y=t(/[A-Z]/,f,"*"),g=["autoclosure",t(/convention\(/,n("swift","block","c"),/\)/),"discardableResult","dynamicCallable","dynamicMemberLookup","escaping","frozen","GKInspectable","IBAction","IBDesignable","IBInspectable","IBOutlet","IBSegueAction","inlinable","main","nonobjc","NSApplicationMain","NSCopying","NSManaged",t(/objc\(/,w,/\)/),"objc","objcMembers","propertyWrapper","requires_stored_property_inits","resultBuilder","testable","UIApplicationMain","unknown","usableFromInline"],E=["iOS","iOSApplicationExtension","macOS","macOSApplicationExtension","macCatalyst","macCatalystApplicationExtension","watchOS","watchOSApplicationExtension","tvOS","tvOSApplicationExtension","swift"]
1196
- ;return e=>{const d={match:/\s+/,relevance:0},h=e.COMMENT("/\\*","\\*/",{
1197
- contains:["self"]}),v=[e.C_LINE_COMMENT_MODE,h],A={match:[/\./,n(...s,...u)],
1198
- className:{2:"keyword"}},N={match:t(/\./,n(...r)),relevance:0
1199
- },C=r.filter((e=>"string"==typeof e)).concat(["_|0"]),D={variants:[{
1200
- className:"keyword",
1201
- match:n(...r.filter((e=>"string"!=typeof e)).concat(c).map(i),...u)}]},k={
1202
- $pattern:n(/\b\w+/,/#\w+/),keyword:C.concat(m),literal:o},B=[A,N,D],_=[{
1203
- match:t(/\./,n(...p)),relevance:0},{className:"built_in",
1204
- match:t(/\b/,n(...p),/(?=\()/)}],S={match:/->/,relevance:0},M=[S,{
1205
- className:"operator",relevance:0,variants:[{match:b},{match:`\\.(\\.|${F})+`}]
1206
- }],x="([0-9a-fA-F]_*)+",I={className:"number",relevance:0,variants:[{
1207
- match:"\\b(([0-9]_*)+)(\\.(([0-9]_*)+))?([eE][+-]?(([0-9]_*)+))?\\b"},{
1208
- match:`\\b0x(${x})(\\.(${x}))?([pP][+-]?(([0-9]_*)+))?\\b`},{
1209
- match:/\b0o([0-7]_*)+\b/},{match:/\b0b([01]_*)+\b/}]},L=(e="")=>({
1210
- className:"subst",variants:[{match:t(/\\/,e,/[0\\tnr"']/)},{
1211
- match:t(/\\/,e,/u\{[0-9a-fA-F]{1,8}\}/)}]}),O=(e="")=>({className:"subst",
1212
- match:t(/\\/,e,/[\t ]*(?:[\r\n]|\r\n)/)}),T=(e="")=>({className:"subst",
1213
- label:"interpol",begin:t(/\\/,e,/\(/),end:/\)/}),$=(e="")=>({begin:t(e,/"""/),
1214
- end:t(/"""/,e),contains:[L(e),O(e),T(e)]}),j=(e="")=>({begin:t(e,/"/),
1215
- end:t(/"/,e),contains:[L(e),T(e)]}),P={className:"string",
1216
- variants:[$(),$("#"),$("##"),$("###"),j(),j("#"),j("##"),j("###")]},K={
1217
- match:t(/`/,w,/`/)},z=[K,{className:"variable",match:/\$\d+/},{
1218
- className:"variable",match:`\\$${f}+`}],q=[{match:/(@|#(un)?)available/,
1219
- className:"keyword",starts:{contains:[{begin:/\(/,end:/\)/,keywords:E,
1220
- contains:[...M,I,P]}]}},{className:"keyword",match:t(/@/,n(...g))},{
1221
- className:"meta",match:t(/@/,w)}],U={match:a(/\b[A-Z]/),relevance:0,contains:[{
1222
- className:"type",
1223
- match:t(/(AV|CA|CF|CG|CI|CL|CM|CN|CT|MK|MP|MTK|MTL|NS|SCN|SK|UI|WK|XC)/,f,"+")
1224
- },{className:"type",match:y,relevance:0},{match:/[?!]+/,relevance:0},{
1225
- match:/\.\.\./,relevance:0},{match:t(/\s+&\s+/,a(y)),relevance:0}]},Z={
1226
- begin:/</,end:/>/,keywords:k,contains:[...v,...B,...q,S,U]};U.contains.push(Z)
1227
- ;const V={begin:/\(/,end:/\)/,relevance:0,keywords:k,contains:["self",{
1228
- match:t(w,/\s*:/),keywords:"_|0",relevance:0
1229
- },...v,...B,..._,...M,I,P,...z,...q,U]},W={begin:/</,end:/>/,contains:[...v,U]
1230
- },G={begin:/\(/,end:/\)/,keywords:k,contains:[{
1231
- begin:n(a(t(w,/\s*:/)),a(t(w,/\s+/,w,/\s*:/))),end:/:/,relevance:0,contains:[{
1232
- className:"keyword",match:/\b_\b/},{className:"params",match:w}]
1233
- },...v,...B,...M,I,P,...q,U,V],endsParent:!0,illegal:/["']/},R={
1234
- match:[/func/,/\s+/,n(K.match,w,b)],className:{1:"keyword",3:"title.function"},
1235
- contains:[W,G,d],illegal:[/\[/,/%/]},X={
1236
- match:[/\b(?:subscript|init[?!]?)/,/\s*(?=[<(])/],className:{1:"keyword"},
1237
- contains:[W,G,d],illegal:/\[|%/},H={match:[/operator/,/\s+/,b],className:{
1238
- 1:"keyword",3:"title"}},J={begin:[/precedencegroup/,/\s+/,y],className:{
1239
- 1:"keyword",3:"title"},contains:[U],keywords:[...l,...o],end:/}/}
1240
- ;for(const e of P.variants){const a=e.contains.find((e=>"interpol"===e.label))
1241
- ;a.keywords=k;const t=[...B,..._,...M,I,P,...z];a.contains=[...t,{begin:/\(/,
1242
- end:/\)/,contains:["self",...t]}]}return{name:"Swift",keywords:k,
1243
- contains:[...v,R,X,{beginKeywords:"struct protocol class extension enum actor",
1244
- end:"\\{",excludeEnd:!0,keywords:k,contains:[e.inherit(e.TITLE_MODE,{
1245
- className:"title.class",begin:/[A-Za-z$_][\u00C0-\u02B80-9A-Za-z$_]*/}),...B]
1246
- },H,J,{beginKeywords:"import",end:/$/,contains:[...v],relevance:0
1247
- },...B,..._,...M,I,P,...z,...q,U,V]}}})();hljs.registerLanguage("swift",e)})();/*! `go` grammar compiled for Highlight.js 11.4.0 */
1248
- (()=>{var e=(()=>{"use strict";return e=>{const n={
1249
- keyword:["break","case","chan","const","continue","default","defer","else","fallthrough","for","func","go","goto","if","import","interface","map","package","range","return","select","struct","switch","type","var"],
1250
- type:["bool","byte","complex64","complex128","error","float32","float64","int8","int16","int32","int64","string","uint8","uint16","uint32","uint64","int","uint","uintptr","rune"],
1251
- literal:["true","false","iota","nil"],
1252
- built_in:["append","cap","close","complex","copy","imag","len","make","new","panic","print","println","real","recover","delete"]
1253
- };return{name:"Go",aliases:["golang"],keywords:n,illegal:"</",
1254
- contains:[e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,{className:"string",
1255
- variants:[e.QUOTE_STRING_MODE,e.APOS_STRING_MODE,{begin:"`",end:"`"}]},{
1256
- className:"number",variants:[{begin:e.C_NUMBER_RE+"[i]",relevance:1
1257
- },e.C_NUMBER_MODE]},{begin:/:=/},{className:"function",beginKeywords:"func",
1258
- end:"\\s*(\\{|$)",excludeEnd:!0,contains:[e.TITLE_MODE,{className:"params",
1259
- begin:/\(/,end:/\)/,endsParent:!0,keywords:n,illegal:/["']/}]}]}}})()
1260
- ;hljs.registerLanguage("go",e)})();/*! `javascript` grammar compiled for Highlight.js 11.4.0 */
1261
- (()=>{var e=(()=>{"use strict"
1262
- ;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"],t=["Object","Function","Boolean","Symbol","Math","Date","Number","BigInt","String","RegExp","Array","Float32Array","Float64Array","Int8Array","Uint8Array","Uint8ClampedArray","Int16Array","Int32Array","Uint16Array","Uint32Array","BigInt64Array","BigUint64Array","Set","Map","WeakSet","WeakMap","ArrayBuffer","SharedArrayBuffer","Atomics","DataView","JSON","Promise","Generator","GeneratorFunction","AsyncFunction","Reflect","Proxy","Intl","WebAssembly"],s=["Error","EvalError","InternalError","RangeError","ReferenceError","SyntaxError","TypeError","URIError"],r=["setInterval","setTimeout","clearInterval","clearTimeout","require","exports","eval","isFinite","isNaN","parseFloat","parseInt","decodeURI","decodeURIComponent","encodeURI","encodeURIComponent","escape","unescape"],c=["arguments","this","super","console","window","document","localStorage","module","global"],i=[].concat(r,t,s)
1263
- ;return o=>{const l=o.regex,b=e,d={begin:/<[A-Za-z0-9\\._:-]+/,
1264
- end:/\/[A-Za-z0-9\\._:-]+>|\/>/,isTrulyOpeningTag:(e,n)=>{
1265
- const a=e[0].length+e.index,t=e.input[a]
1266
- ;if("<"===t||","===t)return void n.ignoreMatch();let s
1267
- ;">"===t&&(((e,{after:n})=>{const a="</"+e[0].slice(1)
1268
- ;return-1!==e.input.indexOf(a,n)})(e,{after:a
1269
- })||n.ignoreMatch()),(s=e.input.substr(a).match(/^\s+extends\s+/))&&0===s.index&&n.ignoreMatch()
1270
- }},g={$pattern:e,keyword:n,literal:a,built_in:i,"variable.language":c
1271
- },u="\\.([0-9](_?[0-9])*)",m="0|[1-9](_?[0-9])*|0[0-7]*[89][0-9]*",E={
1272
- className:"number",variants:[{
1273
- begin:`(\\b(${m})((${u})|\\.)?|(${u}))[eE][+-]?([0-9](_?[0-9])*)\\b`},{
1274
- begin:`\\b(${m})\\b((${u})\\b|\\.)?|(${u})\\b`},{
1275
- begin:"\\b(0|[1-9](_?[0-9])*)n\\b"},{
1276
- begin:"\\b0[xX][0-9a-fA-F](_?[0-9a-fA-F])*n?\\b"},{
1277
- begin:"\\b0[bB][0-1](_?[0-1])*n?\\b"},{begin:"\\b0[oO][0-7](_?[0-7])*n?\\b"},{
1278
- begin:"\\b0[0-7]+n?\\b"}],relevance:0},A={className:"subst",begin:"\\$\\{",
1279
- end:"\\}",keywords:g,contains:[]},y={begin:"html`",end:"",starts:{end:"`",
1280
- returnEnd:!1,contains:[o.BACKSLASH_ESCAPE,A],subLanguage:"xml"}},N={
1281
- begin:"css`",end:"",starts:{end:"`",returnEnd:!1,
1282
- contains:[o.BACKSLASH_ESCAPE,A],subLanguage:"css"}},_={className:"string",
1283
- begin:"`",end:"`",contains:[o.BACKSLASH_ESCAPE,A]},f={className:"comment",
1284
- variants:[o.COMMENT(/\/\*\*(?!\/)/,"\\*/",{relevance:0,contains:[{
1285
- begin:"(?=@[A-Za-z]+)",relevance:0,contains:[{className:"doctag",
1286
- begin:"@[A-Za-z]+"},{className:"type",begin:"\\{",end:"\\}",excludeEnd:!0,
1287
- excludeBegin:!0,relevance:0},{className:"variable",begin:b+"(?=\\s*(-)|$)",
1288
- endsParent:!0,relevance:0},{begin:/(?=[^\n])\s/,relevance:0}]}]
1289
- }),o.C_BLOCK_COMMENT_MODE,o.C_LINE_COMMENT_MODE]
1290
- },h=[o.APOS_STRING_MODE,o.QUOTE_STRING_MODE,y,N,_,E];A.contains=h.concat({
1291
- begin:/\{/,end:/\}/,keywords:g,contains:["self"].concat(h)})
1292
- ;const v=[].concat(f,A.contains),p=v.concat([{begin:/\(/,end:/\)/,keywords:g,
1293
- contains:["self"].concat(v)}]),S={className:"params",begin:/\(/,end:/\)/,
1294
- excludeBegin:!0,excludeEnd:!0,keywords:g,contains:p},w={variants:[{
1295
- match:[/class/,/\s+/,b,/\s+/,/extends/,/\s+/,l.concat(b,"(",l.concat(/\./,b),")*")],
1296
- scope:{1:"keyword",3:"title.class",5:"keyword",7:"title.class.inherited"}},{
1297
- match:[/class/,/\s+/,b],scope:{1:"keyword",3:"title.class"}}]},R={relevance:0,
1298
- match:l.either(/\bJSON/,/\b[A-Z][a-z]+([A-Z][a-z]*|\d)*/,/\b[A-Z]{2,}([A-Z][a-z]+|\d)+([A-Z][a-z]*)*/,/\b[A-Z]{2,}[a-z]+([A-Z][a-z]+|\d)*([A-Z][a-z]*)*/),
1299
- className:"title.class",keywords:{_:[...t,...s]}},O={variants:[{
1300
- match:[/function/,/\s+/,b,/(?=\s*\()/]},{match:[/function/,/\s*(?=\()/]}],
1301
- className:{1:"keyword",3:"title.function"},label:"func.def",contains:[S],
1302
- illegal:/%/},k={
1303
- match:l.concat(/\b/,(I=[...r,"super"],l.concat("(?!",I.join("|"),")")),b,l.lookahead(/\(/)),
1304
- className:"title.function",relevance:0};var I;const x={
1305
- begin:l.concat(/\./,l.lookahead(l.concat(b,/(?![0-9A-Za-z$_(])/))),end:b,
1306
- excludeBegin:!0,keywords:"prototype",className:"property",relevance:0},T={
1307
- match:[/get|set/,/\s+/,b,/(?=\()/],className:{1:"keyword",3:"title.function"},
1308
- contains:[{begin:/\(\)/},S]
1309
- },C="(\\([^()]*(\\([^()]*(\\([^()]*\\)[^()]*)*\\)[^()]*)*\\)|"+o.UNDERSCORE_IDENT_RE+")\\s*=>",M={
1310
- match:[/const|var|let/,/\s+/,b,/\s*/,/=\s*/,/(async\s*)?/,l.lookahead(C)],
1311
- keywords:"async",className:{1:"keyword",3:"title.function"},contains:[S]}
1312
- ;return{name:"Javascript",aliases:["js","jsx","mjs","cjs"],keywords:g,exports:{
1313
- PARAMS_CONTAINS:p,CLASS_REFERENCE:R},illegal:/#(?![$_A-z])/,
1314
- contains:[o.SHEBANG({label:"shebang",binary:"node",relevance:5}),{
1315
- label:"use_strict",className:"meta",relevance:10,
1316
- begin:/^\s*['"]use (strict|asm)['"]/
1317
- },o.APOS_STRING_MODE,o.QUOTE_STRING_MODE,y,N,_,f,E,R,{className:"attr",
1318
- begin:b+l.lookahead(":"),relevance:0},M,{
1319
- begin:"("+o.RE_STARTERS_RE+"|\\b(case|return|throw)\\b)\\s*",
1320
- keywords:"return throw case",relevance:0,contains:[f,o.REGEXP_MODE,{
1321
- className:"function",begin:C,returnBegin:!0,end:"\\s*=>",contains:[{
1322
- className:"params",variants:[{begin:o.UNDERSCORE_IDENT_RE,relevance:0},{
1323
- className:null,begin:/\(\s*\)/,skip:!0},{begin:/\(/,end:/\)/,excludeBegin:!0,
1324
- excludeEnd:!0,keywords:g,contains:p}]}]},{begin:/,/,relevance:0},{match:/\s+/,
1325
- relevance:0},{variants:[{begin:"<>",end:"</>"},{
1326
- match:/<[A-Za-z0-9\\._:-]+\s*\/>/},{begin:d.begin,
1327
- "on:begin":d.isTrulyOpeningTag,end:d.end}],subLanguage:"xml",contains:[{
1328
- begin:d.begin,end:d.end,skip:!0,contains:["self"]}]}]},O,{
1329
- beginKeywords:"while if switch catch for"},{
1330
- begin:"\\b(?!function)"+o.UNDERSCORE_IDENT_RE+"\\([^()]*(\\([^()]*(\\([^()]*\\)[^()]*)*\\)[^()]*)*\\)\\s*\\{",
1331
- returnBegin:!0,label:"func.def",contains:[S,o.inherit(o.TITLE_MODE,{begin:b,
1332
- className:"title.function"})]},{match:/\.\.\./,relevance:0},x,{match:"\\$"+b,
1333
- relevance:0},{match:[/\bconstructor(?=\s*\()/],className:{1:"title.function"},
1334
- contains:[S]},k,{relevance:0,match:/\b[A-Z][A-Z_0-9]+\b/,
1335
- className:"variable.constant"},w,T,{match:/\$[(.]/}]}}})()
1336
- ;hljs.registerLanguage("javascript",e)})();/*! `rust` grammar compiled for Highlight.js 11.4.0 */
1337
- (()=>{var e=(()=>{"use strict";return e=>{const t=e.regex,n={
1338
- className:"title.function.invoke",relevance:0,
1339
- begin:t.concat(/\b/,/(?!let\b)/,e.IDENT_RE,t.lookahead(/\s*\(/))
1340
- },a="([ui](8|16|32|64|128|size)|f(32|64))?",i=["drop ","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!"]
1341
- ;return{name:"Rust",aliases:["rs"],keywords:{$pattern:e.IDENT_RE+"!?",
1342
- type:["i8","i16","i32","i64","i128","isize","u8","u16","u32","u64","u128","usize","f32","f64","str","char","bool","Box","Option","Result","String","Vec"],
1343
- 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"],
1344
- literal:["true","false","Some","None","Ok","Err"],built_in:i},illegal:"</",
1345
- contains:[e.C_LINE_COMMENT_MODE,e.COMMENT("/\\*","\\*/",{contains:["self"]
1346
- }),e.inherit(e.QUOTE_STRING_MODE,{begin:/b?"/,illegal:null}),{
1347
- className:"string",variants:[{begin:/b?r(#*)"(.|\n)*?"\1(?!#)/},{
1348
- begin:/b?'\\?(x\w{2}|u\w{4}|U\w{8}|.)'/}]},{className:"symbol",
1349
- begin:/'[a-zA-Z_][a-zA-Z0-9_]*/},{className:"number",variants:[{
1350
- begin:"\\b0b([01_]+)"+a},{begin:"\\b0o([0-7_]+)"+a},{
1351
- begin:"\\b0x([A-Fa-f0-9_]+)"+a},{
1352
- begin:"\\b(\\d[\\d_]*(\\.[0-9_]+)?([eE][+-]?[0-9_]+)?)"+a}],relevance:0},{
1353
- begin:[/fn/,/\s+/,e.UNDERSCORE_IDENT_RE],className:{1:"keyword",
1354
- 3:"title.function"}},{className:"meta",begin:"#!?\\[",end:"\\]",contains:[{
1355
- className:"string",begin:/"/,end:/"/}]},{
1356
- begin:[/let/,/\s+/,/(?:mut\s+)?/,e.UNDERSCORE_IDENT_RE],className:{1:"keyword",
1357
- 3:"keyword",4:"variable"}},{
1358
- begin:[/for/,/\s+/,e.UNDERSCORE_IDENT_RE,/\s+/,/in/],className:{1:"keyword",
1359
- 3:"variable",5:"keyword"}},{begin:[/type/,/\s+/,e.UNDERSCORE_IDENT_RE],
1360
- className:{1:"keyword",3:"title.class"}},{
1361
- begin:[/(?:trait|enum|struct|union|impl|for)/,/\s+/,e.UNDERSCORE_IDENT_RE],
1362
- className:{1:"keyword",3:"title.class"}},{begin:e.IDENT_RE+"::",keywords:{
1363
- keyword:"Self",built_in:i}},{className:"punctuation",begin:"->"},n]}}})()
1364
- ;hljs.registerLanguage("rust",e)})();/*! `java` grammar compiled for Highlight.js 11.4.0 */
1365
- (()=>{var e=(()=>{"use strict"
1366
- ;var e="\\.([0-9](_*[0-9])*)",a="[0-9a-fA-F](_*[0-9a-fA-F])*",n={
1367
- className:"number",variants:[{
1368
- begin:`(\\b([0-9](_*[0-9])*)((${e})|\\.)?|(${e}))[eE][+-]?([0-9](_*[0-9])*)[fFdD]?\\b`
1369
- },{begin:`\\b([0-9](_*[0-9])*)((${e})[fFdD]?\\b|\\.([fFdD]\\b)?)`},{
1370
- begin:`(${e})[fFdD]?\\b`},{begin:"\\b([0-9](_*[0-9])*)[fFdD]\\b"},{
1371
- begin:`\\b0[xX]((${a})\\.?|(${a})?\\.(${a}))[pP][+-]?([0-9](_*[0-9])*)[fFdD]?\\b`
1372
- },{begin:"\\b(0|[1-9](_*[0-9])*)[lL]?\\b"},{begin:`\\b0[xX](${a})[lL]?\\b`},{
1373
- begin:"\\b0(_*[0-7])*[lL]?\\b"},{begin:"\\b0[bB][01](_*[01])*[lL]?\\b"}],
1374
- relevance:0};function s(e,a,n){return-1===n?"":e.replace(a,(t=>s(e,a,n-1)))}
1375
- return e=>{e.regex
1376
- ;const a="[\xc0-\u02b8a-zA-Z_$][\xc0-\u02b8a-zA-Z_$0-9]*",t=a+s("(?:<"+a+"~~~(?:\\s*,\\s*"+a+"~~~)*>)?",/~~~/g,2),i={
1377
- keyword:["synchronized","abstract","private","var","static","if","const ","for","while","strictfp","finally","protected","import","native","final","void","enum","else","break","transient","catch","instanceof","volatile","case","assert","package","default","public","try","switch","continue","throws","protected","public","private","module","requires","exports","do","sealed"],
1378
- literal:["false","true","null"],
1379
- type:["char","boolean","long","float","int","byte","short","double"],
1380
- built_in:["super","this"]},r={className:"meta",begin:"@"+a,contains:[{
1381
- begin:/\(/,end:/\)/,contains:["self"]}]},l={className:"params",begin:/\(/,
1382
- end:/\)/,keywords:i,relevance:0,contains:[e.C_BLOCK_COMMENT_MODE],endsParent:!0}
1383
- ;return{name:"Java",aliases:["jsp"],keywords:i,illegal:/<\/|#/,
1384
- contains:[e.COMMENT("/\\*\\*","\\*/",{relevance:0,contains:[{begin:/\w+@/,
1385
- relevance:0},{className:"doctag",begin:"@[A-Za-z]+"}]}),{
1386
- begin:/import java\.[a-z]+\./,keywords:"import",relevance:2
1387
- },e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,{begin:/"""/,end:/"""/,
1388
- className:"string",contains:[e.BACKSLASH_ESCAPE]
1389
- },e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,{
1390
- match:[/\b(?:class|interface|enum|extends|implements|new)/,/\s+/,a],className:{
1391
- 1:"keyword",3:"title.class"}},{match:/non-sealed/,scope:"keyword"},{
1392
- begin:[a,/\s+/,a,/\s+/,/=/],className:{1:"type",3:"variable",5:"operator"}},{
1393
- begin:[/record/,/\s+/,a],className:{1:"keyword",3:"title.class"},
1394
- contains:[l,e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE]},{
1395
- beginKeywords:"new throw return else",relevance:0},{
1396
- begin:["(?:"+t+"\\s+)",e.UNDERSCORE_IDENT_RE,/\s*(?=\()/],className:{
1397
- 2:"title.function"},keywords:i,contains:[{className:"params",begin:/\(/,
1398
- end:/\)/,keywords:i,relevance:0,
1399
- contains:[r,e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,n,e.C_BLOCK_COMMENT_MODE]
1400
- },e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE]},n,r]}}})()
1401
- ;hljs.registerLanguage("java",e)})();
1237
+ },{className:"number",begin:e.C_NUMBER_RE+"\\b",relevance:0},s,o,{
1238
+ className:"string",relevance:0,begin:/'/,end:/'/,contains:[{match:/''/,
1239
+ scope:"char.escape",relevance:0}]},a],c=[...l]
1240
+ ;return c.pop(),c.push(i),r.contains=c,{name:"YAML",case_insensitive:!0,
1241
+ aliases:["yml"],contains:l}}});const Pe=ne;for(const e of Object.keys(Ue)){
1242
+ const n=e.replace("grmr_","").replace("_","-");Pe.registerLanguage(n,Ue[e])}
1243
+ return Pe}()
1244
+ ;"object"==typeof exports&&"undefined"!=typeof module&&(module.exports=hljs);