mirror of
https://github.com/oshliaer/google-apps-script-awesome-list.git
synced 2026-07-15 21:25:56 -05:00
[GH-ISSUE #200] fix: add Fetch subsection to README TOC #1687
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @oshliaer on GitHub (Apr 26, 2026).
Original GitHub issue: https://github.com/oshliaer/google-apps-script-awesome-list/issues/200
Originally assigned to: @oshliaer on GitHub.
Problem
README.mdcontains a#### Fetchsubsection inside## Snippets and assorted > ### Snippets(line 317), but the table of contents at the top of the file (<!-- toc --> / <!-- tocstop -->, lines 5--40) doesn't list it. Other sibling subsections of### Snippets(Collections, Spreadsheets, Gmail, XML, JSON) are listed.Why it matters
The TOC is hand-maintained -- there is no generator script -- so this drift will compound every time someone adds a subsection without remembering to update the TOC. The CONTRIBUTING.md rule for new top-level sections (update TOC + add
[goto top ⇑]link) extends to subsections too.Fix
Add the entry to the TOC, matching the existing indentation (4 spaces, since it's a
####under###):Found by
Came up while auditing consistency between
CONTRIBUTING.md,README.md, the PR template, and the actual repo structure during review of #199.