diff options
author | Erik Faye-Lund <[email protected]> | 2019-06-03 18:30:23 +0200 |
---|---|---|
committer | Erik Faye-Lund <[email protected]> | 2019-06-05 23:48:45 +0200 |
commit | 8620f53212df1a96f5ae1d180dacb28418bf6cc8 (patch) | |
tree | c09844b604cccb8eb72088ec532a550403f6490a /docs/envvars.html | |
parent | d5e273aad24ae28b53422599d17177714aabf3e7 (diff) |
docs: do not use br-tag for non-significant breaks
According to the W3C, we shouldn't use the br-tag unless the line-break
is part of the content:
https://www.w3.org/TR/2011/WD-html5-author-20110809/the-br-element.html
All of these instances are for non-content usage, and is as such technically
out-of-spec. So let's either remove them, or split paragraphs, based on
how related the content are.
Signed-off-by: Erik Faye-Lund <[email protected]>
Reviewed-by: Emil Velikov <[email protected]>
Reviewed-by: Eric Engestrom <[email protected]>
Diffstat (limited to 'docs/envvars.html')
-rw-r--r-- | docs/envvars.html | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/docs/envvars.html b/docs/envvars.html index e4d929ebd14..3afdcee8543 100644 --- a/docs/envvars.html +++ b/docs/envvars.html @@ -52,11 +52,8 @@ sometimes be useful for debugging end-user issues. <li>MESA_DEBUG - if set, error messages are printed to stderr. For example, if the application generates a GL_INVALID_ENUM error, a corresponding error message indicating where the error occurred, and possibly why, will be - printed to stderr.<br> - - For release builds, MESA_DEBUG defaults to off (no debug output). - - MESA_DEBUG accepts the following comma-separated list of named + printed to stderr. For release builds, MESA_DEBUG defaults to off (no debug + output). MESA_DEBUG accepts the following comma-separated list of named flags, which adds extra behaviour to just set MESA_DEBUG=1: <ul> <li>silent - turn off debug messages. Only useful for debug builds.</li> |