mirror of
https://github.com/Smaug123/KaTeX
synced 2025-10-04 18:58:39 +00:00
* Create separate entry point of copy-tex for webpack * Update katex.webpack.js comment * Generate ECMAScript for contrib * Update dependencies * Comment out documentations
13 lines
398 B
JavaScript
13 lines
398 B
JavaScript
/**
|
|
* This is the webpack entry point for KaTeX. As ECMAScript, flow[1] and jest[2]
|
|
* doesn't support CSS modules natively, a separate entry point is used and
|
|
* it is not flowtyped.
|
|
*
|
|
* [1] https://gist.github.com/lambdahands/d19e0da96285b749f0ef
|
|
* [2] https://facebook.github.io/jest/docs/en/webpack.html
|
|
*/
|
|
import './src/katex.less';
|
|
import katex from './katex.js';
|
|
|
|
export default katex;
|