-
Notifications
You must be signed in to change notification settings - Fork 215
Closed
Labels
Description
Hey! First, thanks for your jQuery plugin! :)
I'm currently trying to integrate your lib into a build-in Sphinx documentation. All works fine except for nested selectors.
The context use by the plugin follow this structure:
<div id="context">
<h1>First level title</h1>
<div>
<h2>Second level title</h2>
<div>
<h3>Third level title</h3>
</div>
<h2>Second level title</h2>
<div>
<h3>Third level title</h3>
</div>
</div>
<h1>First level title</h1>
<div>
<h2>Second level title</h2>
<div>
<h3>Third level title</h3>
</div>
</div>
</div>
The javascript use in order to tocify the context is:
$(selector).tocify({
"context": "#context",
"selectors": "h1,h2,h3"
});
The TOC only shows h1.
It seems selectors are defined on the same level in the demo. I don't know if it is the reason of the issue. Anyway, is there a solution?