prism-code-editor
Version:
Lightweight, extensible code editor component for the web using Prism
24 lines (23 loc) • 520 B
JavaScript
import { a as languages, c as tokenize } from "../../core-8vQkh0Rd.js";
import { t as embeddedIn } from "../../templating-BJI19oXa.js";
import "./markup.js";
import "./lua.js";
//#region src/prism/languages/etlua.js
languages.etlua = {
"etlua": {
pattern: /<%[^]+?%>/,
inside: {
"delimiter": {
pattern: /^..[=-]?|-?%>$/g,
alias: "punctuation"
},
"language-lua": {
pattern: /[^]+/,
inside: "lua"
}
}
},
[tokenize]: embeddedIn("html")
};
//#endregion
//# sourceMappingURL=etlua.js.map