kopitiam_document/citation.rs
1/// A citation detected inside paragraph text, kept for provenance reporting.
2/// Citations are never extracted out of or altered within their surrounding
3/// paragraph text -- this only records that one was seen, and where.
4#[derive(Debug, Clone, PartialEq)]
5pub struct Citation {
6 pub text: String,
7}