2.0.0-alpha.2 • Published 3 years ago

@yozora/html-inline-code 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 IInlineCode produced by @yozora/tokenizer-inline-code 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-code
  • yarn

    yarn add @yozora/html-inline-code

Usage

  • Basic:

    import type { IInlineCode } from '@yozora/ast'
    import renderInlineCode from '@yozora/html-inline-code'
    
    const inlineCode: IInlineCode = {
      "type": "inlineCode",
      "value": "dijkstra"
    }
    renderInlineCode(inlineCode)
    // => <code class="yozora-inline-code">dijkstra</code>

Related