cyberstorm/book/observe/event.instance.tera

23 lines
487 B
Plaintext

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