1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
use comrak::{markdown_to_html, ComrakOptions};
use shtola::{HashMap, Plugin, ShFile, IR};
use shtola::log::{info, debug};
use std::path::PathBuf;

pub fn plugin() -> Plugin {
	Box::new(|ir: IR| {
		info!("Starting Markdown processing");
		let markdown_files = ir
			.files
			.iter()
			.filter(|(p, _)| p.extension().unwrap() == "md");
		let mut update_hash: HashMap<PathBuf, ShFile> = HashMap::new();
		let mut removal_hash: HashMap<PathBuf, ShFile> = HashMap::new();
		for (path, file) in markdown_files {
			debug!("Processing {:?}", &path);
			let mut p = path.clone();
			p.set_extension("html");
			removal_hash.insert(path.to_path_buf(), ShFile::empty());
			update_hash.insert(
				p,
				ShFile {
					content: markdown_to_html(
						std::str::from_utf8(&file.content).unwrap(),
						&ComrakOptions::default(),
					)
					.into(),
					frontmatter: file.frontmatter.clone(),
				},
			);
		}
		info!("Finished Markdown processing");
		IR {
			files: update_hash.union(ir.files).difference(removal_hash),
			..ir
		}
	})
}

#[test]
fn it_works() {
	use shtola::Shtola;

	let mut s = Shtola::new();
	s.source("../fixtures/markdown");
	s.destination("../fixtures/markdown/dest");
	s.clean(true);
	s.register(plugin());
	let r = s.build().unwrap();
	let file: &ShFile = r.files.get(&PathBuf::from("hello.html")).unwrap();
	assert_eq!(
		std::str::from_utf8(&file.content).unwrap(),
		"<h1>Hello!</h1>\n<p>What's going <em>on</em>?</p>\n"
	)
}