fartdown 0.1.0

An experimental semantic markup language and static site generator for crafting hypertext documents
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
use std::path::PathBuf;

use fartdown::ast::Node;

/// Artifact produced by a task
#[derive(Debug, Clone)]
#[allow(dead_code)]
pub enum Artifact {
    Path(PathBuf),
    String(String),
    Binary(Vec<u8>),
    Ast(Node),
}