ox-hugo に目次を作成させないようにする

2019-04-02 191 words 1 min read

ox-hugo はデフォルトで目次を生成します。 それを止めるには、 org-hugo-export-with-tocnil に設定します。 また、 org-html-use-infojst だと、 常に 目次が 出力されてしまうので、 nil に設定しておきます。

Code Snippet 1: ox-hugo に目次を作成させないようにする (emacs-lisp)
(setq org-hugo-export-with-toc nil)
(setq org-html-use-infojs nil)

各サブツリーで次のようにすると、目次は出力されません:

(org)
:EXPORT_OPTIONS: toc:nil

各サブツリーで次のようにすると、目次が出力されます:

(org)
:EXPORT_OPTIONS: toc:t

もしくは、次のようにすると、指定したレベルまでの目次が出ます:

(org)
:EXPORT_OPTIONS: toc:1

Tags: Hugo ox-hugo

We notice you're using an adblocker. If you like our webite please keep us running by whitelisting this site in your ad blocker. We’re serving quality, related ads only. Thank you!

I've whitelisted your website.

Not now
This website uses cookies to ensure you get the best experience on our website. Learn more Got it