erpnext_utils/u_utils/jinja.py

7 lines
160 B
Python
Raw Normal View History

2022-06-23 11:06:44 +02:00
import frappe
import markdownify
@frappe.whitelist()
def html_to_markdown(html_content):
return markdownify.markdownify(html_content, heading_style="ATX")