0.0.2 • Published 1 year ago

mathjax-svelte v0.0.2

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

mathjax-svelte

Svelte component for MathJax

Installation

npm i mathjax-svelte

Usage

<script>
	import { Math } from 'mathjax-svelte';
</script>

<Math t={`E = {mc^2}`} />

API

Math

Props

PropertyTypeDefault
tString""
displayBooleantrue
settingsObject{}
classString""

useMathJax

import type { Writable } from 'svelte/store';

function useMathJax(config: MathJaxConfig): {
	output: Writable<string>;
	error: Writable<any>;
};

MathJaxConfig

export interface MathJaxConfig {
	t: string;
	node?: HTMLElement;
	display?: boolean;
	settings?: OptionList;
}

Developing

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

Building

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.