1 Scope of document

ruby, asciidoctor

Zazwyczaj to co tu jest, a to co każdy zazwyczaj pomija Green text red text blue text and some yellow text Green text red text blue text and some yellow text

Who are using it?

ruby, asciidoctor

How to add css and javascript to individual pages?
  • docinfo doenst seems to work with antoro, only works well with asciidoctor processor.

  • Have to look into Trepprocessor or conditionally add into handlebar templates

How are they using it?

  • Homepage has a layout, with pre-formatted HTML markup

  • We want CI to build and test our website

    component

    A section of documentation that can be split up into seperate repo

  1. Build The Index

  2. Perform a search

ToDo

  • Augogenerate nav.adoc

Features

  • seggregate documentation as per teams

Collapse

Example 1. Click to see solution

Example block turns into collapsible summary/details.

Exercise

  1. Implement the Application class with main(String[] args) method.

Solution

Example 2. Click to see solution
package mrhaki;

import io.micronaut.runtime.Micronaut;

public class Application {

    public static void main(String[] args) {
        Micronaut.run(Application.class);
    }
}