feat: convert to plain text
This commit is contained in:
parent
0c57078a8a
commit
1b1862cb3f
3 changed files with 84 additions and 13 deletions
5
model.go
5
model.go
|
@ -9,6 +9,11 @@ type Lyrics struct {
|
|||
const USAGE = `Usage: lyc-cli [command] [options]
|
||||
Commands:
|
||||
sync Synchronize timeline of two lyrics files
|
||||
convert Convert lyrics file to another format
|
||||
help Show help`
|
||||
|
||||
const SYNC_USAGE = `Usage: lyc-cli sync <source> <target>`
|
||||
const CONVERT_USAGE = `Usage: lyc-cli convert <source> <target>
|
||||
Note:
|
||||
Target format is determined by file extension. Supported formats:
|
||||
.txt Plain text format(No meta/timeline tags)`
|
||||
|
|
Reference in a new issue