anselmus 0.1.0

Abridged Notation for Scholarly Editions: Leiden Markup Utility System. (Placeholder for upcoming release)
Documentation
//! # ANSELMUS
//!
//! **A**bridged **N**otation for **S**cholarly **E**ditions: **L**eiden **M**arkup **U**tility **S**ystem.
//!
//! This crate is currently in a private alpha stage at Sapienza University of Rome.
//! The name is reserved for the upcoming release of the ANSELMUS parser and utility suite.

/// Placeholder function to verify compilation.
pub fn version() -> &'static str {
    env!("CARGO_PKG_VERSION")
}

use nom::IResult;

/// Placeholder parser function
pub fn parse_placeholder(input: &str) -> IResult<&str, &str> {
    Ok((input, ""))
}

#[cfg(test)]
mod tests {
    use super::*;

    #[test]
    fn it_works() {
        assert_eq!(version(), "0.1.0");
    }
}