我正在使用CMS发布我的博客文章。我正在寻找一种从简单的文本文件离线创建HTML文章的方法。 这是我通常用于文章的HTML片段:
<p> We want to show how you can gather information such as the author name:</p>
<pre class="brush:java">package com.sample;
import org.apache.camel.builder.RouteBuilder;
import org.apache.camel.main.Main;
public class XMLCamel {
public static void main(String[] args) throws Exception {
Main main = new Main();
}
}
class Sample extends RouteBuilder {
@Override
public void config() throws Exception {
from("file:/usr/data/files?noop=true")
.split(xpath("//catalog/book/author/text()")).to("stream:out");
}
}</pre>
<p>The above route will print the author names according to the <strong>XPath</strong> query: //catalog/book/author/text()</p>
<p>The authors will be sent to the Stream.out so you will see them on the console once you run the code.</p>
<p><strong>Result:</strong></p>
<p><strong>John Smith Sally Joy</strong></p>
正如您所看到的,我使用一些自定义来包装代码(前级等)。是否可以使用Asciidoctor轻松完成?我是Asciidoctor的新手,只是想知道是否值得为此目的花时间学习它 谢谢!
答案 0 :(得分:2)
要回答这个问题,是的,这是可能的。然而,对于像这样微不足道的东西,asciidoctor ootb的输出以及选择的荧光笔可能对你正在做的事情很好。
您是否需要自定义创建自定义后端所需的内容。由于创建自定义后端的文档尚未完成,this mailing list post应该有所帮助。
答案 1 :(得分:1)
除了LightGuard的高级答案之外,值得一提的是,您可以使用++++
向输出添加自定义HTML。
++++<h1>hello</h1>++++
将简单生成
<h1>hello</h1>