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

View File

@@ -0,0 +1,20 @@
import ParseOptions from '../ParseOptions.js';
import { MmlNode } from '../../../core/MmlTree/MmlNode.js';
import { Property } from '../../../core/Tree/Node.js';
import { MathItem } from '../../../core/MathItem.js';
import { MathDocument } from '../../../core/MathDocument.js';
declare type MATHITEM = MathItem<any, any, any>;
declare type MATHDOCUMENT = MathDocument<any, any, any>;
declare type FilterData = {
math: MATHITEM;
document: MATHDOCUMENT;
data: ParseOptions;
};
export declare let balanceRules: (arg: FilterData) => void;
export declare let setProperty: (node: MmlNode, property: string, value: Property) => void;
export declare let getProperty: (node: MmlNode, property: string) => Property;
export declare let removeProperty: (node: MmlNode, property: string) => void;
export declare let makeBsprAttributes: (arg: FilterData) => void;
export declare let saveDocument: (arg: FilterData) => void;
export declare let clearDocument: (_arg: FilterData) => void;
export {};