notion-page-to-html
Version:
It converts public notion pages to html from url
6 lines • 324 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.replaceLineBreakByBrTag = void 0;
var replaceLineBreakByBrTag = function (str) { return str.replace(/[\r\n]/g, '</br>'); };
exports.replaceLineBreakByBrTag = replaceLineBreakByBrTag;
//# sourceMappingURL=replace-line-break-to-br-tag.js.map