ts-markdown-parser
Version:
TypeScript library that converts markdown to HTML (with code support).
40 lines • 598 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.reservedKeywords = void 0;
exports.reservedKeywords = [
"False",
"None",
"True",
"and",
"assert",
"break",
"class",
"continue",
"def",
"del",
"elif",
"else",
"except",
"finally",
"for",
"from",
"global",
"import",
"lambda",
"match",
"main",
"not",
"or",
"pass",
"raise",
"return",
"try",
"while",
"with",
"yield",
"if",
"in",
"is",
"as",
];
//# sourceMappingURL=keywords.js.map