ts-markdown-parser
Version:
TypeScript library that converts markdown to HTML (with code support).
57 lines • 891 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.reservedFunctions = exports.reservedKeywords = void 0;
exports.reservedKeywords = [
"and",
"break",
"do",
"else",
"elseif",
"end",
"false",
"for",
"function",
"if",
"in",
"local",
"nil",
"not",
"or",
"repeat",
"return",
"then",
"true",
"until",
"while",
];
exports.reservedFunctions = [
"assert",
"collectgarbage",
"dofile",
"error",
"ipairs",
"load",
"loadfile",
"next",
"pairs",
"pcall",
"print",
"rawequal",
"rawget",
"rawset",
"select",
"setmetatable",
"tonumber",
"tostring",
"type",
"xpcall",
"coroutine",
"string",
"table",
"math",
"io",
"os",
"package",
"debug",
];
//# sourceMappingURL=keywords.js.map