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:
commit
39a134713e
3 changed files with 25 additions and 8 deletions
|
@ -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";
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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>
|
||||
|
|
Loading…
Add table
Reference in a new issue