14 lines
796 B
HTML
14 lines
796 B
HTML
{% set color = color|default('#333333') %}
|
|
<div style="font-size: {{ font_size }}pt; line-height: {{ line_height }}; text-align: {{ text_align }}; color: {{ color }}; margin: 10px 0; white-space: pre-wrap; word-wrap: break-word;">
|
|
<style>
|
|
.paragraph-content p { margin: 0.5em 0; }
|
|
.paragraph-content p:first-child { margin-top: 0; }
|
|
.paragraph-content p:last-child { margin-bottom: 0; }
|
|
.paragraph-content br { display: block; content: ''; margin: 0.5em 0; }
|
|
.paragraph-content table { border-collapse: collapse; width: 100%; margin: 1em 0; }
|
|
.paragraph-content table td, .paragraph-content table th { border: 1px solid #ddd; padding: 8px; text-align: left; }
|
|
.paragraph-content table th { font-weight: 500; }
|
|
</style>
|
|
<div class="paragraph-content">{{ content|safe }}</div>
|
|
</div>
|