panache-parser 0.2.0

Lossless CST parser and syntax wrappers for Pandoc markdown, Quarto, and RMarkdown
Documentation
1
2
3
4
5
6
7
//! Shared LaTeX environment parsing utilities.

/// Information about a detected LaTeX environment opening.
#[derive(Debug, Clone, PartialEq, Eq)]
pub(crate) struct LatexEnvInfo {
    pub env_name: String,
}