npm.io
0.1.8 • Published 5 years ago

@code-blocks/from-html

Licence
GPLv2
Version
0.1.8
Deps
2
Size
3 kB
Vulns
0
Weekly
0
Stars
11

@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 HTML
  • languages 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