diff options
author | Antonin Décimo | 2021-07-11 17:56:13 +0200 |
---|---|---|
committer | Antonin Décimo | 2021-07-11 17:56:13 +0200 |
commit | 2237c3c8700b9edc585995a23db5e99c51684863 (patch) | |
tree | afe983fcab2726fb2afd7fcaf0282dc5e11814e4 /PKGBUILD | |
parent | 13e85f0eb2cdce808ecd787277e1448b1d0df163 (diff) | |
download | aur-2237c3c8700b9edc585995a23db5e99c51684863.tar.gz |
Fix title of README
Diffstat (limited to 'PKGBUILD')
-rw-r--r-- | PKGBUILD | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -57,7 +57,8 @@ package() { local doc="$pkgdir/usr/share/doc/galene" install -dm755 "$doc" - for file in README README.FRONTEND README.PROTOCOL; do + pandoc --from=markdown --to html --standalone --metadata title="Galène" README > "${doc}/README.html" + for file in README.FRONTEND README.PROTOCOL; do pandoc --from=markdown --to html --standalone --shift-heading-level-by=-1 "$file" > "${doc}/${file}.html" done |