1
0

add initial marp implementation with sample content and build configuration

This commit is contained in:
2025-09-13 18:13:22 +02:00
parent dcacc9b409
commit e5f219507f
10319 changed files with 1402023 additions and 0 deletions

21
node_modules/mathjax-full/js/core/Handler.d.ts generated vendored Normal file
View File

@@ -0,0 +1,21 @@
import { MathDocument, AbstractMathDocument, MathDocumentConstructor } from './MathDocument.js';
import { OptionList } from '../util/Options.js';
import { DOMAdaptor } from '../core/DOMAdaptor.js';
export interface Handler<N, T, D> {
name: string;
adaptor: DOMAdaptor<N, T, D>;
priority: number;
documentClass: MathDocumentConstructor<AbstractMathDocument<N, T, D>>;
handlesDocument(document: any): boolean;
create(document: any, options: OptionList): MathDocument<N, T, D>;
}
export declare abstract class AbstractHandler<N, T, D> implements Handler<N, T, D> {
static NAME: string;
adaptor: DOMAdaptor<N, T, D>;
priority: number;
documentClass: MathDocumentConstructor<AbstractMathDocument<N, T, D>>;
constructor(adaptor: DOMAdaptor<N, T, D>, priority?: number);
get name(): string;
handlesDocument(_document: any): boolean;
create(document: any, options: OptionList): MathDocument<N, T, D>;
}