diff options
author | Elena ``of Valhalla'' Grandi <valhalla@trueelena.org> | 2024-01-02 18:25:18 +0100 |
---|---|---|
committer | Elena ``of Valhalla'' Grandi <valhalla@trueelena.org> | 2024-01-02 18:25:18 +0100 |
commit | 097218469f9169bed0fb5942107f3c0156595d7c (patch) | |
tree | 994fdf215fda7eb43a90b6307bcbe02f24860263 | |
parent | a2eff4cbaba0478d9bc4614328a537035672c8ea (diff) |
Use pandoc instead of docutils to convert the README
-rw-r--r-- | .builds/update_readme.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.builds/update_readme.yml b/.builds/update_readme.yml index e9fbf50..01c4e5a 100644 --- a/.builds/update_readme.yml +++ b/.builds/update_readme.yml @@ -2,11 +2,11 @@ image: debian/testing oauth: "git.sr.ht/REPOSITORIES:RW git.sr.ht/PROFILE:RO" packages: - hut - - python3-docutils + - pandoc sources: - https://git.sr.ht/~valhalla/lesana tasks: - update-readme: | cd lesana - rst2html README.rst > README.html + pandoc -o README.html README.rst hut git update --readme README.html |