Awesome
#micromarkdown.go
convert markdown to HTML via golang
this is the golang version of µmarkdown, take a look at the
PHP version and the
JavaScript version.
##about
License: MIT
Version: 0.1.3
Date: 10.2014
##howto
###test
wget https://github.com/SimonWaldherr/micromarkdown.go/archive/master.zip --no-check-certificate
unzip master.zip
cd ./micromarkdown.go-master/demo/
go run example.go
###use
go get github.com/SimonWaldherr/micromarkdown.go
import mmd "github.com/SimonWaldherr/micromarkdown.go"
import "fmt"
func main() {
md := mmd.Micromarkdown("#title\n\nlorem *ipsum* dolor sit\namet pluribus **procrastinatio**\n")
fmt.Println(string(md))
}
##contact
Feel free to contact me via eMail or on Twitter. This software will be continually developed. Suggestions and tips are always welcome.