tweak project proposal #1
2 changed files with 15 additions and 1 deletions
|
@ -3,5 +3,7 @@
|
||||||
## usage
|
## usage
|
||||||
|
|
||||||
```sh
|
```sh
|
||||||
nix-shell -p pandoc mermaid-filter --command 'pandoc fediversity.md -o fediversity.html -F mermaid-filter'
|
nix-shell
|
||||||
|
pandoc fediversity.md -o fediversity.html
|
||||||
|
pandoc fediversity.html -o fediversity.pdf
|
||||||
|
|||||||
```
|
```
|
||||||
|
|
12
shell.nix
Normal file
12
shell.nix
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
{
|
||||||
|
pkgs ? import <nixpkgs> { },
|
||||||
|
}:
|
||||||
|
{
|
||||||
|
shell = pkgs.mkShellNoCC {
|
||||||
|
packages = with pkgs; [
|
||||||
|
pandoc
|
||||||
|
texliveMedium
|
||||||
|
librsvg
|
||||||
|
];
|
||||||
|
};
|
||||||
|
}
|
Loading…
Add table
Reference in a new issue
Seems like the
nix-build -A pdf
thing got lost in cherry- and nit-picks?was it ever tested? on my end it just errored out on images requiring network access, at which point i considered it not usable as-is
note that the script is present still, at present it's just undocumented