tweak project proposal #1

Open
kiara wants to merge 95 commits from rewrite into main
2 changed files with 15 additions and 1 deletions
Showing only changes of commit 33f2eaaeff - Show all commits

View file

@ -3,5 +3,7 @@
## usage
```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
Review

Seems like the nix-build -A pdf thing got lost in cherry- and nit-picks?

Seems like the `nix-build -A pdf` thing got lost in cherry- and nit-picks?
Review

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

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
Review

note that the script is present still, at present it's just undocumented

note that the script is present still, at present it's just undocumented
```

12
shell.nix Normal file
View file

@ -0,0 +1,12 @@
{
pkgs ? import <nixpkgs> { },
}:
{
shell = pkgs.mkShellNoCC {
packages = with pkgs; [
pandoc
texliveMedium
librsvg
];
};
}