]>
luflow.net public git repositories - flow-web.git/blob - static/highlight/languages/nestedtext.js
1 /*! `nestedtext` grammar compiled for Highlight.js 11.11.1 */
3 var hljsGrammar
= (function () {
8 Description: NestedText is a file format for holding data that is to be entered, edited, or viewed by people.
9 Website: https://nestedtext.org/
13 /** @type LanguageFn */
14 function nestedtext(hljs
) {
17 /^\s*(?=\S)/, // have to look forward here to avoid polynomial backtracking
27 const DICTIONARY_ITEM
= {
29 /^\s*(?=\S)/, // have to look forward here to avoid polynomial backtracking
76 hljs
.inherit(hljs
.HASH_COMMENT_MODE
, {
92 hljs
.registerLanguage('nestedtext', hljsGrammar
);