I want to remove the top-level section from an auto-generated table of contents. I'm using VS Code Extension Markdown All In One.
Given this example
# My Header
## First Section
hello
## Second Section
goodbye
Using Markdown All In One in VS Code, I select command Markdown All In One: Update Table Of Contents. It generates the following table of contents
- [My Header](#my-header)
- [First Section](#first-section)
- [Second Section](#second-section)
I want the following table of contents
- [First Section](#first-section)
- [Second Section](#second-section)