add initial marp implementation with sample content and build configuration
This commit is contained in:
9
node_modules/mathjax-full/components/src/tex-chtml-full-speech/preload.js
generated
vendored
Normal file
9
node_modules/mathjax-full/components/src/tex-chtml-full-speech/preload.js
generated
vendored
Normal 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'
|
||||
);
|
||||
19
node_modules/mathjax-full/components/src/tex-chtml-full-speech/tex-chtml-full-speech.js
generated
vendored
Normal file
19
node_modules/mathjax-full/components/src/tex-chtml-full-speech/tex-chtml-full-speech.js
generated
vendored
Normal 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';
|
||||
9
node_modules/mathjax-full/components/src/tex-chtml-full-speech/webpack.config.js
generated
vendored
Normal file
9
node_modules/mathjax-full/components/src/tex-chtml-full-speech/webpack.config.js
generated
vendored
Normal 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
|
||||
);
|
||||
Reference in New Issue
Block a user