2.0.0-alpha.2 • Published 3 years ago
@yozora/html-strong v2.0.0-alpha.2
This component is for rendering the Yozora Markdown AST node IStrong
produced by @yozora/tokenizer-strong into HTML string.
This component has been built into @yozora/html-markdown, you can use it directly.
Install
npm
npm install --save @yozora/html-strong
yarn
yarn add @yozora/html-strong
Usage
Basic:
import type { IStrong, IYastNode } from '@yozora/ast' import renderStrong from '@yozora/html-strong' // The implementation of the following function has been omitted. const renderChildren: (nodes: IYastNode[]) => string = function () {} const strong = { "type": "strong", "children": [ { "type": "text", "value": "yozora is cool!" } ] } renderStrong(strong as IStrong, renderChildren) // => <strong class="yozora-strong"><span class="yozora-text">yozora is cool!</span></strong>
Related
2.0.0-alpha.0
4 years ago
2.0.0-alpha.1
3 years ago
2.0.0-alpha.2
3 years ago
1.0.0-alpha.4
4 years ago
1.0.0-alpha.3
4 years ago
1.0.0-alpha.2
4 years ago
1.0.0-alpha.1
4 years ago
1.0.0-alpha.0
4 years ago