vimwiki 0.1.0-alpha.2

Library that provides support to parse, generate, and manipulate vimwiki langauge.
Documentation
1
2
3
4
5
6
7
8
9
10
use derive_more::Constructor;
use serde::{Deserialize, Serialize};
use std::collections::HashMap;

#[derive(Constructor, Clone, Debug, Eq, PartialEq, Serialize, Deserialize)]
pub struct PreformattedText {
    pub lang: Option<String>,
    pub metadata: HashMap<String, String>,
    pub lines: Vec<String>,
}