[GH-ISSUE #200] fix: add Fetch subsection to README TOC #1889

Open
opened 2026-05-08 13:12:23 -05:00 by GiteaMirror · 0 comments
Owner

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.md contains a #### Fetch subsection 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 ###):

     * [JSON](#json)
+    * [Fetch](#fetch)
   * [Assorted](#assorted)

Found by

Came up while auditing consistency between CONTRIBUTING.md, README.md, the PR template, and the actual repo structure during review of #199.

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.md` contains a `#### Fetch` subsection 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 `###`): ```diff * [JSON](#json) + * [Fetch](#fetch) * [Assorted](#assorted) ``` ## Found by Came up while auditing consistency between `CONTRIBUTING.md`, `README.md`, the PR template, and the actual repo structure during review of #199.
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: github-starred/google-apps-script-awesome-list#1889