Allow markdown usage inside `alert`s

This commit is contained in:
Yash Karandikar 2022-10-25 21:16:48 -05:00
parent aab24c520f
commit 6a519a1725
2 changed files with 3 additions and 3 deletions

View File

@ -17,7 +17,7 @@ Just in case, you might also want to keep around a USB keyboard and an HDMI moni
### Switch to systemd-networkd
{% alert(type="warning") %}
This setup <em>will</em> break any DNS servers already running on your Pi, such as Pi-Hole, so make sure you know what you're getting into.
This setup *will* break any DNS servers already running on your Pi, such as Pi-Hole, so make sure you know what you're getting into.
{% end %}
You need to be root for the whole guide, so either use `sudo -Es` or `sudo su` to switch to the root user.
@ -68,7 +68,7 @@ network={
```
{% alert(type="warning") %}
Your password will be stored in <em>plain text</em> so make sure this file is not readable by anyone you don't want seeing the password
Your password will be stored in *plain text* so make sure this file is not readable by anyone you don't want seeing the password
{% end %}
### Setting up the bridge

View File

@ -1,3 +1,3 @@
<p class="{{ type }}">
{{ body | safe }}
{{ body | markdown(inline=true) | safe }}
</p>