How to refer to the title of a section, as a bookmark in a separate md file, by a menu link?

I have a Hugo-driven structure (in wowchemy) as below

- config
    - _default
        - menus.yaml

- content
    - authors
        - admin
            - _index.md
    - home
        - A.md

According to this structure, A is section of my home page. Now, what I want is when one presses a menu entry A_button, it jumps at the start of Section A in my home page. So, let’s say we have A.md as follows:

---
title: <div id="section-A">Section A</div>
subtitle: ''
---
Some text

But I don’t know how I should refer to this bookmark in my menus.yaml. In particular, the following does not work.

main:
  - name: Home
    url: '/index.html'
    weight: 1
  - name: A_button
    url: 'index.html/#section-A'
    weight: 10

How can I achieve this bookmarking?

“A” looks like a file, not a “section” of your home page as described in the Wowchemy documentation.

https://wowchemy.com/docs/getting-started/page-builder/#create-a-section

cc @alcarazr

“A” is literally a file, but it is loaded as a decorated section according to some CSS data in my theme. If I simply add the content of “A” as a section to my homepage, I lose all those decorations. Then, we get to the problem I have right now, in call a bookmark in file “A” to be called in my homepage menu.