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,9 @@
import {Loader} from '../../../js/components/loader.js';
Loader.preLoad(
'loader', 'startup',
'core',
'input/tex-full',
'output/chtml', 'output/chtml/fonts/tex.js',
'ui/menu', 'a11y/assistive-mml', 'a11y/sre'
);

View File

@@ -0,0 +1,19 @@
import '../startup/init.js';
import './preload.js';
import '../core/core.js';
import '../input/tex-full/tex-full.js';
import '../output/chtml/chtml.js';
import '../output/chtml/fonts/tex/tex.js';
import '../ui/menu/menu.js';
import '../a11y/assistive-mml/assistive-mml.js';
import '../a11y/sre/sre.js';
import MathMaps from '../../../js/a11y/mathmaps.js';
import base from 'speech-rule-engine/lib/mathmaps/base.json';
import en from 'speech-rule-engine/lib/mathmaps/en.json';
import nemeth from 'speech-rule-engine/lib/mathmaps/nemeth.json';
MathMaps.set('base', base);
MathMaps.set('en', en);
MathMaps.set('nemeth', nemeth);
import '../startup/startup.js';

View File

@@ -0,0 +1,9 @@
const PACKAGE = require('../../webpack.common.js');
module.exports = PACKAGE(
'tex-chtml-full-speech', // the package to build
'../../../js', // location of the MathJax js library
[ // packages to link to
],
__dirname // our directory
);