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
10
11
12
//! Optional protocol bridge for external LSP transport.
//!
//! The editor intelligence system is in-process first. This module exists as
//! an explicit extension point for protocol adapters.

#[derive(Debug, Default, Clone)]
pub struct ProtocolCapabilities {
    pub diagnostics: bool,
    pub hover: bool,
    pub completion: bool,
    pub semantic_highlighting: bool,
}