We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2cbc789 commit 4a982a3Copy full SHA for 4a982a3
README.org
@@ -8,7 +8,7 @@ Use =nix-org-export= to export org files to PDFs using =(org-latex-export-to-pdf
8
9
- Ensure you have flakes enabled
10
- Add =github:t4ccer/nix-org-export= to your inputs
11
- - Call =exportOrgFor "your-system" ./path-to-org-file=
+ - Call =exportOrgFor "your-system" ./src "path-to-org-file="
12
13
** Example
14
@@ -19,7 +19,7 @@ Example exposes README of your project in PDF as a flake output.
19
description = "nix-org-export example";
20
inputs.nix-org-export.url = "github:t4ccer/nix-org-export";
21
outputs = { nix-org-export, ... }: {
22
- readmeExported = nix-org-export.exportOrgFor "x86_64-linux" ./README.org;
+ readmeExported = nix-org-export.exportOrgFor "x86_64-linux" ./. "README.org";
23
};
24
}
25
#+end_src
0 commit comments