c4fb0432ae
GitOrigin-RevId: 3fc1143a04da49a92c3663813c6a0c1e8ccd477f
9 lines
249 B
Nix
9 lines
249 B
Nix
# Render a Markdown file to HTML.
|
|
{ depot, ... }:
|
|
|
|
with depot.nix.yants;
|
|
|
|
defun [ path drv ] (file: depot.third_party.runCommandNoCC "${file}.rendered.html" {} ''
|
|
cat ${file} | ${depot.tools.cheddar}/bin/cheddar --about-filter ${file} > $out
|
|
'')
|
|
|