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", |
Adrian Brandemuehl | 7228854 | 2018-08-15 20:23:27 -0700 | [diff] [blame] | 9 | "submitting-code-for-a-review", |
| 10 | "tune-an-autonomous", |
Adrian Brandemuehl | 7228854 | 2018-08-15 20:23:27 -0700 | [diff] [blame] | 11 | "using-bazel", |
| 12 | ] |
| 13 | |
| 14 | [pandoc_html( |
| 15 | name = article_name, |
| 16 | src = article_name + ".md", |
| 17 | ) for article_name in articles] |