1 Star 0 Fork 0

iTanken/md-html-cli

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
main.go 836 Bytes
一键复制 编辑 原始数据 按行查看 历史
iTanken 提交于 2024-01-23 09:59 . ➖ 移除 winseq 依赖
package main
import (
"os"
"path/filepath"
"github.com/fatih/color"
"github.com/jessevdk/go-flags"
)
// CLI utility for converting markdown to a single html file
func main() {
var opts Options
inputs, err := flags.Parse(&opts)
if err != nil {
os.Exit(1)
}
if len(opts.InputFile) > 0 {
inputs = []string{opts.InputFile}
}
if len(inputs) <= 0 {
_, _ = colorRed.Fprintln(color.Error, "Please specify input Markdown")
os.Exit(1)
}
var files []string
for _, input := range inputs {
var f []string
if f, err = filepath.Glob(input); err != nil {
_, _ = colorRed.Fprintln(color.Error, err)
os.Exit(1)
}
files = append(files, f...)
}
if len(files) <= 0 {
_, _ = colorRed.Fprintln(color.Error, "File is not found")
os.Exit(1)
}
parser := HTMLParser{Options: opts}
parser.parserMarkdown(files)
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/iTiki/md-html-cli.git
git@gitee.com:iTiki/md-html-cli.git
iTiki
md-html-cli
md-html-cli
main

搜索帮助