jsslint-core 1.1.0

Rule engine behind the Journal of Statistical Software (JSS) LaTeX/BibTeX style checker. Powers the jsslint CLI, WASM, Python, and R distributions.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! BibTeX parsing substrate — spec 018 Phase 2. See `parser.rs`'s
//! module docs for the exact `bibtexparser`-compatibility policy this
//! implements (including the `core/parser.py`-specific duplicate-key /
//! duplicate-field re-insertion behavior, which differs from raw
//! `bibtexparser`).

pub mod debug;
pub mod model;
pub mod parser;

pub use model::{DuplicateBlockKey, DuplicateFieldKey, Entry, Field, Library};
pub use parser::parse;