docs: close paragraphs before preformatted text
It's illegal to nest block-level elements such as <pre> inside <p> in
HTML. This means that when the paragraphs gets closed after a <pre>-tag,
we end up closing a non-existent tag, so the browser inserts a dummy
<p>-tag. This is entirely pointless, so let's just close these tags
before the <pre>-tag instead.
Signed-off-by: Erik Faye-Lund <erik.faye-lund@collabora.com>
Reviewed-by: Eric Engestrom <eric.engestrom@intel.com>
diff --git a/docs/application-issues.html b/docs/application-issues.html
index 005d9f5..a0fdf9c 100644
--- a/docs/application-issues.html
+++ b/docs/application-issues.html
@@ -62,9 +62,11 @@
<p>
For example, if the game was released in 2001, do
+</p>
<pre>
export MESA_EXTENSION_MAX_YEAR=2001
</pre>
+<p>
before running the game.
</p>