mirror of
https://gitea.com/gitea/tea.git
synced 2024-11-03 04:27:21 -05:00
0a5cdd60ac
Merge branch 'master' into update-cli-lib2 [Vendor] Update stretchr/testify v1.3.0 -> v1.4.0 (#83) update github.com/stretchr/testify v1.3.0 -> v1.4.0 Co-authored-by: 6543 <6543@obermui.de> Reviewed-by: techknowlogick <techknowlogick@gitea.io> Reviewed-by: sapk <sapk@noreply.gitea.io> Reviewed-by: appleboy <appleboy.tw@gmail.com> Update urfave/cli v1.20.0 -> v1.22.2 Co-authored-by: 6543 <6543@obermui.de> Reviewed-by: mrsdizzie <info@mrsdizzie.com> Reviewed-by: Lunny Xiao <xiaolunwen@gmail.com>
19 lines
895 B
Go
19 lines
895 B
Go
// Package blackfriday is a markdown processor.
|
|
//
|
|
// It translates plain text with simple formatting rules into an AST, which can
|
|
// then be further processed to HTML (provided by Blackfriday itself) or other
|
|
// formats (provided by the community).
|
|
//
|
|
// The simplest way to invoke Blackfriday is to call the Run function. It will
|
|
// take a text input and produce a text output in HTML (or other format).
|
|
//
|
|
// A slightly more sophisticated way to use Blackfriday is to create a Markdown
|
|
// processor and to call Parse, which returns a syntax tree for the input
|
|
// document. You can leverage Blackfriday's parsing for content extraction from
|
|
// markdown documents. You can assign a custom renderer and set various options
|
|
// to the Markdown processor.
|
|
//
|
|
// If you're interested in calling Blackfriday from command line, see
|
|
// https://github.com/russross/blackfriday-tool.
|
|
package blackfriday
|