summaryrefslogtreecommitdiff
path: root/src/directive/inline.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/directive/inline.rs')
-rw-r--r--src/directive/inline.rs38
1 files changed, 38 insertions, 0 deletions
diff --git a/src/directive/inline.rs b/src/directive/inline.rs
new file mode 100644
index 0000000..efaf7ee
--- /dev/null
+++ b/src/directive/inline.rs
@@ -0,0 +1,38 @@
+use crate::error::SiteError;
+use crate::page::PageMeta;
+use crate::site::Site;
+use crate::wikitext::ParsedDirective;
+
+#[derive(Debug, Default, Eq, PartialEq)]
+pub struct Inline {}
+
+impl Inline {
+ pub const REQUIRED: &'static [&'static str] = &["pages"];
+ pub const ALLOWED: &'static [&'static str] = &[
+ "actions",
+ "archive",
+ "description",
+ "feedlimit",
+ "feeds",
+ "feedshow",
+ "limit",
+ "sort",
+ "template",
+ "trail",
+ ];
+ pub const ALLOW_ANY_UNNAMED: bool = true;
+
+ pub fn new() -> Self {
+ Self::default()
+ }
+
+ pub fn process(&self, _site: &Site, _meta: &mut PageMeta) -> Result<String, SiteError> {
+ Ok("FIXME:inline".into())
+ }
+}
+
+impl From<ParsedDirective> for Inline {
+ fn from(_p: ParsedDirective) -> Self {
+ Inline::new()
+ }
+}