summaryrefslogtreecommitdiffstats
path: root/docs/meson.html
diff options
context:
space:
mode:
authorErik Faye-Lund <[email protected]>2019-04-18 16:12:08 +0200
committerErik Faye-Lund <[email protected]>2019-05-02 11:09:16 +0000
commit41573d486fb933012ffb411b49b5cb56b3605865 (patch)
treecf77f4a9418c38b56c3b9d46007e6a5db0cfb4f2 /docs/meson.html
parent5630540a275216d0f1387f249765c03bbc6b64ea (diff)
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 <[email protected]> Reviewed-by: Eric Engestrom <[email protected]>
Diffstat (limited to 'docs/meson.html')
-rw-r--r--docs/meson.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/meson.html b/docs/meson.html
index b516a459c3a..f52ec08fbbf 100644
--- a/docs/meson.html
+++ b/docs/meson.html
@@ -357,6 +357,7 @@ of those, as they'll have the right values for your system:
<p>
32-bit build on x86 linux:
+</p>
<pre>
[binaries]
c = '/usr/bin/gcc'
@@ -378,10 +379,10 @@ cpu_family = 'x86'
cpu = 'i686'
endian = 'little'
</pre>
-</p>
<p>
64-bit build on ARM linux:
+</p>
<pre>
[binaries]
c = '/usr/bin/aarch64-linux-gnu-gcc'
@@ -397,10 +398,10 @@ cpu_family = 'aarch64'
cpu = 'aarch64'
endian = 'little'
</pre>
-</p>
<p>
64-bit build on x86 windows:
+</p>
<pre>
[binaries]
c = '/usr/bin/x86_64-w64-mingw32-gcc'
@@ -416,7 +417,6 @@ cpu_family = 'x86_64'
cpu = 'i686'
endian = 'little'
</pre>
-</p>
</div>
</body>