All Projects → romanyx → Mdopen

romanyx / Mdopen

Licence: mit
View markdown files in the default browser

Programming Languages

go
31211 projects - #10 most used programming language
golang
3204 projects

Labels

Projects that are alternatives of or similar to Mdopen

Markdownview
Android library to display markdown text.
Stars: ✭ 970 (+2209.52%)
Mutual labels:  markdown
Qlcommonmark
QuickLook generator for beautifully rendering CommonMark documents on macOS
Stars: ✭ 36 (-14.29%)
Mutual labels:  markdown
Cv Maker
simple elegant markdown based resumes
Stars: ✭ 1,003 (+2288.1%)
Mutual labels:  markdown
React Markdown Preview
React component preview markdown text in web browser. The minimal amount of CSS to replicate the GitHub Markdown style.
Stars: ✭ 34 (-19.05%)
Mutual labels:  markdown
Tmdlang
Timebase MarkDown Language
Stars: ✭ 35 (-16.67%)
Mutual labels:  markdown
Grunt Md2html
Small Grunt MultiTask to convert Markdown files to HTML, supporting Grunt >= 1.0.0
Stars: ✭ 37 (-11.9%)
Mutual labels:  markdown
Go Strip Markdown
Remove Markdown formatting. Written in Go.
Stars: ✭ 32 (-23.81%)
Mutual labels:  markdown
Remark Boilerplate
A boilerplate to create presentations using remark, Gulp, Stylus and more.
Stars: ✭ 41 (-2.38%)
Mutual labels:  markdown
Ods2md
Convert LibreOffice Calc Spreadsheets (*.ods) into Markdown tables.
Stars: ✭ 35 (-16.67%)
Mutual labels:  markdown
Markdownview
MarkdownView is an Android webview with the capablity of loading Markdown text or file and display it as HTML, it uses MarkdownJ and extends Android webview.
Stars: ✭ 993 (+2264.29%)
Mutual labels:  markdown
Gotenberg Go Client
Go client for the Gotenberg API
Stars: ✭ 35 (-16.67%)
Mutual labels:  markdown
Text Runner
Test runner for text
Stars: ✭ 35 (-16.67%)
Mutual labels:  markdown
Blink Mind React
A mind map library for react that based on immutable.js.
Stars: ✭ 38 (-9.52%)
Mutual labels:  markdown
Wxparse
wxParse-微信小程序富文本解析自定义组件,支持HTML及markdown解析
Stars: ✭ 7,618 (+18038.1%)
Mutual labels:  markdown
Markdown Latex
A markdown parser for converting markdown to LaTeX written in PHP.
Stars: ✭ 40 (-4.76%)
Mutual labels:  markdown
Notes
📝 Migrated to(迁移至) https://github.com/Kuangcp/Note 当前仓库已经废弃, 对应的博客网站:
Stars: ✭ 33 (-21.43%)
Mutual labels:  markdown
Blankup Electron
Markdown editor with clarity +1, as a desktop application.
Stars: ✭ 37 (-11.9%)
Mutual labels:  markdown
Markdown2pdf
A simple library to convert markdown to pdf using Java
Stars: ✭ 41 (-2.38%)
Mutual labels:  markdown
Mkdocs With Pdf
Generate a single PDF file from MkDocs repository.
Stars: ✭ 39 (-7.14%)
Mutual labels:  markdown
Recipes
A super minimal recipe website built on Markdown
Stars: ✭ 38 (-9.52%)
Mutual labels:  markdown

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!

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].