tvl-depot/nix/renderMarkdown/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

22 lines
509 B
Nix
Raw Normal View History

# Render a Markdown file to HTML.
{ depot, pkgs, ... }:
with depot.nix.yants;
let
args = struct "args" {
path = path;
tagfilter = option bool;
};
in
defun [ (either path args) drv ]
(arg: pkgs.runCommand "${arg.path or arg}.rendered.html" { }
(
let
tagfilter = if (arg.tagfilter or true) then "" else "--no-tagfilter";
in
''
cat ${arg.path or arg} | ${depot.tools.cheddar}/bin/cheddar --about-filter ${tagfilter} ${arg.path or arg} > $out
''
))