blackfriday icon indicating copy to clipboard operation
blackfriday copied to clipboard

Blackfriday: a markdown processor for Go

Results 121 blackfriday issues
Sort by recently updated
recently updated
newest added

here are two types of code: ``` package main import ( "gopkg.in/russross/blackfriday.v2" "log" "web/utils" ) func Markdown2Html(content string) string { output := blackfriday.Run([]byte(content), blackfriday.WithNoExtensions()) return string(output) } func main() {...

Expected: `*Y*TP` -> `YTP` But this happens: `*Y*TP` -> `*Y*TP` Currently, Intra-word em-suppression does not distinguish the two types of emChar `*` and `_`. That is, `*` is treated as...

This application is using blackfriday for rendering markdown text inside of wiki pages: https://github.com/prologic/wiki. We've run into limitations with the current solution for converting camel-cased text into markdown links. Right...

Every exported function in a program should have a doc comment. The first sentence should be a summary that starts with the name being declared. From [effective go](https://golang.org/doc/effective_go.html#commentary). PR generated...

[Issue reported to Hugo](https://github.com/spf13/hugo/issues/2928)

This might be a known limitation, but since I hit it, I thought I'd report this. This results in extra `p` tags after the empty lines: ```md ## Directions ###...

Hello! I'm in the process of [migrating](https://github.com/twbs/bootstrap/pull/28014) Bootstrap's main site to Hugo. I hit a case where Markdown stops rendering to HTML if there's any HTML comment. Reduced test case:...

A tracking issue to mark stuff that needs forward porting from v1 to v2. API-breaking (i.e. must be addressed before releasing v2): * _No known issues_ Other: * [ ]...

v2

Please add support for external link typing. https://devdocs.io/html/link_types#external > Indicates that the hyperlink leads to a resource outside the site of the current page; that is, following the link will...

My case was using [local specific date](https://en.wikipedia.org/wiki/Date_and_time_notation_in_Hungary) string at the beginning of a line. I think it makes sense to only consider up to 3 digit numbers as ordered list...