文档属性用于配置处理器中的行为或传达有关文档及其环境的信息。这个页面列出了AsciiDoc中所有内建的(即保留的)文档属性。
除非另有标记,这些属性可以通过API使用`:attributes`选项进行修改(设置或取消),通过CLI使用`-a`选项修改,或者在文档中(通常在文档头部)使用属性条目来修改。
使用下面的图例来理解本页表格中的列和值。
默认设置 |
属性会被AsciiDoc处理器自动设置并赋予一个默认值。默认值会用*粗体*(例如, |
允许的值 |
属性允许的值。数值和显示为_斜体_的值为指导性内容,表示值的类型(例如,任意、空、数字、1–5等)。
如果属性不接受 any 或 empty,那么你必须只分配允许的值之一或指定的值类型。 |
仅头文件 |
属性必须在文档头部结束之前设置或取消设置(即通过API、CLI或在文档头部中设置)。否则,属性的赋值将不会对文档产生任何影响。如果一个属性没有被标记为_仅头部_,那么它可以在文档的任何地方设置,前提是该属性没有被API或CLI锁定。然而,更改属性只会影响随后的内容行为(按照文档顺序)。 |
内在属性
内在属性是由处理器自动设置的。这些属性提供有关正在处理的文档的信息(例如,docfile
)、处理器运行的安全模式信息(例如,safe-mode-name
)以及有关用户环境的信息(例如,user-home
)。
许多这些属性是只读的,这意味着它们不能被修改(有一些例外)。那些不是只读的属性被标记为可修改的。被同时标记为可修改和仅限API/CLI的属性只能通过API或CLI设置。所有其他被标记为可修改的属性必须在标题结束之前设置(即,仅限标题)。
名称 | 允许的值 | 是否可修改 | 仅限API/CLI | 备注 |
---|---|---|---|---|
|
any |
Yes |
No |
The backend used to select and activate the converter that creates the output file. Usually named according to the output format (e.g., |
|
empty |
No |
n/a |
A convenience attribute for checking which backend is selected. <backend> is the value of the |
|
任意 |
No |
n/a |
后端的通用基础。通常从后端值中去掉尾随数字得到(例如, |
|
空 |
No |
n/a |
检查哪个basebackend处于活动状态的便捷属性。<basebackend>是`basebackend`属性的值(例如, |
|
date (ISO) |
Yes |
No |
|
|
datetime (ISO) |
Yes |
No |
|
|
directory path |
If input is a string |
Yes |
Full path of the directory that contains the source document. Empty if the safe mode is SERVER or SECURE (to conceal the file’s location). |
|
file path |
If input is a string |
Yes |
Full path of the source document. Truncated to the basename if the safe mode is SERVER or SECURE (to conceal the file’s location). |
|
file extension |
If input is a string |
Yes |
File extension of the source document, including the leading period. |
|
file stem basename |
If input is a string |
Yes |
Root name of the source document (no leading path or file extension). |
|
time (ISO) |
Yes |
No |
|
|
empty |
No |
n/a |
A convenience attribute for checking the doctype of the document. <doctype> is the value of the |
|
integer |
Yes |
No |
|
|
empty |
No |
n/a |
Only set if content is being converted to an embedded document (i.e., body of document only). |
|
any |
If input is a string |
Yes |
File extension of the output file name (without leading period). |
|
empty |
No |
n/a |
A convenience attribute for checking the filetype of the output. <filetype> is the value of the |
|
|
No |
n/a |
Syntax used when generating the HTML output. Controlled by and derived from the backend name (html=html or xhtml=html). |
|
date (ISO) |
Yes |
No |
Date when the document was converted.[2] |
|
datetime (ISO) |
Yes |
No |
Date and time when the document was converted.[2] |
|
time (ISO) |
Yes |
No |
Time when the document was converted.[2] |
|
integer |
Yes |
No |
Year when the document was converted.[2] |
|
directory path |
No |
n/a |
Full path of the output directory. (Cannot be referenced in the content. Only available to the API once the document is converted). |
|
file path |
No |
n/a |
Full path of the output file. (Cannot be referenced in the content. Only available to the API once the document is converted). |
|
file extension |
Yes |
No |
File extension of the output file (starting with a period) as determined by the backend ( |
|
|
No |
n/a |
Numeric value of the safe mode setting. (0=UNSAFE, 1=SAFE, 10=SERVER, 20=SECURE). |
|
|
No |
n/a |
Textual value of the safe mode setting. |
|
empty |
No |
n/a |
Set if the safe mode is UNSAFE. |
|
empty |
No |
n/a |
Set if the safe mode is SAFE. |
|
empty |
No |
n/a |
Set if the safe mode is SERVER. |
|
empty |
No |
n/a |
Set if the safe mode is SECURE. |
|
directory path |
No |
n/a |
Full path of the home directory for the current user. Masked as |
如果设置了SOURCE_DATE_EPOCH环境变量,则该属性的值是根据与该环境变量中存储的时间戳(作为一个整数)对应的UTC日期对象构建的。这种方式提供了一种使转换可复现的方法。有关SOURCE_DATE_EPOCH环境变量的更多信息,请查看源日期纪元规范 https://reproducible-builds.org/specs/source-date-epoch/。否则,日期表示为本地时区时间,会报告为时区偏移量(例如,-0600
)或UTC(如果时区偏移量为0)。要强制使用UTC,请在调用Asciidoctor时设置`TZ=UTC`环境变量。
合规属性
.名称 | 允许的值 | 默认设置 | 仅限表头 | 注释 |
---|---|---|---|---|
|
|
Yes |
No |
Controls how missing attribute references are handled. |
|
|
Yes |
No |
Controls how attribute unassignments are handled. |
|
empty |
No |
No |
Controls when the legacy parsing mode is used to parse the document. |
|
empty |
No |
Yes |
Enables macros:ui-macros.html and the macros:keyboard-macro.html. |
|
empty |
No |
Yes |
Prevents last-updated date from being added to HTML footer or DocBook info element. Useful for storing the output in a source code control system as it prevents spurious changes every time you convert the document. Alternately, you can use the SOURCE_DATE_EPOCH environment variable, which sets the epoch of all source documents and the local datetime to a fixed value. |
|
empty |
No |
Yes |
Consume YAML-style frontmatter at top of document and store it in |
本地化和编号属性
.名称 | 允许的值 | 默认设置 | 仅限表头 | 注释 |
---|---|---|---|---|
|
any |
Yes |
No |
在附录标题前添加的标签。 |
|
character |
No |
No |
设置附录编号序列的初始值。[1] |
|
any |
Yes |
No |
添加到附录标题交叉引用的标识符。 |
|
any |
Yes |
No |
在未启用图标时用于标记CAUTION警告的文本。 |
|
number |
No |
No |
设置章节编号序列的初始值。[1] 仅限书籍文档类型。 |
|
any |
Yes |
No |
添加到章节标题交叉引用的标识符。仅限书籍文档类型。 |
|
any |
No |
No |
添加到一级节标题(章节)的标签。仅限书籍文档类型。 |
|
any |
Yes |
No |
用于标记示例块的文本。 |
|
number |
No |
No |
设置示例编号序列的初始值。[1] |
|
any |
Yes |
No |
用于标记图像和插图的文本。 |
|
number |
No |
No |
设置图像编号序列的初始值。[1] |
|
number |
No |
No |
设置脚注编号序列的初始值。[1] |
|
any |
Yes |
No |
在未启用图标时用于标记IMPORTANT警告的文本。 |
|
BCP 47语言标签 |
No |
Yes |
指定在输出文档的文档元素上的语言标签。参考HTML规范的https://html.spec.whatwg.org/#the-lang-and-xml:lang-attributes[lang和xml:lang属性部分^]了解更多关于此属性的可接受值。 |
|
any |
Yes |
Yes |
用于页脚“最后更新”标签的文本。 |
|
any |
No |
No |
用于标记列表块的文本。 |
|
number |
No |
No |
设置列表编号序列的初始值。[1] |
|
any |
No |
Yes |
man页面中程序名称部分的标签。 |
|
empty |
No |
Yes |
阻止在输出文档的根元素上添加`lang`属性。 |
|
any |
Yes |
No |
在未启用图标时用于标记NOTE注释的文本。 |
|
any |
Yes |
No |
添加到部分标题交叉引用的标识符。仅限书籍文档类型。 |
|
any |
No |
No |
添加到零级节标题(部分)的标签。仅限书籍文档类型。 |
|
any |
No |
No |
当`doctype`是`book`时,匿名前言的标题文本。 |
|
any |
Yes |
No |
在交叉引用文本中为编号节的标题添加的标识符。 |
|
any |
Yes |
No |
表格标题前添加的文本标签。 |
|
number |
No |
No |
设置表格编号序列的初始值。[1] |
|
any |
Yes |
No |
在未启用图标时用于标记TIP提醒的文本。 |
|
any |
Yes |
Yes |
|
|
any |
Yes |
Yes |
如果文档没有文档标题,则使用默认文档标题。 |
|
any |
Yes |
Yes |
|
|
any |
Yes |
No |
在未启用图标时用于标记WARNING警告的文本。 |
文档元数据属性
.名称 | 允许的值 | 默认设置 | 仅限表头 | 注释 |
---|---|---|---|---|
|
any |
No |
Yes |
在HTML文档头部为移动设备添加`application-name`元数据元素。 |
|
any |
从作者信息行提取 |
Yes |
可以通过作者信息行自动设置,或者显示指定。参见document:author-information.html。 |
|
any |
从`author`属性中提取 |
Yes |
默认情况下根据作者属性派生。参见document:author-information.html。 |
|
any |
从作者信息行提取 |
Yes |
可以通过作者信息行自动设置,或者作为逗号分隔的值列表显式设置。参见document:author-information.html。 |
|
any |
No |
Yes |
在HTML文档头部添加`copyright`元数据元素。 |
|
any |
如果文档有标题,则为“Yes” |
Yes |
参见doctitle属性。 |
|
any |
No |
Yes |
在HTML文档头部添加description元数据元素。 |
|
any |
从作者信息行提取 |
Yes |
可以是任何行内宏,比如一个URL。参见document:author-information.html。 |
|
any |
从作者信息行提取 |
Yes |
|
|
any |
如果前言被捕获则为“Yes” |
n/a |
如果通过API或CLI设置了`skip-front-matter`,那么任何从文档顶部剥离的YAML风格前言都将存储在这个属性中。 |
|
any |
No |
Yes |
在HTML文档头部添加keywords元数据元素。 |
|
any |
从作者信息行提取 |
Yes |
|
|
any |
从作者信息行提取 |
Yes |
|
|
any |
No |
Yes |
将`<orgname>`元素值添加到DocBook信息元素中。 |
|
any |
从修订信息行提取 |
Yes |
|
|
any |
从修订信息行提取 |
Yes |
|
|
any |
从修订信息行提取 |
Yes |
|
|
any |
No |
Yes |
HTML |
章节标题和目录属性
.名称 | 允许的值 | 默认设置 | 仅限表头 | 注释 |
---|---|---|---|---|
|
valid XML ID start character |
Yes |
No |
Prefix of auto-generated section IDs. See Change the ID prefix. |
|
valid XML ID character |
Yes |
No |
Word separator used in auto-generated section IDs. See Change the ID word separator. |
|
[+-]0–5 |
No |
No |
Increases or decreases level of headings below assignment. A leading + or - makes the value relative. |
|
empty |
No |
No |
Enables numbering of parts. See Number book parts. Book doctype only. |
|
empty |
No |
No |
Adds anchor in front of section title on mouse cursor hover. |
|
empty |
Yes |
No |
Generates and assigns an ID to any section that does not have an ID. See Disable automatic ID generation. |
|
empty |
No |
No |
|
|
empty |
No |
No |
Numbers sections to depth specified by |
|
0–5 |
No |
No |
|
|
any |
No |
Yes |
Character used to separate document title and subtitle. |
|
empty[= |
No |
Yes |
Turns on table of contents and specifies its location. |
|
1–5 |
No |
Yes |
|
|
empty |
No |
Yes |
Informs parser that document is a fragment and that it shouldn’t enforce proper section nesting. |
通用内容和格式属性
.名称 | 允许的值 | 默认设置 | 仅限表头 | 注释 |
---|---|---|---|---|
|
empty |
No |
Yes |
控制托管在CDN上的资源所使用的协议。 |
|
empty |
No |
Yes |
缓存从URI读取的内容。 |
|
empty |
No |
Yes |
在HTML元素中嵌入图形作为数据URI元素,以使文件完全独立。 |
|
empty[= |
No |
Yes |
Read input from one or more DocBook info files. |
|
directory path |
No |
Yes |
文档信息文件的位置。如果未指定,默认为源文件所在的目录。 |
|
comma-separated substitution names |
No |
Yes |
AsciiDoc替换,这些替换应用于docinfo内容。 |
|
|
Yes |
Yes |
Output document type. |
|
empty[= |
No |
Yes |
在HTML输出(MathJax)中控制LaTeX块的自动公式编号。如果值为AMS,则只有在`\begin{equation}...\end{equation}`容器中封闭的LaTeX内容会被编号。如果值为all,则所有LaTeX块都将被编号。见https://docs.mathjax.org/en/v2.5-latest/tex.html#automatic-equation-numbering[MathJax中的公式编号]。 |
|
empty |
No |
No |
参考:blocks:hard-line-breaks.adoc#per-document[保留硬换行]。 |
|
empty |
No |
No |
参考:macros:links.adoc#hide-uri-scheme[隐藏原始链接的URI方案]。 |
|
|
No |
Yes |
指定输出的媒体类型并启用特定于该媒体类型的行为。仅限PDF转换器。 |
|
empty |
No |
Yes |
关闭页脚。 |
|
empty |
No |
Yes |
关闭脚注。 |
|
空白 |
No |
Yes |
关闭标题头。 |
|
无标题 |
empty 空值 |
No |
Yes |
|
outfilesuffix |
文件扩展名 |
Yes |
Yes |
|
pagewidth |
integer |
No |
Yes |
|
relfileprefix |
empty |
No |
No |
|
relfilesuffix |
文件扩展名* |
Yes |
No |
|
show-link-uri |
empty |
No |
No |
|
showtitle |
empty |
No |
Yes |
|
stem |
|
No |
Yes |
|
table-frame |
( |
No |
No |
|
table-grid |
( |
No |
No |
|
table-stripes |
( |
No |
No |
|
tabsize |
整数 (≥ 0) |
No |
No |
|
webfonts |
空 |
Yes |
Yes |
|
xrefstyle |
|
No |
No |
图像和图标属性
.名称 | 允许的值 | 默认设置 | 仅限表头 | 注释 |
---|---|---|---|---|
|
参数值 |
默认值 |
是否必填 |
说明 |
|
:--- |
:--- |
:--- |
:--- |
|
+ |
iconfont-cdn |
网址 |
+ (默认的CDN网址) |
|
Yes |
如果不特别指定,将使用cdnjs.com服务。用于覆盖链接至Font Awesome样式表的CDN。 |
iconfont-name |
任意值 |
|
No |
Yes |
用于覆盖图标字体样式表的名称。 |
iconfont-remote |
|
Yes |
Yes |
允许使用CDN来解析图标字体。仅当`icons`属性的值为`font`时相关。 |
icons |
|
No |
Yes |
选择使用图像或字体图标替代文本进行警告。任何其他值被视为icontype,并将值设置为空(基于图像的图标)。 |
iconsdir |
|
Yes |
No |
非基于字体的图像图标的位置。如果指定了`imagesdir`而未指定`iconsdir`,则默认为`imagesdir`下的_icons_文件夹。 |
icontype |
|
No |
No |
图像图标的文件类型。仅在使用基于图像的图标时相关。 |
imagesdir |
源代码高亮和格式化属性
.名称 | 允许的值 | 默认设置 | 仅限表头 | 注释 |
---|---|---|---|---|
|
( |
No |
Yes |
控制 CodeRay 是使用 CSS 类还是行内样式。 |
|
|
No |
No |
设置 CodeRay 如何在源代码列表中插入行号。 |
|
empty |
No |
Yes |
指示处理器不加载 CodeRay。如果处理器加载 CodeRay 失败也会设置此项。 |
|
directory path |
No |
Yes |
设置 highlight.js 源代码高亮库的位置。 |
|
highlight.js style name |
No |
Yes |
highlight.js 使用的主题名称。 |
|
directory path |
No |
Yes |
设置非 CDN prettify 源代码高亮库的位置。 |
|
prettify style name |
No |
Yes |
prettify 使用的主题名称。 |
|
empty |
Yes |
No |
|
|
( |
No |
Yes |
控制 Pygments 是使用 CSS 类还是行内样式。 |
|
( |
No |
No |
设置 Pygments 如何在源代码列表中插入行号。 |
|
Pygments style name |
No |
Yes |
Pygments 使用的风格名称。 |
|
empty |
No |
Yes |
指示处理器不加载 Pygments。如果处理器加载 Pygments 失败也会设置此项。 |
|
( |
No |
Yes |
控制 Rouge 是使用 CSS 类还是行内样式。 |
|
|
No |
No |
设置 Rouge 如何在源代码列表中插入行号。 `inline` 目前尚未被 Asciidoctor 支持。 参见 asciidoctor#3641。 |
|
Rouge style name |
No |
Yes |
Rouge 使用的风格名称。 |
|
empty |
No |
Yes |
指示处理器不加载 Rouge。如果处理器加载 Rouge 失败也会设置此项。 |
|
|
No |
Yes |
指定源代码高亮器。其他任何值都是允许的,但必须由自定义的语法高亮器适配器支持。 |
|
integer |
No |
No |
在源代码列表中标准化块缩进。 |
|
源代码语言名称 |
No |
No |
|
|
空 |
No |
No |
为源代码列表开启行号。 |
HTML样式属性
|
允许的值 |
默认设置 |
仅限表头 |
注释 复制CSS文件到输出路径。仅在设置了`linkcss`属性时相关。 |
|
valid XML ID |
No |
Yes |
Assign value to |
|
empty |
No |
Yes |
Links to stylesheet instead of embedding it. Can’t be unset in SECURE mode. |
|
CSS 长度(例如 55em, 12cm 等) |
No |
Yes |
限制文档正文的最大宽度。不推荐。请改用 CSS 样式表。 |
|
目录路径 |
Yes |
Yes |
CSS 样式表的位置。 样式表 |
|
Yes |
Yes |
CSS样式表文件名。若值为空,则告诉转换器使用默认的样式表。 |
toc-class |
手册页属性
本节中的属性仅在使用manpage文档类型和/或后端时相关。
.名称 | 允许的值 | 默认设置 | 仅限表头 | 注释 |
---|---|---|---|---|
|
任意 |
基于内容。 |
Yes |
用于手册页输出的元数据。 基于内容的手册页输出元数据。 |
|
any |
基于内容。 |
Yes |
man页面输出的元数据。 根据内容为man页面输出的元数据。 ''' |
|
link format pattern |
No |
Yes |
Link style in man page output.''' 翻译成中文是: |
|
链接格式模式 |
No |
Yes |
man页面输出中的链接样式。''' |
|
any |
No |
Yes |
Source (e.g., application and version) the man page describes. |
|
any |
No |
Yes |
Manual name displayed in the man page footer.` 在man手册页脚显示的手册名称。 |
安全属性
由于这些属性涉及安全问题,它们只能通过API或CLI设置。
|
允许的值 |
默认设置 |
仅API/CLI |
备注 允许从URL读取数据。 |
|
integer (≥ 0) |
如果安全模式为SECURE |
Yes |
限制解析后的属性值的最大大小(字节为单位)。默认值仅在SECURE模式下设置。由于属性可以引用属性,如果没有这个限制,可能会创建一个相对于输入文档大得多的输出文档。 |
|
integer (≥ 0) |
Yes |
Yes |
限制无限包含循环,并且限制利用嵌套包含来增加输出文档大小的机会。 |