@code-blocks/from-html
v0.1.8
Published
Get code blocks from HTML
Downloads
55
Readme
@code-blocks/from-html
Extracts code blocks from HTML.
Usage
import fromHTML from '@code-blocks/from-html'
fromHTML(someHTML, ['line-chart', 'csv-table'])
Takes two arguments:
html
a string containing HTMLlanguages
an array of languages to extract
Returns an array of parts:
export interface PartCode {
type: 'code'
language: string
content: string
}
export interface PartOther {
type: 'other'
content: string
}
export type Part = PartCode | PartOther