diff options
author | Gerd Hoffmann <kraxel@redhat.com> | 2019-11-25 13:24:23 +0100 |
---|---|---|
committer | Gerd Hoffmann <kraxel@redhat.com> | 2019-11-25 13:24:23 +0100 |
commit | a1e67ddd7da51b9fa0e92b7a45b4fe081f6b66fd (patch) | |
tree | bda6243874d07c3f755e9ccff95f655e0d1f77bd /s2i | |
parent | 00d3c34fd6405aa4ed8b38ab05084abbd693964c (diff) | |
download | s2i-virtio-spec-a1e67ddd7da51b9fa0e92b7a45b4fe081f6b66fd.tar.gz |
stylesheet quirks
Diffstat (limited to 's2i')
-rwxr-xr-x | s2i/bin/assemble | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/s2i/bin/assemble b/s2i/bin/assemble index 13fd195..18ee439 100755 --- a/s2i/bin/assemble +++ b/s2i/bin/assemble @@ -31,6 +31,10 @@ cp -av virtio-spec/*.{html,css,pdf} virtio-spec/images output echo "---> CSS fixup ..." cat <<EOF >> output/*.css +@import url(kraxel.css); +EOF + +cat <<EOF >> output/kraxel.css body { /* no extra long lines please */ max-width: 100ch; @@ -44,7 +48,7 @@ body { } EOF -echo "---> add README ..." +echo "---> add HEADER ..." cat <<EOF >> output/HEADER.html <h1>virtio specification</h1> <p> @@ -57,7 +61,7 @@ cat <<EOF >> output/HEADER.html <li><a href="$(cd output; ls *.pdf)">print version (pdf)</a>. </ul> <hr> -<h3>directory index</h3> +<h3>Directory index</h3> EOF echo "---> Fix permissions ..." |