diff options
| author | Tong Sun <[email protected]> | 2020-08-09 11:42:51 -0400 |
|---|---|---|
| committer | Tong Sun <[email protected]> | 2020-08-09 11:42:51 -0400 |
| commit | 19ead5b3f9722a404244a5f93050ccfc17bb08c2 (patch) | |
| tree | 68fc51c689e4f40577bd8fa9f7ec872f7048825b /html2md_cliDef.go | |
| parent | - [*] refactor out handleOptions() & handlePlugins() to reduce cyclomatic com... (diff) | |
| download | html2md-19ead5b3f9722a404244a5f93050ccfc17bb08c2.tar.xz html2md-19ead5b3f9722a404244a5f93050ccfc17bb08c2.zip | |
- [+] add TableCompat plugin; enable Table
Diffstat (limited to 'html2md_cliDef.go')
| -rw-r--r-- | html2md_cliDef.go | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/html2md_cliDef.go b/html2md_cliDef.go index 04b9490..c27b33b 100644 --- a/html2md_cliDef.go +++ b/html2md_cliDef.go @@ -42,6 +42,7 @@ type rootT struct { PluginGitHubFlavored bool `cli:"G,plugin-gfm" usage:"Plugin GitHubFlavored"` PluginStrikethrough bool `cli:"S,plugin-strikethrough" usage:"Plugin Strikethrough"` PluginTable bool `cli:"T,plugin-table" usage:"Plugin Table"` + PluginTableCompat bool `cli:"plugin-table-compat" usage:"Plugin TableCompat"` PluginTaskListItems bool `cli:"L,plugin-task-list" usage:"Plugin TaskListItems"` PluginVimeoEmbed bool `cli:"V,plugin-vimeo" usage:"Plugin VimeoEmbed"` PluginYoutubeEmbed bool `cli:"Y,plugin-youtube" usage:"Plugin YoutubeEmbed"` @@ -84,6 +85,7 @@ var root = &cli.Command{ // PluginGitHubFlavored bool // PluginStrikethrough bool // PluginTable bool +// PluginTableCompat bool // PluginTaskListItems bool // PluginVimeoEmbed bool // PluginYoutubeEmbed bool @@ -96,7 +98,7 @@ var root = &cli.Command{ // var ( // progname = "html2md" // version = "0.1.0" -// date = "2020-07-26" +// date = "2020-08-09" // rootArgv *rootT // // Opts store all the configurable options |