marco-core 1.1.0

nom-based Markdown parser, HTML renderer, and intelligence features (highlights, diagnostics, completions) for the Marco editor.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Markdown analysis: linting + diagnostics.

pub mod diagnostics;
pub mod lint;

pub use diagnostics::{
    compute_diagnostics, compute_diagnostics_critical, compute_diagnostics_with_options,
    Diagnostic, DiagnosticCode, DiagnosticSeverity, DiagnosticsOptions, DiagnosticsProfile,
};
pub use lint::{
    compute_lints, compute_lints_detailed, compute_lints_detailed_with_options,
    compute_lints_with_options, LintCodeBucket, LintDetailedReport, LintReport,
};