emacs-orgmode
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Orgmode] Footnote references don't belong in the table of contents


From: Andrew Stribblehill
Subject: [Orgmode] Footnote references don't belong in the table of contents
Date: Wed, 2 Sep 2009 14:01:02 +0100

Emacs  : GNU Emacs 22.1.1 (x86_64-pc-linux-gnu, X toolkit, Xaw3d scroll bars)
 of 2008-05-02 on king, modified by Ubuntu
Package: Org-mode version 6.30

current state:
==============
(setq
 org-clock-in-switch-to-state "DOING"
 org-todo-keyword-faces '(("BLOCKING" . org-agenda-dimmed-todo-face)
                          ("DOING" . stribb/org-agenda-doing))
 org-agenda-clockreport-parameter-plist '(:link t :maxlevel 2 :effort t)
 org-agenda-custom-commands '(("S" "snippet view" agenda ""
                               ((org-agenda-show-log t)
                                (org-agenda-log-mode-items (quote (state)))
                                (org-agenda-archives-mode t)
                                (org-agenda-include-inactive-timestamps t)
                                (org-agenda-clockreport-mode t))
                               )
                              )
 org-agenda-files '("~/org/feedback-template.org"
                    "~/org/kill-all-gateways.org" "~/org/notes.org"
                    "~/org/objectives.org" "~/org/perms.org"
                    "~/org/proj-sanitised.org" "~/org/tax.org"
                    "~/org/todo.org" "~/org/whisky.org")
 org-after-todo-state-change-hook '(org-clock-out-if-current)
 org-clock-history-length 35
 org-clock-in-prepare-hook '(stribb/org-mode-ask-effort)
 org-export-preprocess-hook '(org-export-blocks-preprocess)
 org-tab-first-hook '(org-hide-block-toggle-maybe)
 org-src-mode-hook '(org-src-mode-configure-edit-buffer)
 org-confirm-shell-link-function 'yes-or-no-p
 org-todo-keywords '((sequence "TODO(t)" "DOING(w!)" "|" "DONE(d!)"
                      "CANCELLED(c@)")
                     (sequence "BLOCKING(b@/!)"))
 org-agenda-before-write-hook '(org-agenda-add-entry-text)
 org-agenda-start-with-follow-mode t
 org-default-notes-file "~/org/refile.org"
 org-directory "~/org/"
 org-cycle-hook '(org-cycle-hide-archived-subtrees org-cycle-hide-drawers
                  org-cycle-show-empty-lines
                  org-optimize-window-after-visibility-change)
 org-publish-project-alist '(("org" :base-directory "~/org/" :base-extension
                              "org" :publishing-directory
                              "~/public_html/org/" :style-include-default nil
                              :style
                              "<link rel=stylesheet href=\"org.css\" 
type=\"text/css\">")
                             )
 org-refile-target-verify-function '(lambda nil
                                     (not (member "ARCHIVE" (org-get-tags))))
 org-mode-hook '((lambda nil (auto-fill-mode 1))
                 #[nil "\300\301\302\303\304$\207"
                   [org-add-hook change-major-mode-hook org-show-block-all
                    append local]
                   5]
                 )
 org-clock-out-remove-zero-time-clocks t
 org-refile-targets '((org-agenda-files :maxlevel . 2))
 org-confirm-elisp-link-function 'yes-or-no-p
 org-refile-use-outline-path 'file
 org-log-into-drawer t
 org-occur-hook '(org-first-headline-recenter)
 org-remember-templates '(("refile" 114
                           "* %?\n  :PROPERTIES:\n  :Filed: %U\n  :END:\n  %i\n 
 %a")
                          )
 org-link-abbrev-alist '(("b" . "http://b/";) ("tick" . "http://tick/";)
                         ("cl" . "http://cl/";) ("googler" . "http://who/";)
                         ("p4" . "http://s/file=";)
                         ("wiki" . "http://wiki/Main/";)
                         ("google3" . "file:///Depot/google3/"))
 )



I have a file:
--------8<---------
* Foo
* Bar [fn:1]

[fn:1] this explains bar
--------8<---------

When I export it to HTML, I see Bar[1] in the ToC. The number there
isn't clickable but I don't think it should be there at all.




reply via email to

[Prev in Thread] Current Thread [Next in Thread]