asciidocr 0.1.10

A CLI and library for processing and converting asciidoc files
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! This module contains elements of the Abstract Syntax Graph used to represent an Asciidoc
//! document, roughly meaning to follow the "official" schema:
//! <https://gitlab.eclipse.org/eclipse/asciidoc-lang/asciidoc-lang/-/blob/main/asg/schema.json>
//!
//! An ASG is made up of Blocks, which are in turn made up of Inlines. All elements, including the
//! graph itself, are serializeable with `serde`, giving us JSON output (as required by the
//! Technology Compatibility Kit) and making certain templating tasks simpler.

pub mod asg;
pub mod blocks;
pub mod inlines;
pub mod lists;
pub mod metadata;
pub mod nodes;
pub mod substitutions;