blob: 13516c10e9df024eb178409e6961cb6540e7103f [file] [log] [blame]
Adrian Brandemuehl72288542018-08-15 20:23:27 -07001load("//tools/build_rules:pandoc.bzl", "pandoc_html")
2
3articles = [
4 "create-a-new-autonomous",
5 "create-a-new-robot",
6 "create-a-simple-program-for-running-a-motor",
7 "download-code-to-the-robot",
8 "make-a-drivebase-move",
9 "send-and-receive-messages-on-queues",
10 "submitting-code-for-a-review",
11 "tune-an-autonomous",
12 "generated-queue-code",
13 "using-bazel",
14]
15
16[pandoc_html(
17 name = article_name,
18 src = article_name + ".md",
19) for article_name in articles]