From: Kaushal Modi <kaushal.modi@gmail.com>
To: emacs-org list <emacs-orgmode@gnu.org>
Subject: Re: Add ability to force-enable TOC
Date: Tue, 19 Sep 2017 15:00:17 +0000 [thread overview]
Message-ID: <CAFyQvY198vdd0rffRGYhQSS4GCnth0J4JxF+RAAsMwt6dbh86A@mail.gmail.com> (raw)
In-Reply-To: <CAFyQvY3MAquZvSj9qZieBrQhQr4Uvin-+X9MKfhDJwxbqTRPDg@mail.gmail.com>
[-- Attachment #1: Type: text/plain, Size: 1009 bytes --]
On Tue, Sep 19, 2017 at 10:49 AM Kaushal Modi <kaushal.modi@gmail.com>
wrote:
> Can we enforce the TOC generation using the "toc:" option. Below does not
> work at the moment, but would like that to work.
>
> #+OPTIONS: num:nil H:4 toc:4
>
Above works after the below patch:
diff --git a/lisp/ox.el b/lisp/ox.el
index 2be77a87b33..1831432df87 100644
--- a/lisp/ox.el
+++ b/lisp/ox.el
@@ -5227,7 +5227,8 @@ Footnote sections and unnumbered headlines are
ignored."
(org-element-map (org-element-contents scope) 'headline
(lambda (headline)
(unless (or (org-element-property :footnote-section-p headline)
- (not (org-export-numbered-headline-p headline info)))
+ (and (null (plist-get info :with-toc))
+ (not (org-export-numbered-headline-p headline info))))
(let ((level (org-export-get-relative-level headline info)))
(and (<= level n) headline))))
info)))
But I am pretty sure that's not the right way as the default value of
org-export-with-toc is t.
--
Kaushal Modi
[-- Attachment #2: Type: text/html, Size: 1895 bytes --]
next prev parent reply other threads:[~2017-09-19 15:00 UTC|newest]
Thread overview: 15+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-09-19 14:49 Add ability to force-enable TOC Kaushal Modi
2017-09-19 15:00 ` Kaushal Modi [this message]
2017-09-19 15:33 ` Carsten Dominik
2017-09-19 19:27 ` Nicolas Goaziou
2017-09-19 19:31 ` Kaushal Modi
2017-09-19 19:57 ` Nicolas Goaziou
2017-09-19 20:12 ` Kaushal Modi
2017-09-20 10:25 ` Nicolas Goaziou
2017-09-20 10:40 ` Kaushal Modi
2017-09-22 13:32 ` Matt Lundin
2017-09-20 8:53 ` Rasmus
2017-09-20 14:15 ` Rasmus
2017-09-20 8:14 ` Carsten Dominik
2017-09-20 8:54 ` Rasmus
2017-09-20 10:04 ` Kaushal Modi
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
List information: https://www.orgmode.org/
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=CAFyQvY198vdd0rffRGYhQSS4GCnth0J4JxF+RAAsMwt6dbh86A@mail.gmail.com \
--to=kaushal.modi@gmail.com \
--cc=emacs-orgmode@gnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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).