mathpix-markdown-it
Version:
Mathpix-markdown-it is an open source implementation of the mathpix-markdown spec written in Typescript. It relies on the following open source libraries: MathJax v3 (to render math with SVGs), markdown-it (for standard Markdown parsing)
13 lines • 468 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.isListType = exports.ListType = void 0;
var ListType;
(function (ListType) {
ListType["itemize"] = "itemize";
ListType["enumerate"] = "enumerate";
})(ListType = exports.ListType || (exports.ListType = {}));
var isListType = function (value) {
return Object.values(ListType).includes(value);
};
exports.isListType = isListType;
//# sourceMappingURL=latex-list-types.js.map