mirror of
https://github.com/etcd-io/etcd.git
synced 2024-09-27 06:25:44 +00:00

Moves the vendor/ directory to cmd/vendor. Vendored binaries are built from cmd/, which is backed by symlinks pointing back to repo root.
20 lines
541 B
Go
20 lines
541 B
Go
package md2man
|
|
|
|
import (
|
|
"github.com/russross/blackfriday"
|
|
)
|
|
|
|
func Render(doc []byte) []byte {
|
|
renderer := RoffRenderer(0)
|
|
extensions := 0
|
|
extensions |= blackfriday.EXTENSION_NO_INTRA_EMPHASIS
|
|
extensions |= blackfriday.EXTENSION_TABLES
|
|
extensions |= blackfriday.EXTENSION_FENCED_CODE
|
|
extensions |= blackfriday.EXTENSION_AUTOLINK
|
|
extensions |= blackfriday.EXTENSION_SPACE_HEADERS
|
|
extensions |= blackfriday.EXTENSION_FOOTNOTES
|
|
extensions |= blackfriday.EXTENSION_TITLEBLOCK
|
|
|
|
return blackfriday.Markdown(doc, renderer, extensions)
|
|
}
|