diff --git a/app_wallabag2.md b/app_wallabag2.md index b62bed80..cc9b69e2 100644 --- a/app_wallabag2.md +++ b/app_wallabag2.md @@ -29,6 +29,6 @@ In addition to Wallabag core features, the following are made available with thi ### Upgrade from v1.x -No automatic upgrade process is available. You need a manual (but simple) migration from [Wallabag v1](/app_wallabag). +No automatic upgrade process is available. You need a manual (but simple) migration from Wallabag v1. Please take a look at the [official documentation](https://doc.wallabag.org/en/user/import/wallabagv1.html). diff --git a/app_wallabag2_fr.md b/app_wallabag2_fr.md index a58fbee7..3c39da92 100644 --- a/app_wallabag2_fr.md +++ b/app_wallabag2_fr.md @@ -28,6 +28,6 @@ En plus des fonctionnalités principales de Wallabag, ce paquet propose égaleme ### Mettre à niveau depuis la v1.x -La mise à niveau depuis le paquet Yunohost de [Wallabag v1](/app_wallabag) demande une opération manuelle, c'est pourquoi un nouveau paquet est fourni. Pour le processus de migration, merci de vous référer à [la documentation officielle +La mise à niveau depuis le paquet Yunohost de Wallabag v1 demande une opération manuelle, c'est pourquoi un nouveau paquet est fourni. Pour le processus de migration, merci de vous référer à [la documentation officielle de Wallabag](https://doc.wallabag.org/fr/user/import/wallabagv1.html). diff --git a/contributordoc.md b/contributordoc.md index 5b04b6c3..ced4e173 100644 --- a/contributordoc.md +++ b/contributordoc.md @@ -4,7 +4,7 @@ * [Writing documentation](/write_documentation) * [Documentation writing guide](/doc_writing_guide) * [Markdown guide](/doc_markdown_guide) - * [Propulser son code avec Git & GitHub](/doc_use_git) + * [Power your code using Git & GitHub](/doc_use_git) * [Chat rooms](/chat_rooms) * Application packaging * [Apps wishlist](/apps_wishlist) diff --git a/packaging_apps_config_panel.md b/packaging_apps_config_panel.md index 30f89b3e..a3afaf04 100644 --- a/packaging_apps_config_panel.md +++ b/packaging_apps_config_panel.md @@ -169,7 +169,7 @@ name = "Leed configuration" Will be available under this name in the config script: -``` +```bash YNH_CONFIG_MAIN_IS_PUBLIC_IS_PUBLIC ``` diff --git a/tests/dead_links.sh b/tests/dead_links.sh index f51cec96..c9fd27ce 100644 --- a/tests/dead_links.sh +++ b/tests/dead_links.sh @@ -4,7 +4,7 @@ returncode=0 for LINK in $(grep -nr -o -E "\]\(\/?(\w|-)+\)" ./*.md | tr -d ']()/') do PAGE=$(echo $LINK | awk -F: '{print $3}') - [ -e "$PAGE.md" ] || echo "This link looks dead (page doesn't exist in english?) $LINK" + [ -e "$PAGE.md" ] || echo "This Markdown link looks dead (page doesn't exist in english?) $LINK" [ -e "$PAGE.md" ] || returncode=1 done @@ -12,7 +12,7 @@ done for LINK in $(grep -nr -o -E 'href="\/?(\w|-)+\"' ./*.md | sed -E 's@href="/?@@g' | tr -d '"') do PAGE=$(echo $LINK | awk -F: '{print $3}') - [ -e "$PAGE.md" ] || echo "This link looks dead (page doesn't exist in english?) $LINK" + [ -e "$PAGE.md" ] || echo "This HTML link looks dead (page doesn't exist in english?) $LINK" [ -e "$PAGE.md" ] || returncode=1 done