Skip to content

Commit bb1330b

Browse files
authored
index.html --> fix: raise article link text cap from 120 to 200 chars
1 parent 7751fba commit bb1330b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

docs/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1795,7 +1795,7 @@ <h3 id="panel-heading">Contents</h3>
17951795

17961796
doc.querySelectorAll('a[href]').forEach(a => {
17971797
const text = a.textContent.trim();
1798-
if (text.length < 5 || text.length > 120) return;
1798+
if (text.length < 5 || text.length > 200) return;
17991799

18001800
// Skip nav/utility containers
18011801
const parent = a.closest('nav, header, footer, [role="navigation"], [role="banner"]');

0 commit comments

Comments
 (0)