1
0
Fork 0
mirror of https://github.com/hercules-ci/flake-parts.git synced 2025-03-31 04:04:55 +00:00

Merge pull request #26 from hercules-ci/format-options-html

Format options html
This commit is contained in:
Robert Hensing 2022-05-28 12:51:07 +02:00 committed by GitHub
commit 39a134713e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 25 additions and 8 deletions

View file

@ -40,12 +40,12 @@
effects = inputs.hercules-ci-effects.lib.withPkgs pkgs;
in
{
netlifyDeploy = effects.runIf (branch == "main") (effects.netlifyDeploy {
netlifyDeploy = effects.netlifyDeploy {
content = config.flake.packages.x86_64-linux.siteContent;
secretName = "default-netlify";
siteId = "29a153b1-3698-433c-bc73-62415efb8117";
productionDeployment = true;
});
productionDeployment = branch == "main";
};
};
};
};

View file

@ -61,8 +61,28 @@
baseUrl = "https://github.com/hercules-ci/flake-parts/blob/main";
sourcePath = ../.;
};
# pandoc
htmlBefore = ''
<html>
<head>
<title>Options</title>
<style type="text/css">
a:target { background-color: rgba(239,255,0,0.5); }
body {
max-width: 40em;
margin-left: auto;
margin-right: auto;
}
</style>
</head>
<body>
'';
htmlAfter = ''
</body>
</html>
'';
buildPhase = ''
pandoc --verbose --from docbook --to html5 $coreOptions >options.html
(echo "$htmlBefore"; pandoc --verbose --from docbook --to html5 $coreOptions; echo "$htmlAfter"; ) >options.html
'';
installPhase = ''
mkdir -p $out

View file

@ -19,11 +19,8 @@
</xsl:template>
<xsl:template match="db:varlistentry">
<section>
<xsl:attribute name="xml:id">
<xsl:value-of select="db:term/@xml:id"/>
</xsl:attribute>
<title>
<xsl:copy-of select="db:term/db:option"/>
<link xlink:href="#{db:term/@xml:id}" xml:id="{db:term/@xml:id}"><xsl:copy-of select="db:term/db:option"/></link>
</title>
<xsl:apply-templates select="db:listitem/*"/>
</section>