Patterns like in this line, i.e.
- `/load quick [slot]`, `/load q[slot]`, `/quickload [slot]`, `/ql [slot]`
render improperly on the website:
<li>`/load quick <div class="highlight inline"><code>, </code></div>
/load q<div class="highlight inline"><code>, </code></div>
/quickload <div class="highlight inline"><code>, </code></div>
/ql [slot]`</li>
The cause might be related to this regex matching patterns like:
and taking precedence, where the opening and closing backticks should be rendered as they do in the line above, i.e. rendering:
- `/save quick`, `/quicksave`, `/qs`
as
<li><code>/save quick</code>, <code>/quicksave</code>, <code>/qs</code></li>