0.1.8 • Published 3 years ago

@code-blocks/from-html v0.1.8

Weekly downloads
11
License
GPLv2
Repository
github
Last release
3 years ago

@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