Add some tutorial articles
Documentation can build built into html for example using
`bazel build //documentation/...`
To build a specific file run `bazel build
//documentation/tutorials:make-a-drivebase-move`
Change-Id: Ie8c09cfeb60593e18349c8889f0c19e2c6a178e2
diff --git a/documentation/tutorials/BUILD b/documentation/tutorials/BUILD
new file mode 100644
index 0000000..13516c1
--- /dev/null
+++ b/documentation/tutorials/BUILD
@@ -0,0 +1,19 @@
+load("//tools/build_rules:pandoc.bzl", "pandoc_html")
+
+articles = [
+ "create-a-new-autonomous",
+ "create-a-new-robot",
+ "create-a-simple-program-for-running-a-motor",
+ "download-code-to-the-robot",
+ "make-a-drivebase-move",
+ "send-and-receive-messages-on-queues",
+ "submitting-code-for-a-review",
+ "tune-an-autonomous",
+ "generated-queue-code",
+ "using-bazel",
+]
+
+[pandoc_html(
+ name = article_name,
+ src = article_name + ".md",
+) for article_name in articles]