| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -515,6 +515,14 @@ hr { | |||
| 515 | 515 | padding: 1px 3px; | |
| 516 | 516 | border-radius: 3px; | |
| 517 | 517 | } | |
| 518 | + #toc .stability_3::after { | ||
| 519 | + background-color: var(--blue1); | ||
| 520 | + color: var(--white); | ||
| 521 | + content: "legacy"; | ||
| 522 | + margin-left: .25rem; | ||
| 523 | + padding: 1px 3px; | ||
| 524 | + border-radius: 3px; | ||
| 525 | + } | ||
| 518 | 526 | ||
| 519 | 527 | #apicontent li { | |
| 520 | 528 | margin-bottom: .5rem; | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -234,9 +234,9 @@ function preprocessElements({ filename }) { | |||
| 234 | 234 | const [, prefix, number, explication] = | |
| 235 | 235 | text.value.match(STABILITY_RE); | |
| 236 | 236 | ||
| 237 | - const isStabilityIndex = | ||
| 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 | + const isStabilityIndex = index - headingIndex <= 3; | ||
| 240 | 240 | ||
| 241 | 241 | if (heading && isStabilityIndex) { | |
| 242 | 242 | heading.stability = number; | |
| Back | FazBrowse Home | New Git URL |
0 commit comments