Creating custom HTML with asciidoctor
Asked Answered
W

2

5

I'm using a CMS to publish my blog articles. I'm looking for a way to create HTML articles offline from a simple text file. This is a piece of HTML which I normally use for my articles:

<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>

As you can see I use some customizations to wrap code (pre class etc.). Is it something which can be easily done with Asciidoctor ? I'm new to Asciidoctor and just wonder if it's worth investing time in learning it for this purpose.
Thanks!

Wye answered 2/9, 2015 at 9:34 Comment(1)
L
2

To answer the question, yes it's possible. However, for something trivial like this the output from asciidoctor ootb along with the highlighter of choice may work fine for what you're doing.

Should you need to customize things you'll need to creat a custom backend. As the docs for creating a custom backend haven't been finished yet this mailing list post should help.

Lonlona answered 3/9, 2015 at 3:48 Comment(1)
Thanks for the clarification!Wye
S
2

In addition to LightGuard's advanced answer it's worth mentioning that you can use ++++ to add custom HTML to the output.

++++<h1>hello</h1>++++

will simply generate

<h1>hello</h1>
Shortcake answered 8/9, 2015 at 16:29 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.