Adrian Brandemuehl | 7228854 | 2018-08-15 20:23:27 -0700 | [diff] [blame^] | 1 | load("//tools/build_rules:pandoc.bzl", "pandoc_html") |
| 2 | |
| 3 | articles = [ |
| 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] |