2.0.0-alpha.2 • Published 3 years ago

@yozora/html-math v2.0.0-alpha.2

Weekly downloads
-
License
MIT
Repository
github
Last release
3 years ago

This component is for rendering the Yozora Markdown AST node IMath produced by @yozora/tokenizer-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-math
  • yarn

    yarn add @yozora/html-math

Usage

  • Basic:

    import type { IMath } from '@yozora/ast'
    import renderMath from '@yozora/html-math'
    
    const math: IMath = { "type": "math", "value": "$$x^2 + y^2 = z^2$$" }
    renderMath(math)
    // => <div class="yozora-math">$$x^2 + y^2 = z^2$$</div>

Related