mirror of
https://git.savannah.gnu.org/git/emacs/org-mode.git
synced 2024-11-21 06:55:35 +00:00
ox-texinfo.el: Docstrings tiny fixes
* ox-texinfo.el (org-texinfo-filename) (org-texinfo-info-process, org-texinfo-max-toc-depth) (org-texinfo--sanitize-menu): Docstrings tiny fixes.
This commit is contained in:
parent
5127f56790
commit
3b0c9b4e78
@ -144,7 +144,7 @@
|
||||
;;; Preamble
|
||||
|
||||
(defcustom org-texinfo-filename nil
|
||||
"Default filename for texinfo output."
|
||||
"Default filename for Texinfo output."
|
||||
:group 'org-export-texinfo
|
||||
:type '(string :tag "Export Filename"))
|
||||
|
||||
@ -371,7 +371,7 @@ in order to mimic default behaviour:
|
||||
|
||||
(defcustom org-texinfo-info-process
|
||||
'("makeinfo %f")
|
||||
"Commands to process a texinfo file to an INFO file.
|
||||
"Commands to process a Texinfo file to an INFO file.
|
||||
This is list of strings, each of them will be given to the shell
|
||||
as a command. %f in the command will be replaced by the full
|
||||
file name, %b by the file base name \(i.e without extension) and
|
||||
@ -383,7 +383,7 @@ file name, %b by the file base name \(i.e without extension) and
|
||||
;;; Constants
|
||||
(defconst org-texinfo-max-toc-depth 4
|
||||
"Maximum depth for creation of detailed menu listings. Beyond
|
||||
this depth texinfo will not recognize the nodes and will cause
|
||||
this depth Texinfo will not recognize the nodes and will cause
|
||||
errors. Left as a constant in case this value ever changes.")
|
||||
|
||||
|
||||
@ -485,7 +485,7 @@ retrieved."
|
||||
"Remove invalid characters from TITLE for use in menus and
|
||||
nodes.
|
||||
|
||||
Based on TEXINFO specifications, the following must be removed:
|
||||
Based on Texinfo specifications, the following must be removed:
|
||||
@ { } ( ) : . ,"
|
||||
(replace-regexp-in-string "[@{}():,.]" "" title))
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user