Le site arthur.bebou.netlib.re - retour accueil
git clone git://bebou.netlib.re/arthur.bebou
Log | Files | Refs |
commit 661af2e760503761321809fccdca217223ebb8d2 parent a671d5ce4d8c3eebcb8eef2127b1ceada8e07d4e Auterice: Arthur Pons <arthur.pons@unistra.fr> Date: Thu, 25 Apr 2024 09:16:55 +0200 Que la partie générée que l'on voulait fmt Diffstat:
M | contents/index.sh | | | 4 | ++++ |
M | page | | | 2 | +- |
2 files changed, 5 insertions(+), 1 deletion(-)
diff --git a/contents/index.sh b/contents/index.sh @@ -13,6 +13,9 @@ Chaque page est disponible au format : * `.md` - du markdown * `.roff` - du roff pour faire du pdf +[Comment naviguer sur ce site dans sa version markdown entièrement dans +vim](/navigation/index.html) + - - - endsection @@ -21,5 +24,6 @@ cat public/articles.tsv | grep -v 'contents/index.sh' | sort -t' ' -k5 -r | ./printlayout layouts/listearticles sh html titre desc publication | + fmt -s | save_md main diff --git a/page b/page @@ -15,7 +15,7 @@ save_md() { cat | case "$TARGET" in (html) cat $the/md | lowdown >> "$the/$1" ;; (term) cat $the/md | lowdown -tterm >> "$the/$1" ;; - (md) cat $the/md | fmt -s | + (md) cat $the/md | sed -E "s,\]\(/,]($url/," | sed -E "s,($url[^.]*)\.html,\1.md," >> "$the/$1" ;; (roff) cat $the/md | lowdown -tms >> "$the/$1" ;;