aboutsummaryrefslogtreecommitdiff
path: root/Documentation
diff options
context:
space:
mode:
authorJakob Odersky <jodersky@gmail.com>2015-09-12 22:35:47 +0200
committerJakob Odersky <jodersky@gmail.com>2015-09-12 22:37:15 +0200
commit68a3e1b2d598d5838241e48786cd38d790df95b4 (patch)
treed4410b30ab7993358c6756f033f5d5bb1db46831 /Documentation
parent6a23783b7a26b93b2dbe2ccb548357175041755c (diff)
downloadakka-serial-68a3e1b2d598d5838241e48786cd38d790df95b4.tar.gz
akka-serial-68a3e1b2d598d5838241e48786cd38d790df95b4.tar.bz2
akka-serial-68a3e1b2d598d5838241e48786cd38d790df95b4.zip
add documentation generation script
Diffstat (limited to 'Documentation')
-rw-r--r--Documentation/meta.yml5
-rwxr-xr-xDocumentation/mkbook13
2 files changed, 18 insertions, 0 deletions
diff --git a/Documentation/meta.yml b/Documentation/meta.yml
new file mode 100644
index 0000000..23adeef
--- /dev/null
+++ b/Documentation/meta.yml
@@ -0,0 +1,5 @@
+---
+title: flow - Serial Communication Library for Akka
+author: Jakob Odersky
+language: en-US
+... \ No newline at end of file
diff --git a/Documentation/mkbook b/Documentation/mkbook
new file mode 100755
index 0000000..22b79b4
--- /dev/null
+++ b/Documentation/mkbook
@@ -0,0 +1,13 @@
+#!/bin/sh
+
+pandoc -S --toc -N \
+ -V documentclass=report \
+ -V fontsize=11pt \
+ meta.yml \
+ getting-started.md \
+ basics.md \
+ watching.md \
+ building.md \
+ --standalone \
+ -t html5 \
+ -o flow.html