1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
//! # Quillmark
//!
//! Quillmark is a schema-driven document engine that turns Markdown
//! with card-yaml metadata blocks into a fully typeset document (PDF, SVG, PNG).
//!
//! Markdown enters through the bound door: `Quill::parse` conforms the
//! document against the quill that will render it.
//!
//! ```no_run
//! use quillmark::{quill_from_path, OutputFormat, Quillmark, RenderOptions};
//!
//! let quill = quill_from_path("path/to/quill").unwrap();
//! let engine = Quillmark::new();
//!
//! let doc = quill.parse("~~~\n$quill: my_quill\n$kind: main\ntitle: Hello\n~~~\n\n# Hello World").unwrap().document;
//! let result = engine.render(&quill, &doc, &RenderOptions::default().with_output_format(OutputFormat::Pdf)).unwrap();
//! ```
//!
//! Or no Markdown at all: a blank canvas and the schema-bound writer.
//!
//! ```no_run
//! use quillmark::{quill_from_path, Document};
//!
//! let quill = quill_from_path("path/to/quill").unwrap();
//! let mut doc = Document::new("my_quill".parse().unwrap());
//!
//! let mut writer = quill.writer(&mut doc);
//! writer.set("title", "Hello").unwrap();
//! ```
// Every flow the docs name (quill construction, authoring, render, reading the
// result back) is spellable through this facade alone, with no direct
// `quillmark-core` dependency; `tests/facade_surface.rs` is the gate. `Quill`
// is the single quill type (portable, declarative data); construct it from an
// in-memory tree with `Quill::from_tree` (taking `FileTreeNode` and
// `QuillIgnore` from here) or from disk with the `quill_from_path` helper
// below. `QuillConfig` and the schema types come along, since a caller holding
// a `Quill` reads its schema through them.
//
// A verb's return type belongs here whenever the verb does: `Quill::reader`
// yields `TypedReader`, which yields `ReadValue` and `CardReader`, and
// `LiveSession`'s preview queries yield `RenderedRegion` and `ContentHit` (with
// the `HitGranularity` it carries). A name that cannot be spelled blocks the
// flow that returns it, so the gate exercises each flow rather than the list.
pub use ;
pub use ;
pub use Quillmark;