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