react-ui-scrollspy icon indicating copy to clipboard operation
react-ui-scrollspy copied to clipboard

Nested structure not supported

Open nifanic opened this issue 2 years ago • 0 comments

Nice component, but doesn't seem supporting nested HTML structure, like—

<chapter>
  <header id="section1">Chapter 1</header>
  <main>
    <section>
      <header id="subheaderA">Subheader A</header>
    </section>
    <section>
      <header id="subheaderB">Subheader B</header>
    </section>
  </main>
</chapter>

In this example, if we are on Subheader A, react-ui-scrollspy will still highlight Chapter 1 as active.

nifanic avatar Jan 30 '23 02:01 nifanic