Refactored syntax highlighting shortcodes into markdown

This commit is contained in:
Julien Dessaux 2023-04-23 22:33:49 +02:00
parent 9e6bb1a3e5
commit ea435049b3
Signed by: adyxax
GPG key ID: F92E51B86E07177E
71 changed files with 297 additions and 297 deletions

View file

@ -10,16 +10,16 @@ tags:
Here is the task to use in order to achieve that :
{{< highlight yaml >}}
```yaml
- name: Dump all vars
action: template src=dumpall.j2 dest=ansible.all
{{< /highlight >}}
```
## Associated template
And here is the template to use with it :
{{< highlight jinja >}}
```jinja
Module Variables ("vars"):
--------------------------------
{{ vars | to_nice_json }}
@ -39,7 +39,7 @@ GROUPS Variables ("groups"):
HOST Variables ("hostvars"):
--------------------------------
{{ hostvars | to_nice_json }}
{{< /highlight >}}
```
## Output