#7 Dodati su export/import za template, isto tako template za document

This commit is contained in:
2025-02-13 17:55:46 +01:00
parent 54ef0248f5
commit f41997fd59
12 changed files with 229 additions and 6 deletions

37
document_template.yml Normal file
View File

@@ -0,0 +1,37 @@
- segment_type: "title"
content: "Document Title"
- segment_type: "subtitle"
content: "Document Subtitle"
- segment_type: "h1"
content: "Introduction"
- segment_type: "body"
content: "{{ dynamic_intro }}"
- segment_type: "h2"
content: "Section 1: Details"
- segment_type: "body"
content: |
<p>This is a static section with an embedded HTML table:</p>
<table>
<tr>
<th>Header 1</th>
<th>Header 2</th>
</tr>
<tr>
<td>Data 1</td>
<td>Data 2</td>
</tr>
</table>
- segment_type: "quote"
content: "{{ dynamic_quote }}"
- segment_type: "h3"
content: "Subsection 1.1"
- segment_type: "body"
content: "{{ dynamic_subsection }}"