html-to-md
Version:
A JS library for convert HTML<String> to markdown<String>, gzip 10kb
9 lines (8 loc) • 346 B
TypeScript
import SelfCloseTag from '../SelfCloseTag';
import { SelfCloseTagOptions } from '../type';
declare class Input extends SelfCloseTag {
constructor(str: string, tagName: string | undefined, options: SelfCloseTagOptions);
beforeMergeSpace(): "" | "[x] " | "[ ] ";
exec(prevGap?: string, endGap?: string): string;
}
export default Input;