-
-
Notifications
You must be signed in to change notification settings - Fork 116
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add pandoc support back to rust script #349
Conversation
The changes from #329 could be added if the nixpkgs PR lands or we pin our nixpkgs to it |
The nixpkgs PR has been merged. |
Great, thanks for the notice
|
(for now)
386a7a2
to
e24d553
Compare
Internal links show as |
Yes, we did not fix the question marks yet. In the NixOS manual, we convert them back to I think it should be possible to use manual’s olink database to get this information: --- a/nixos/doc/manual/default.nix
+++ b/nixos/doc/manual/default.nix
@@ -159,7 +159,7 @@ let
'';
in rec {
- inherit generatedSources;
+ inherit generatedSources olinkDB;
inherit (optionsDoc) optionsJSON optionsXML optionsDocBook;
--- a/nixos/release.nix
+++ b/nixos/release.nix
@@ -132,6 +132,7 @@ in rec {
manualEpub = (buildFromConfig ({ ... }: { }) (config: config.system.build.manual.manualEpub));
manpages = buildFromConfig ({ ... }: { }) (config: config.system.build.manual.manpages);
manualGeneratedSources = buildFromConfig ({ ... }: { }) (config: config.system.build.manual.generatedSources);
+ manualOlinkDB = buildFromConfig ({ ... }: { }) (config: config.system.build.manual.olinkDB);
options = (buildFromConfig ({ ... }: { }) (config: config.system.build.manual.optionsJSON)).x86_64-linux;
|
seems like pandoc hasnt implemented olinks support yet..
|
Is this at least the same state as prior to the rewrite? |
Yes, see #303. |
Ok, I'd say we should restore that state first. |
Just to be clear, |
Ah I see |
Addressing #329
Pandoc support for descriptions was removed in #320 and now comes back to the rewrite