Skip to content

Instantly share code, notes, and snippets.

@ancientlore
Created May 28, 2014 18:09
Show Gist options
  • Save ancientlore/fa1a084def32e0828a33 to your computer and use it in GitHub Desktop.
Save ancientlore/fa1a084def32e0828a33 to your computer and use it in GitHub Desktop.
Markdown issue
package main
import (
"fmt"
"github.com/russross/blackfriday"
)
func main() {
outb := blackfriday.MarkdownCommon([]byte(`
![pic](media/pic.png)
[url](docs/doc.html)
`))
fmt.Print(string(outb))
}
@ancientlore
Copy link
Author

Output is:

<p><img alt="pic"/>

<a>url</a></p>

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment