Skip to content

Commit 8de21c3

Browse files
committed
Add 'raw' tag to YAML snippets
Documentatio for idrange and topology plugins include the pipe ('|') character, which requires the usage of the 'raw' tag for proper rendering using Jekill. Both documents were fixed, by wrapping the offending YAML snippets with "{% raw %}/{% endraw %}"
1 parent d973ed1 commit 8de21c3

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

src/documentation/plugins/idrange.md

+2
Original file line numberDiff line numberDiff line change
@@ -131,6 +131,7 @@ Example playbook to ensure an AD-trust idrange is present, with range type 'trus
131131
132132
Example playbook to ensure an AD-trust idrange has auto creation of groups set to 'hybrid':
133133
134+
{% raw %}
134135
```yaml
135136
---
136137
- name: Playbook to manage IPA idrange.
@@ -145,6 +146,7 @@ Example playbook to ensure an AD-trust idrange has auto creation of groups set t
145146
name: ad_id_range
146147
auto_private_groups: "hybrid"
147148
```
149+
{% endraw %}
148150
149151
Example playbook to make sure an idrange is absent:
150152

src/documentation/plugins/topology.md

+2
Original file line numberDiff line numberDiff line change
@@ -121,6 +121,7 @@ Example playbook to verify a topology suffix:
121121

122122
Example playbook to add or remove or check or reinitialize a list of topology segments:
123123

124+
{% raw %}
124125
```yaml
125126
---
126127
- name: Add topology segments
@@ -150,6 +151,7 @@ Example playbook to add or remove or check or reinitialize a list of topology se
150151
#state: reinitialized
151152
loop: "{{ ipatopology_segments | default([]) }}"
152153
```
154+
{% endraw %}
153155

154156

155157
Variables

0 commit comments

Comments
 (0)