问题标签 [asciidoc]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
asciidoc - Is Asciidoc markup programmatically extendable (by existen implementation, like RST)?
reStructuredText allow you extend/rewrite writer for its markup. So you can add new type of embedded objects or introduce new sub-language by defined API.
Is this possible with Asciidoc (original Python implementation or Ruby asciidoctor)?
javascript - Google Chrome 上的 Asciidoctor.js 实时预览
我正在尝试在 Google Chrome 上使用 Asciidoctor.js 实时预览,但我看到的不是我的文档
它还会引发一个 JS 错误:
可能我需要将 sth 添加到 manifest.js 文件中,但我不知道是什么。
我无法弄清楚如何解决这个问题。任何意见,将不胜感激。
image - asciidoc:如何将标注 asciidoc 添加到图像
如何向docbook中的图像添加标注?在此处查看示例:http: //norman.walsh.name/2006/06/10/imageobjectco
标注点可以绘制在图像上,但是当我尝试从中生成文档时:
...它会抛出一个错误:
ruby - 带有附加选项的 Asciidoctor.renderFile
我将 asciidoc 与此处描述的保护文件一起使用描述的保护文件一起使用。
给定 asciidoctor 选项:asciidoctor -a icons -a iconsdir /foo -a copycss bar.adoc
我想将这些选项添加到保护文件中。但我不知道怎么做。
保护文件当前看起来像:
java - 为 AsciiDoc Epub3 添加封面图片
我正在尝试使用此语法将封面图像添加到 ASCIIDoc 文件(以便能够将其转换为 EPUB3)
:封面图片:图片:cover.png[宽度=1050,高度=1600]
在他们的页面中提到的主文件中,但它似乎没有覆盖默认的 asciidoc 封面。图像 cover.png 位于与 AsciiDoc 主文件位于同一文件夹中的图像文件夹中。谁能让我知道如何解决这个问题,并添加我自己的封面图片?
asciidoc - 将图像标题与 asciidoc 中的图像对齐
我插入了一个块图像,如下所示:
不幸的是,图像居中,但标题是左对齐的。我也试过这样做:
但结果并没有改变。如何使图像标题也居中对齐?
我正在使用此命令生成 HTML 输出(使用 xhtml11 作为后端没有区别):
asciidoc -v -a asciimath -d 文章 -b html5 -o file.html file.txt
javascript - 如何在 Asciidoc 中包含 javascript?
我正在使用 asciidoctor-maven-plugin 将 .adoc 文件转换为 html 文件...希望在生成的 html 文件中包含指向 javascript 的链接...基本上希望在 html 文件中看到类似下面的内容从 .adoc 文件生成
尝试设置属性,如linkcss scriptsdir 等......但没有运气......
有什么帮助吗?
一种方法就像在 http://mrhaki.blogspot.ie/2014/06/awesome-asciidoc-include-raw-html.html
但是必须在每个 .adoc 文件中添加它...有没有办法像 CSS 一样自动添加它(使用样式表)
latex - 用latexmath方程编译asciidoc
我正在尝试编译包含一些方程式的 asciidoc 文档,格式通常如下:
据我了解,我首先需要使用 asciidoc 处理器将其编译为 docbook:
asciidoctor 抱怨 latexmath 块,但无论如何都会产生一些 xml:
然后我尝试使用 dblatex 创建 pdf:
但是生成的pdf只是空的,我看不到我的等式。我究竟做错了什么?
特别是我正在尝试编译此文档:https ://github.com/aatonop/bitcoinbook/blob/develop/ch04.asciidoc
我相信这个问题更多地与 asciidoc 而不是 tex 相关,但你能帮我吗?如何在 Ubuntu 中渲染这个文件?
我已经在 asciidoctor 论坛上问过这个问题,但没有人在那里回答... http://discuss.asciidoctor.org/Invalid-style-for-pass-block-latexmath-td2373.html
asciidoc - 使用 asciidoctor 在 HTML 模板中渲染 .adoc 文件
我的目标是使用 asciidoctor 渲染一个 html 文件,包括一个 html 模板和一个非技术人员可以轻松编辑的 .adoc 文件。我目前可以获取要呈现的 html 模板,但不确定如何连接 adoc 文件以将文本放置在特定标签内,即模板 div/段落内。当前从终端运行此命令:
使用此命令,目前 digitization.adoc 中的任何内容都没有显示(我也不明白如何让文本在 html 模板中的正确位置呈现)。