diff --git a/Scripts/Functions/Help/Texinfo/Templates/manual.conf b/Scripts/Functions/Help/Texinfo/Templates/manual.conf index 0aebfe4..f0e91e0 100755 --- a/Scripts/Functions/Help/Texinfo/Templates/manual.conf +++ b/Scripts/Functions/Help/Texinfo/Templates/manual.conf @@ -1,10 +1,43 @@ -# This file controls what template a section's main definition files -# does use. Template definition is set on the left side using relative -# paths. The section's main definition file is set on the right using -# a regular expression. The first match wins. +# This file controls the manual configuration. This file is divided +# in configuration sections (e.g., `main' and `templates') which, in +# turn, are organized in the form `variable = value'. # ---------------------------------------------------------------------- # $Id$ # ---------------------------------------------------------------------- -Chapters/section-functions.texinfo = "^.+-function-[[:alnum:]]+\.texinfo$" +[main] + +# Specify the documentation backend used to write manual's source +# files. Possible values to this option are `texinfo' and `docbook' +# (which is still unsupported). +manual_backend = "texinfo" + +# Specifies the locale information used to write manual's source +# files. Possible values to this option must be written in ll_CC +# format where `ll' is the locale language (ISO-639) and `CC' country +# code (ISO-3166). +manual_language = "en_US" + +# Specify title style used by sections inside the manual. Possible +# values to this option are `cap-each-word' to capitalize each word in +# the section title, `cap-first-word' to capitalize the first word in +# the section title only and `directory' to transform each word in the +# section title into a directory path. From all these options, +# `cap-each-word' is the one used as default. +manual_section_style = "cap-each-word" + +# Specify the order used by sections inside the manual. By default new +# sections added to the manual are put on the end to follow the +# section `created' order. Other possible values to this option are +# `ordered' and `reversed' to sort the list of sections alphabetically +# from A-Z and Z-A, respectively. +manual_section_sort = "created" + +[templates] + +# Specify relation between template files and section definition files +# inside the manual. Template definition is set on the left side using +# relative path. The section main definition file is described on the +# right using a regular expression. The first match wins. +Chapters/section-functions.texinfo = "^.+-functions-[[:alnum:]]+\.texinfo$" Chapters/section.texinfo = "^.+\.texinfo$"