From 70b606f15fe0525f7b206f506bf86219a7a4eba6 Mon Sep 17 00:00:00 2001 From: Leonard Jonathan Oh Date: Mon, 21 Jun 2021 15:38:27 +0000 Subject: [PATCH] Docs (index.md): Use 'repeatone' playmode for each touchtypie practice link alongside only for each book URL --- generate/generate.sh | 6 +++--- index.md | 28 ++++++++++++++-------------- 2 files changed, 17 insertions(+), 17 deletions(-) diff --git a/generate/generate.sh b/generate/generate.sh index fc73543..01b2b05 100755 --- a/generate/generate.sh +++ b/generate/generate.sh @@ -13,7 +13,7 @@ MD_TABLE_ALIGNER='|---|---|' MD_TABLE_CONTENT=$( find libraries/ -type f | sort -h | while read -r l; do link="https://$NAMESPACE.github.io/$REPOSITORY_NAME/$l" - echo "| [$link]($link) | [Play now](https://play.touchtypie.com?playmode=repeatone&book_library_ids=$link) |"; + echo "| [$link]($link) | [Play now](https://play.touchtypie.com?book_library_ids=$link) |"; done ) @@ -30,9 +30,9 @@ MD_TABLE_ALIGNER='|---|---|' MD_TABLE_CONTENT=$( find collections/ -type f | sort -h | while read -r l; do link="https://$NAMESPACE.github.io/$REPOSITORY_NAME/$l" - echo "| [$link]($link) | [Play now](https://play.touchtypie.com?playmode=repeatone&book_collection_ids=$link) |"; + echo "| [$link]($link) | [Play now](https://play.touchtypie.com?book_collection_ids=$link) |"; done -) +)r cat - >> index.md <