mirror of
https://github.com/russross/blackfriday.git
synced 2024-03-22 13:40:34 +08:00
Fix up method documentation formatting.
This commit is contained in:
parent
585af8ba49
commit
d0d854958e
34
html.go
34
html.go
|
@ -216,24 +216,22 @@ func (options *Html) BlockCodeNormal(out *bytes.Buffer, text []byte, lang string
|
||||||
out.WriteString("</code></pre>\n")
|
out.WriteString("</code></pre>\n")
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
// GitHub style code block:
|
||||||
* GitHub style code block:
|
//
|
||||||
*
|
// <pre lang="LANG"><code>
|
||||||
* <pre lang="LANG"><code>
|
// ...
|
||||||
* ...
|
// </pre></code>
|
||||||
* </pre></code>
|
//
|
||||||
*
|
// Unlike other parsers, we store the language identifier in the <pre>,
|
||||||
* Unlike other parsers, we store the language identifier in the <pre>,
|
// and don't let the user generate custom classes.
|
||||||
* and don't let the user generate custom classes.
|
//
|
||||||
*
|
// The language identifier in the <pre> block gets postprocessed and all
|
||||||
* The language identifier in the <pre> block gets postprocessed and all
|
// the code inside gets syntax highlighted with Pygments. This is much safer
|
||||||
* the code inside gets syntax highlighted with Pygments. This is much safer
|
// than letting the user specify a CSS class for highlighting.
|
||||||
* than letting the user specify a CSS class for highlighting.
|
//
|
||||||
*
|
// Note that we only generate HTML for the first specifier.
|
||||||
* Note that we only generate HTML for the first specifier.
|
// E.g.
|
||||||
* E.g.
|
// ~~~~ {.python .numbered} => <pre lang="python"><code>
|
||||||
* ~~~~ {.python .numbered} => <pre lang="python"><code>
|
|
||||||
*/
|
|
||||||
func (options *Html) BlockCodeGithub(out *bytes.Buffer, text []byte, lang string) {
|
func (options *Html) BlockCodeGithub(out *bytes.Buffer, text []byte, lang string) {
|
||||||
doubleSpace(out)
|
doubleSpace(out)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user