erpnext_utils/u_utils/utils.py
2022-06-23 12:59:22 +02:00

6 lines
160 B
Python

import frappe
import markdownify
@frappe.whitelist()
def html_to_markdown(html_content):
return markdownify.markdownify(html_content, heading_style="ATX")