Only hide top-level duplicated title
In change I48b923a67010c92945c46ab00de0b090ba7cd465, way back in 2016, we started hiding duplicate titles caused by us including the first h1 title we found at the top of the page. Unfortunately, the fix for this was to hide *all* h1 titles found in the main docs body. Sphinx doesn't insist on only a single h1 title (in fact, the sphinx-quickstart tool produces an index.rst with two h1 titles) which means we were hiding a lot of information unwittingly. Fix this by only hiding the first title, as originally intended. Also replace deprecated whitelist_externals by allowlist_externals in tox.ini. Change-Id: Ic8fc5e1256b4ab8925401fe6781210729a68d2aa Signed-off-by: Stephen Finucane <sfinucan@redhat.com>
This commit is contained in:
parent
11ae49c4fa
commit
20bf587d68
@ -927,9 +927,9 @@ table.highlighttable {
|
||||
width: 100%; }
|
||||
|
||||
/* TODO(stephenfin): Group this */
|
||||
.docs-body .section h1 {
|
||||
.docs-body .section:first-of-type h1 {
|
||||
display: none; }
|
||||
.docs-body section h1 {
|
||||
.docs-body section:first-of-type h1 {
|
||||
display: none; }
|
||||
|
||||
img.align-left,
|
||||
|
Loading…
Reference in New Issue
Block a user