about summary refs log tree commit diff
path: root/nix/renderMarkdown/default.nix
blob: 8d6b31cfccca2b2cbd89db7a9f51c80fecc84773 (plain) (blame)
1
2
3
4
5
6
7
8
# Render a Markdown file to HTML.
{ depot, pkgs, ... }:

with depot.nix.yants;

defun [ path drv ] (file: pkgs.runCommandNoCC "${file}.rendered.html" { } ''
  cat ${file} | ${depot.tools.cheddar}/bin/cheddar --about-filter ${file} > $out
'')