You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
|`dist/fonts`| The fonts required to render MathLive content |
153
-
|`dist/sounds`| The optional sound files used when typing on the virtual keyboard |
154
-
|`dist/mathlive.min.mjs`| MathLive library, as a JavScript module, minified |
155
-
|`dist/mathlive.mjs`| MathLive library, as a JavScript module, not minified, useful for debugging |
156
-
|`dist/mathlive.min.js`| MathLive library, as a UMD package if your environment doesn't support modules, minified |
157
-
|`dist/mathlive.js`| MathLive library, as a UMD package if your environment doesn't support modules, not minified, useful for debugging |
158
-
|`dist/mathlive-ssr.min.mjs`| A subset of the MathLive library which can be used on the server side or in environments that do not have a DOM. Does not include the MathfieldElement, but does include functions such as `convertLatexToMarkup()`|
159
-
|`dist/mathlive-static.css`| A stylesheet which can be used when the MathLive library is not loaded to display markup that has been rendered by the MathLive library previously. Rarely needed. |
160
-
|`dist/types`| The TypeScript declaration files. Not needed at runtime. |
149
+
|`./fonts/`| The fonts required to render MathLive content |
150
+
|`./sounds/`| The optional sound files used when typing on the virtual keyboard |
151
+
|`./mathlive.min.mjs`| MathLive library, as a JavScript module, minified |
152
+
|`./mathlive.mjs`| MathLive library, as a JavScript module, not minified, useful for debugging |
153
+
|`./mathlive.min.js`| MathLive library, as a UMD package if your environment doesn't support modules, minified |
154
+
|`./mathlive.js`| MathLive library, as a UMD package if your environment doesn't support modules, not minified, useful for debugging |
155
+
|`./mathlive-ssr.min.mjs`| A subset of the MathLive library which can be used on the server side or in environments that do not have a DOM. Does not include the MathfieldElement, but does include functions such as `convertLatexToMarkup()`|
156
+
|`./mathlive-static.css`| A stylesheet which can be used when the MathLive library is not loaded to display markup that has been rendered by the MathLive library previously. Rarely needed. |
157
+
|`./types/`| The TypeScript declaration files. Not needed at runtime. |
161
158
162
159
Controlling the Location of the `fonts` Folder
163
160
@@ -197,7 +194,7 @@ can modify the names of the files containting assets, including a hash string
197
194
in order to provide more control of the caching of those assets.
198
195
199
196
In this case, you should include the stylesheet `mathlive-fonts.css` to your
200
-
project. You can find this stylesheet in the`dist` folder on GitHub or in the
197
+
project. You can find this stylesheet in the
201
198
`mathlive` folder in your `node_modules` directory.
202
199
203
200
If you import this stylesheet, use `import mathliveStyle from "mathlive/fonts.css"`
@@ -277,7 +274,7 @@ fonts will be injected in the current page.
277
274
save the output or return it from a server-side process.
278
275
279
276
To correctly display this markup, import the stylesheet with
280
-
`import "mathlive/static.css"`. The stylesheet can be found in `dist/mathlive-static.css`.
277
+
`import "mathlive/static.css"`.
281
278
282
279
When using this method, the MathLive library is not necessary to render the
283
280
formula once the markup has been generated.
@@ -287,7 +284,7 @@ formula once the markup has been generated.
0 commit comments