blob: d94d255348fa6e5de5b8194fba1b75519acc34b4 [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",
Adrian Brandemuehl72288542018-08-15 20:23:27 -07009 "submitting-code-for-a-review",
10 "tune-an-autonomous",
Adrian Brandemuehl72288542018-08-15 20:23:27 -070011 "using-bazel",
12]
13
14[pandoc_html(
15 name = article_name,
16 src = article_name + ".md",
Philipp Schraderdada1072020-11-24 11:34:46 -080017 target_compatible_with = ["@platforms//os:linux"],
Adrian Brandemuehl72288542018-08-15 20:23:27 -070018) for article_name in articles]