mirror of
https://github.com/pupperpowell/bibdle.git
synced 2026-02-04 10:54:44 -05:00
replaced trailing punctuation in verses with ellipses
This commit is contained in:
@@ -13,10 +13,12 @@
|
|||||||
? dailyVerse.reference
|
? dailyVerse.reference
|
||||||
.replace(/^Psalms /, "Psalm ")
|
.replace(/^Psalms /, "Psalm ")
|
||||||
.replace(/\s(\d+):/, " ?:")
|
.replace(/\s(\d+):/, " ?:")
|
||||||
: dailyVerse.reference.replace(/^Psalms /, "Psalm ")
|
: dailyVerse.reference.replace(/^Psalms /, "Psalm "),
|
||||||
);
|
);
|
||||||
let displayVerseText = $derived(
|
let displayVerseText = $derived(
|
||||||
dailyVerse.verseText.replace(/^([a-z])/, (c) => c.toUpperCase())
|
dailyVerse.verseText
|
||||||
|
.replace(/^([a-z])/, (c) => c.toUpperCase())
|
||||||
|
.replace(/[,:;-—]$/, "..."),
|
||||||
);
|
);
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
|||||||
16
todo.md
16
todo.md
@@ -1,8 +1,7 @@
|
|||||||
# in progress
|
# in progress
|
||||||
|
|
||||||
- Show new/old testament after 3 guesses and section after 7 guesses
|
- Show new/old testament after 3 guesses and section after 7 guesses
|
||||||
- Verses ending in semicolons, commas, etc. will be replaced with "..."
|
|
||||||
- For bonus points: guess the verse/psalm number
|
|
||||||
- How do you balance rewarding knowledge vs incentivising learning?
|
- How do you balance rewarding knowledge vs incentivising learning?
|
||||||
|
|
||||||
# todo
|
# todo
|
||||||
@@ -54,6 +53,19 @@ I created Bibdle from a combination of two things. The first is my lifelong desi
|
|||||||
|
|
||||||
# done
|
# done
|
||||||
|
|
||||||
|
## january 5th
|
||||||
|
|
||||||
|
- Verses ending in semicolons, commas, etc. will be replaced with "..."
|
||||||
|
|
||||||
|
## january 4th
|
||||||
|
|
||||||
|
- For bonus points: guess the verse/psalm number
|
||||||
|
- major UI styling revamp
|
||||||
|
|
||||||
|
## december 30th
|
||||||
|
|
||||||
|
- merged the embeddings/similarity route into production
|
||||||
|
|
||||||
## december 27th
|
## december 27th
|
||||||
|
|
||||||
- add event log to submitting first-guess or correct-guess to umami (to make bounce rate more accurate)
|
- add event log to submitting first-guess or correct-guess to umami (to make bounce rate more accurate)
|
||||||
|
|||||||
Reference in New Issue
Block a user