emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
* Identical attributes id="text-table-of-contents" of div with role="doc-toc" when exporting to html when using tables of contents for multiple subheadings
@ 2022-10-29 16:20 Michel Damiens
  2022-10-30  2:43 ` Ihor Radchenko
  0 siblings, 1 reply; 3+ messages in thread
From: Michel Damiens @ 2022-10-29 16:20 UTC (permalink / raw)
  To: emacs-orgmode

[-- Attachment #1: Type: text/plain, Size: 2370 bytes --]

Hello,

when exporting to html this org document :

     #+OPTIONS: toc:1
     * par 1
     #+TOC: headlines 1 local
     ** par 1.1
     ** par 1.2
     * par 2
     #+TOC: headlines 1 local
     ** par 2.1
     ** par 2.2

div's for toc (with role="org-toc") in subheadings par 1 and par 2 get the
same id : text-table-of-contents :

<div id="content" class="content">
     <nav id="table-of-contents" role="doc-toc">
          <h1>Table des matières</h1>
          <div id="text-table-of-contents" role="doc-toc">
               <ul>
                    <li><a href="#orge7077f6">par 1</a></li>
                    <li><a href="#orgca5c174">par 2</a></li>
               </ul>
          </div>
     </nav>
     <div id="outline-container-orge7077f6" class="outline-1">
          <h1 id="orge7077f6">par 1</h1>
          <div class="outline-text-1" id="text-orge7077f6">
              <div id="text-table-of-contents" role="doc-toc"> <------ HERE
                   <ul>
                         <li><a href="#org5bfbf2e">par 1.1</a></li>
                         <li><a href="#orgeae3ce8">par 1.2</a></li>
                   </ul>
              </div>
          </div>
          <div id="outline-container-org5bfbf2e" class="outline-2">
               <h2 id="org5bfbf2e">par 1.1</h2>
          </div>
          <div id="outline-container-orgeae3ce8" class="outline-2">
               <h2 id="orgeae3ce8">par 1.2</h2>
          </div>
     </div>
     <div id="outline-container-orgca5c174" class="outline-1">
          <h1 id="orgca5c174">par 2</h1>
          <div class="outline-text-1" id="text-orgca5c174">
               <div id="text-table-of-contents" role="doc-toc"> <------ HERE
                    <ul>
                        <li><a href="#orgc022296">par 2.1</a></li>
                        <li><a href="#org47cca7f">par 2.2</a></li>
                    </ul>
               </div>
          </div>
          <div id="outline-container-orgc022296" class="outline-2">
               <h2 id="orgc022296">par 2.1</h2>
          </div>
          <div id="outline-container-org47cca7f" class="outline-2">
               <h2 id="org47cca7f">par 2.2</h2>
          </div>
     </div>
</div>

Is it possible to differentiate them in modifying some export option ?

Thanks for your help.
Michel

[-- Attachment #2: Type: text/html, Size: 3663 bytes --]

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: Identical attributes id="text-table-of-contents" of div with role="doc-toc" when exporting to html when using tables of contents for multiple subheadings
  2022-10-29 16:20 Identical attributes id="text-table-of-contents" of div with role="doc-toc" when exporting to html when using tables of contents for multiple subheadings Michel Damiens
@ 2022-10-30  2:43 ` Ihor Radchenko
  2024-04-14 10:34   ` Ihor Radchenko
  0 siblings, 1 reply; 3+ messages in thread
From: Ihor Radchenko @ 2022-10-30  2:43 UTC (permalink / raw)
  To: Michel Damiens, orgmode; +Cc: emacs-orgmode

Michel Damiens <michel.damiens@gmail.com> writes:

> when exporting to html this org document :
>
>      #+OPTIONS: toc:1
>      * par 1
>      #+TOC: headlines 1 local
>      ** par 1.1
>      ** par 1.2
>      * par 2
>      #+TOC: headlines 1 local
>      ** par 2.1
>      ** par 2.2
>
> div's for toc (with role="org-toc") in subheadings par 1 and par 2 get the
> same id : text-table-of-contents :

Confirmed.
Timothy, could you take a look?
We could probably modify the id in `org-html-toc' when SCOPE is non-nil.

-- 
Ihor Radchenko // yantar92,
Org mode contributor,
Learn more about Org mode at <https://orgmode.org/>.
Support Org development at <https://liberapay.com/org-mode>,
or support my work at <https://liberapay.com/yantar92>


^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: Identical attributes id="text-table-of-contents" of div with role="doc-toc" when exporting to html when using tables of contents for multiple subheadings
  2022-10-30  2:43 ` Ihor Radchenko
@ 2024-04-14 10:34   ` Ihor Radchenko
  0 siblings, 0 replies; 3+ messages in thread
From: Ihor Radchenko @ 2024-04-14 10:34 UTC (permalink / raw)
  To: Michel Damiens; +Cc: orgmode, emacs-orgmode

Ihor Radchenko <yantar92@posteo.net> writes:

>> div's for toc (with role="org-toc") in subheadings par 1 and par 2 get the
>> same id : text-table-of-contents :
>
> Confirmed.
> Timothy, could you take a look?
> We could probably modify the id in `org-html-toc' when SCOPE is non-nil.

Fixed, on main.
https://git.savannah.gnu.org/cgit/emacs/org-mode.git/commit/?id=b42867b5a

-- 
Ihor Radchenko // yantar92,
Org mode contributor,
Learn more about Org mode at <https://orgmode.org/>.
Support Org development at <https://liberapay.com/org-mode>,
or support my work at <https://liberapay.com/yantar92>


^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2024-04-14 10:35 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-10-29 16:20 Identical attributes id="text-table-of-contents" of div with role="doc-toc" when exporting to html when using tables of contents for multiple subheadings Michel Damiens
2022-10-30  2:43 ` Ihor Radchenko
2024-04-14 10:34   ` Ihor Radchenko

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).