seitime-frappe/frappe/templates/print_format/macros/Markdown.html
2021-10-22 19:20:42 +05:30

9 lines
177 B
HTML

{% extends "templates/print_format/macros/Data.html" %}
{%- block value -%}
<div class="value">
{{ frappe.utils.md_to_html(doc.get(df.fieldname)) }}
</div>
{%- endblock -%}