summaryrefslogtreecommitdiff
path: root/build.rs
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2022-06-13 09:35:52 +0300
committerLars Wirzenius <liw@liw.fi>2022-06-24 11:12:07 +0300
commit796da8edcc2541a5343bdc53ae21e12c04419f52 (patch)
treefbb22a30082073774f8f6c90ac6e1bf0eb138a95 /build.rs
parentf5fe497d7f55b31d47be59771649c2019b0265a2 (diff)
downloadriki-796da8edcc2541a5343bdc53ae21e12c04419f52.tar.gz
feat: rudimentary HTML generation
This handles paragraphs and h1 headings, for now. More to come later. There's also some testing. Sponsored-by: author
Diffstat (limited to 'build.rs')
-rw-r--r--build.rs4
1 files changed, 4 insertions, 0 deletions
diff --git a/build.rs b/build.rs
new file mode 100644
index 0000000..a9e5ec8
--- /dev/null
+++ b/build.rs
@@ -0,0 +1,4 @@
+fn main() {
+ subplot_build::codegen("rikiwiki.md")
+ .expect("failed to generate code with Subplot");
+}