Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
ystyle authored Dec 31, 2019
1 parent 1a30235 commit 41f2c21
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,23 +3,25 @@
> 把txt文本转成epub电子书的命令行工具
### 功能
- 自动识别书名和章节
- 自动识别书名和章节(以下示例的章节名都可以自动匹配)
- 自定义章节匹配
- 自动给章节正文生成加粗居中的标题
- 段落自动识别
- 段落自动缩进

### 使用方法
```$xslt
Usage of E:\Code\Go\bin\TmdTextEpub.exe:
```shell
Usage of D:\TmdTextEpub.exe:
-author string
作者 (default "YSTYLE")
-bookname string
书名: 默认为txt文件名
-filename string
txt 文件名
-match string
匹配标题的正则表达式, 例: -match 第.{1,8}章 表示第和章字之间可以有1-8个任意文字 (default "第.{1,8}章")
匹配标题的正则表达式, 不写可以自动识别, 如果没生成章节就参考教程。例: -match 第.{1,8}章 表示第和章字之间可以有1-8个任意文字 (default "自动匹配,可自定义")
-tips
添加本软件教程 (default true)
```

### 示例
Expand Down Expand Up @@ -50,7 +52,7 @@ d:/TmdTextEpub.exe -filename d:/ebbok.txt -match "Section \d+"
自定义章节匹配, 章节格式为`Chapter xxx`:
```shell
cd d:/
d:/TmdTextEpub.ex e-filename d:/ebbok.txt -match "Chapter .{1,8}"
d:/TmdTextEpub.exe -filename d:/ebbok.txt -match "Chapter .{1,8}"
```

### 把书转为kindle的mobi格式
Expand Down

0 comments on commit 41f2c21

Please sign in to comment.