marco-core 1.0.2

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
//! Editor-facing intelligence features.

pub mod completion;
pub mod highlight;
pub mod hover;

pub use completion::{get_markdown_completions, CompletionItem};
pub use highlight::{compute_highlights, compute_highlights_with_source, Highlight, HighlightTag};
pub use hover::{get_hover_info, get_position_span, HoverInfo};