officemd_csv 0.1.8

CSV extraction aligned with OfficeMD markdown output
Documentation
1
2
3
4
5
6
7
8
9
10
use thiserror::Error;

/// Errors that can occur during CSV extraction.
#[derive(Debug, Error)]
pub enum CsvError {
    #[error("CSV parse error: {0}")]
    Csv(#[from] csv::Error),
    #[error("JSON serialization error: {0}")]
    Json(String),
}