mdopen - 实现在默认浏览器中查看markdown文件

mdopen - 实现在默认浏览器中查看markdown文件

Go 文本处理

访问GitHub主页

共42Star

详细介绍

GoDoc Build Status Go Report Card

mdopen

Allows to view markdown files in the default browser. For more details, see the API documentation.

CLI usage

Install:

go get github.com/romanyx/mdopen/cmd/mdopen

Create a markdown file:

echo "# Hello from markdown" > hello.md

View it in the default browser as html:

mdopen hello.md

You will see:

Example

API usage

Install:

go get github.com/romanyx/mdopen
package main

import "github.com/romanyx/mdopen"

func main() {
    f := strings.NewReader("# Hello from markdown")

    opnr := mdopen.New()
    if err := opnr.Open(f); err != nil {
        log.Fatal(err)
    }
}

Contributing

Please feel free to submit issues, fork the repository and send pull requests!