diff options
author | Ludovic Courtès | 2021-02-02 16:12:45 +0100 |
---|---|---|
committer | Ludovic Courtès | 2021-02-02 16:12:45 +0100 |
commit | d7fe9d89641c495845032f113af0d54e99353bd7 (patch) | |
tree | 3db29ee6db543711fc296e28a686141a82458752 | |
parent | 3da8d07e68b1c7ae88167b080bba30ee0fe22455 (diff) | |
download | skribilo-d7fe9d89641c495845032f113af0d54e99353bd7.tar.gz skribilo-d7fe9d89641c495845032f113af0d54e99353bd7.tar.lz skribilo-d7fe9d89641c495845032f113af0d54e99353bd7.zip |
info: Mark :info-dir-category and :info-dir-entry as supported.
This is a followup to 3e68da0a38250825f9d28b8ff6f448b4bdc72c77.
* src/guile/skribilo/engine/info.scm (document): Add :info-dir-category
and :info-dir-entry to :options.
-rw-r--r-- | src/guile/skribilo/engine/info.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/guile/skribilo/engine/info.scm b/src/guile/skribilo/engine/info.scm index 184f31f..7065b14 100644 --- a/src/guile/skribilo/engine/info.scm +++ b/src/guile/skribilo/engine/info.scm @@ -1,6 +1,6 @@ ;;; info.scm -- GNU Info engine. ;;; -;;; Copyright 2008, 2009, 2012, 2015, 2018, 2020 Ludovic Courtès <ludo@gnu.org> +;;; Copyright 2008, 2009, 2012, 2015, 2018, 2020, 2021 Ludovic Courtès <ludo@gnu.org> ;;; Copyright 2001, 2002 Manuel Serrano ;;; ;;; @@ -210,7 +210,7 @@ ;* info ::%document ... */ ;*---------------------------------------------------------------------*/ (markup-writer 'document info-engine - :options '(:title :author :ending) + :options '(:title :author :ending :info-dir-category :info-dir-entry) :action (lambda (doc e) (check-node-title-conflicts doc e) (set-port-encoding! (current-output-port) "UTF-8") |