在asciidoctorj中读取文档属性时如何解析链接?

时间:2018-10-22 03:28:52

标签: html asciidoctor

我有一个如下的Asciidoc文档:

datos[!with(datos, ave(method == "Method1", Country, Year, 
                   FUN = function(x)  length(x) > 1 & x)), ]

#    Country Year  method
#1 Australia 2010 Method1
#2 Australia 2011 Method1
#4 Australia 2012 Method2
#5   Belgium 2010 Method1
#7   Belgium 2011 Method2
#8   Belgium 2012 Method1

我正在尝试检索:name: Name :id: ID :purpose: Converts link:another[Another] item = {name} ... 属性,并使用Asciidoctorj单独显示它:

purpose

但是当我这样做时,我得到了值:

  

转换链接:另一个[另一个]项目

而不是

  

转换另一个项目

我尝试使用File doc = new File("file.adoc"); Asciidoctor parser = Asciidoctor.Factory.create(); DocumentHeader header = parser.readDocumentHeader(doc); String purpose = (String) header.getAttributes.get("purpose"); 进一步处理purpose变量,但这将值放在parser.convert(purpose ...)DIV标记内:

  

转换另一个项目

是否有任何方法可以解析标头,检索P,启用purpose链接并避免在结果上使用ADIV包装器?

0 个答案:

没有答案