I have several sections with the same name but inside different parent sections:
# Page title
## Section A
### Examples
## Section B
### Examples
markdownlint linter gives me this warning:
MD024/no-duplicate-heading/no-duplicate-header: Multiple headings with the same content.
https://github.com/DavidAnson/markdownlint/blob/main/doc/md024.md
How can I turn off this warning and still be warned when I have several sections with the same name on the same level, like so:
# Page title
## Section A
## Section A
?