summaryrefslogtreecommitdiff
path: root/src/directive/graph.rs
blob: 8234ed2622d7429c756a7373f11e0ed8d2dcd4e0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
use crate::error::SiteError;
use crate::page::PageMeta;
use crate::site::Site;
use crate::wikitext::ParsedDirective;

#[derive(Debug, Default, Eq, PartialEq)]
pub struct Graph {}

impl Graph {
    pub const REQUIRED: &'static [&'static str] = &[];
    pub const ALLOWED: &'static [&'static str] = &["src", "type"];
    pub const ALLOW_ANY_UNNAMED: bool = true;

    pub fn process(&self, _site: &Site, _meta: &mut PageMeta) -> Result<String, SiteError> {
        Err(SiteError::UnimplementedDirective("graph".into()))
    }
}

impl From<&ParsedDirective> for Graph {
    fn from(_: &ParsedDirective) -> Self {
        Graph::default()
    }
}