UNPKG

html-to-md

Version:

A JS library for convert HTML<String> to markdown<String>, gzip 10kb

8 lines (7 loc) 253 B
import Tag from '../Tag'; import { TagOptions } from '../type'; declare class Span extends Tag { constructor(str: string, tagName: string | undefined, options: TagOptions); exec(prevGap?: string, endGap?: string): string; } export default Span;