summaryrefslogtreecommitdiff
path: root/internal
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2026-01-21 21:37:57 +0200
committerPaul Buetow <paul@buetow.org>2026-01-21 21:37:57 +0200
commit6c69ffa83c1a7f534217e5af643c8bd1b4d2078b (patch)
tree009fb68da19043a0e7e3a665109a1141a8f495bd /internal
parent95bdcf2c73a643df227bccf909f3aa17d08b0f1c (diff)
docs: document Bulgarian-Bulgarian batch file format (double equals ==)
- Update README.md with complete batch file format documentation - Expanded from 3 to 5 supported formats - Added Format 4: Bulgarian-Bulgarian (monolingual) using double equals - Clarified Format 2 as English→Bulgarian with single equals - Noted that bg-bg cards generate two separate audio files - Update CLI help text to show batch file format examples - Added example of double equals syntax - Clarified single equals creates English→Bulgarian cards This closes the documentation gap for the Bulgarian-Bulgarian flashcard feature that was already implemented in the codebase.
Diffstat (limited to 'internal')
-rw-r--r--internal/cli/command.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/internal/cli/command.go b/internal/cli/command.go
index 155cb40..bf73221 100644
--- a/internal/cli/command.go
+++ b/internal/cli/command.go
@@ -29,7 +29,8 @@ Examples:
Batch file formats:
ябълка # Bulgarian word (will be translated to English)
- ябълка = apple # Bulgarian with translation provided
+ ябълка = apple # English→Bulgarian card (single equals)
+ ябълка == определение # Bulgarian→Bulgarian card (double equals)
= apple # English only (will be translated to Bulgarian)`,
Args: cobra.MaximumNArgs(1),
Version: internal.Version,