Files
old-riskletpy/document_template.yml

38 lines
713 B
YAML

- 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 }}"