Skip to content

Commit 571afd3

Browse files
aduh95targos
authored andcommitted
tools,doc: add "legacy" badge in the TOC
PR-URL: #37949 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: James M Snell <jasnell@gmail.com>
1 parent 35a382e commit 571afd3

2 files changed

Lines changed: 11 additions & 3 deletions

File tree

‎doc/api_assets/style.css‎

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -515,6 +515,14 @@ hr {
515515
padding:1px3px;
516516
border-radius:3px;
517517
}
518+
#toc .stability_3::after {
519+
background-color:var(--blue1);
520+
color:var(--white);
521+
content:"legacy";
522+
margin-left:.25rem;
523+
padding:1px3px;
524+
border-radius:3px;
525+
}
518526

519527
#apicontentli {
520528
margin-bottom:.5rem;

‎tools/doc/html.js‎

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -234,9 +234,9 @@ function preprocessElements({ filename }) {
234234
const[,prefix,number,explication]=
235235
text.value.match(STABILITY_RE);
236236

237-
constisStabilityIndex=
238-
index-2===headingIndex||// General.
239-
index-3===headingIndex;// With api_metadata block.
237+
// Stability indices are never more than 3 nodes away from their
238+
// heading.
239+
constisStabilityIndex=index-headingIndex<=3;
240240

241241
if(heading&&isStabilityIndex){
242242
heading.stability=number;

0 commit comments

Comments
 (0)