@yozora/html-inline-math
TypeScript icon, indicating that this package has built-in type declarations

2.0.0-alpha.2 • Public • Published

@yozora/html-inline-math


This component is for rendering the Yozora Markdown AST node IInlineMath produced by @yozora/tokenizer-inline-math into HTML string.

This component has been built into [@yozora/html-markdown][], you can use it directly.

Install

  • npm

    npm install --save @yozora/html-inline-math
  • yarn

    yarn add @yozora/html-inline-math

Usage

  • Basic:

    import type { IInlineMath } from '@yozora/ast'
    import renderInlineMath from '@yozora/html-inline-math'
    
    const inlineMath: IInlineMath = {
      "type": "inlineMath",
      "value": "$x^2 + y^2 = z^2$"
    }
    renderInlineMath(inlineMath)
    // => <span class="yozora-inline-math">$x^2 + y^2 = z^2$</span>

Related

Package Sidebar

Install

npm i @yozora/html-inline-math

Weekly Downloads

2

Version

2.0.0-alpha.2

License

MIT

Unpacked Size

6.6 kB

Total Files

6

Last publish

Collaborators

  • lemonclown