Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
tools: udpate doc tools to accommodate GFM footnotes
PR-URL: #40477
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
  • Loading branch information
Trott authored and BethGriggs committed Nov 24, 2021
1 parent 4581997 commit 59de0f7
Show file tree
Hide file tree
Showing 3 changed files with 426 additions and 166 deletions.
8 changes: 8 additions & 0 deletions tools/doc/allhtml.mjs
Expand Up @@ -52,6 +52,14 @@ for (const link of toc.match(/<a.*?>/g)) {
.replace(/<a href="#(?!DEP[0-9]{4})([^"]+)"/g, (match, anchor) => {
return `<a href="#${moduleName}_${anchor}"`;
})
// Update footnote id attributes on anchors
.replace(/<a href="([^"]+)" id="(user-content-fn[^"]+)"/g, (match, href, id) => {
return `<a href="${href}" id="${moduleName}_${id}"`;
})
// Update footnote id attributes on list items
.replace(/<(\S+) id="(user-content-fn-\d+)"/g, (match, tagName, id) => {
return `<${tagName} id="${moduleName}_${id}"`;
})
// Prefix all links to other docs modules with those module names
.replace(/<a href="((\w[^#"]*)\.html)#/g, (match, href, linkModule) => {
if (!htmlFiles.includes(href)) return match;
Expand Down

0 comments on commit 59de0f7

Please sign in to comment.