From: Erik Faye-Lund Date: Thu, 18 Apr 2019 14:12:08 +0000 (+0200) Subject: docs: close paragraphs before preformatted text X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=41573d486fb933012ffb411b49b5cb56b3605865;p=mesa.git docs: close paragraphs before preformatted text It's illegal to nest block-level elements such as
 inside 

in HTML. This means that when the paragraphs gets closed after a

-tag,
we end up closing a non-existent tag, so the browser inserts a dummy

-tag. This is entirely pointless, so let's just close these tags before the

-tag instead.

Signed-off-by: Erik Faye-Lund 
Reviewed-by: Eric Engestrom 
---

diff --git a/docs/application-issues.html b/docs/application-issues.html
index 005d9f585fb..a0fdf9c30f4 100644
--- a/docs/application-issues.html
+++ b/docs/application-issues.html
@@ -62,9 +62,11 @@ older than the given year.
 
 

For example, if the game was released in 2001, do +

 export MESA_EXTENSION_MAX_YEAR=2001
 
+

before running the game.

diff --git a/docs/download.html b/docs/download.html index 840f363cdf6..3807f836d14 100644 --- a/docs/download.html +++ b/docs/download.html @@ -46,14 +46,14 @@ Mesa releases are available in two formats: .tar.xz and .tar.gz To unpack the tarball: +

 	tar xf mesa-Y.N.P.tar.xz
 
-or +

or

 	tar xf mesa-Y.N.P.tar.gz
 
-

Contents

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:

32-bit build on x86 linux: +

 [binaries]
 c = '/usr/bin/gcc'
@@ -378,10 +379,10 @@ cpu_family = 'x86'
 cpu = 'i686'
 endian = 'little'
 
-

64-bit build on ARM linux: +

 [binaries]
 c = '/usr/bin/aarch64-linux-gnu-gcc'
@@ -397,10 +398,10 @@ cpu_family = 'aarch64'
 cpu = 'aarch64'
 endian = 'little'
 
-

64-bit build on x86 windows: +

 [binaries]
 c = '/usr/bin/x86_64-w64-mingw32-gcc'
@@ -416,7 +417,6 @@ cpu_family = 'x86_64'
 cpu = 'i686'
 endian = 'little'
 
-

diff --git a/docs/submittingpatches.html b/docs/submittingpatches.html index 6b9a07357b3..4afa56f5e0b 100644 --- a/docs/submittingpatches.html +++ b/docs/submittingpatches.html @@ -239,8 +239,8 @@ your email administrator for this.)

Tick the following when creating the MR. It allows developers to rebase your work on top of master. -

Allow commits from members who can merge to the target branch

+
Allow commits from members who can merge to the target branch

If you revise your patches based on code review and push an update to your branch, you should maintain a clean history