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
//! Iota Syntaxis parser — the Unicode variant of Jot Syntax
//! (<https://iotasyntaxis.org>).
//!
//! A thin shim over the [`jots`] crate with the variant preset:
//! identifier and filename character classes follow Unicode
//! `XID_Start`/`XID_Continue` instead of ASCII. Everything else —
//! wire format, `JOTS_*` env vars, `.jot.toml`, diagnostic codes —
//! is shared verbatim between the variants, so the two crates are
//! drop-in alternatives distinguished only by the default.
//!
//! The variant is runtime state on [`Config::unicode`]; this crate
//! exists so downstream users can depend on an explicitly
//! Iota-flavored surface without carrying the toggle themselves.
pub use ;
pub const VERSION: &str = env!;
/// A [`jots::Config`] with the Iota Syntaxis variant preset.
/// Load the standard config cascade (`~/.jot.toml` → `.jot.toml`
/// walk → `JOTS_*` env) with the Iota Syntaxis variant preset.
/// Parse `text` as Iota Syntaxis. The variant is forced on
/// regardless of `cfg.unicode`; every other flag applies as-is.