6 lines
178 B
TypeScript
6 lines
178 B
TypeScript
|
|
import { renderTablesAsParagraphRows } from "./baijiahao";
|
||
|
|
|
||
|
|
export function prepareQiehaoArticleHtml(html: string): string {
|
||
|
|
return renderTablesAsParagraphRows(html).trim();
|
||
|
|
}
|