Svelte component for MathJax
Based on mathjax-react
npm i mathjax-svelte
npm i mathjax-full@3
<script>
import { Math } from 'mathjax-svelte';
</script>
<Math t={`E = {mc^2}`} />
Props
Property | Type | Default |
---|---|---|
t | String | "" |
display | Boolean | true |
settings | Object | {} |
class | String | "" |
import type { Writable } from 'svelte/store';
function useMathJax(config: MathJaxConfig): {
output: Writable<string>;
error: Writable<any>;
};
export interface MathJaxConfig {
t: string;
node?: HTMLElement;
display?: boolean;
settings?: OptionList;
}
Once you've created a project and installed dependencies with npm install
(or pnpm install
or yarn
), start a development server:
npm run dev
# or start the server and open the app in a new browser tab
npm run dev -- --open
To create a production version of your app:
npm run build
To deploy your app, you may need to install an adapter for your target environment.