23 lines
522 B
Plaintext
23 lines
522 B
Plaintext
{% import "macros.tera" as macros %}
|
|
|
|
# {{ macros::doc_title(doc=document) }}
|
|
|
|
{{ macros::doc_details(doc=document) }}
|
|
{%- if document.WindowsEvent %}
|
|
{{ macros::doc_details_next(title="Type", value="Windows event") }}
|
|
{% endif -%}
|
|
{{ macros::doc_details_next(title="Description", value=document.description) }}
|
|
|
|
## Description
|
|
|
|
{{ macros::content(content=document.content) }}
|
|
|
|
{% if document.WindowsEvent %}
|
|
## Samples
|
|
{% for sample in document.WindowsEvent.sample %}
|
|
```xml
|
|
{{ sample.xml }}
|
|
```
|
|
{% endfor %}
|
|
{% endif %}
|