2014-04-10 20:20:58 +02:00
|
|
|
// Copyright 2014 The Gogs Authors. All rights reserved.
|
2018-10-30 23:26:28 +01:00
|
|
|
// Copyright 2018 The Gitea Authors. All rights reserved.
|
2014-04-10 20:20:58 +02:00
|
|
|
// Use of this source code is governed by a MIT-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
2016-02-20 23:10:05 +01:00
|
|
|
package markdown
|
2014-04-10 20:20:58 +02:00
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
2019-10-31 02:06:25 +01:00
|
|
|
"io"
|
2014-04-10 20:20:58 +02:00
|
|
|
"strings"
|
|
|
|
|
2017-04-21 09:01:08 +02:00
|
|
|
"code.gitea.io/gitea/modules/markup"
|
2016-11-10 17:24:48 +01:00
|
|
|
"code.gitea.io/gitea/modules/setting"
|
2018-02-20 13:50:42 +01:00
|
|
|
"code.gitea.io/gitea/modules/util"
|
2017-07-06 22:38:38 +02:00
|
|
|
|
2019-10-31 02:06:25 +01:00
|
|
|
"github.com/russross/blackfriday/v2"
|
2014-04-10 20:20:58 +02:00
|
|
|
)
|
|
|
|
|
2016-02-20 23:10:05 +01:00
|
|
|
// Renderer is a extended version of underlying render object.
|
|
|
|
type Renderer struct {
|
2014-10-04 23:15:22 +02:00
|
|
|
blackfriday.Renderer
|
2017-09-21 07:20:14 +02:00
|
|
|
URLPrefix string
|
|
|
|
IsWiki bool
|
2014-04-10 20:20:58 +02:00
|
|
|
}
|
|
|
|
|
2018-02-27 08:09:18 +01:00
|
|
|
var byteMailto = []byte("mailto:")
|
|
|
|
|
2019-10-31 02:06:25 +01:00
|
|
|
var htmlEscaper = [256][]byte{
|
|
|
|
'&': []byte("&"),
|
|
|
|
'<': []byte("<"),
|
|
|
|
'>': []byte(">"),
|
|
|
|
'"': []byte("""),
|
2016-01-09 03:59:04 +01:00
|
|
|
}
|
|
|
|
|
2019-10-31 02:06:25 +01:00
|
|
|
func escapeHTML(w io.Writer, s []byte) {
|
|
|
|
var start, end int
|
|
|
|
for end < len(s) {
|
|
|
|
escSeq := htmlEscaper[s[end]]
|
|
|
|
if escSeq != nil {
|
|
|
|
_, _ = w.Write(s[start:end])
|
|
|
|
_, _ = w.Write(escSeq)
|
|
|
|
start = end + 1
|
|
|
|
}
|
|
|
|
end++
|
2017-02-14 02:13:59 +01:00
|
|
|
}
|
2019-10-31 02:06:25 +01:00
|
|
|
if start < len(s) && end <= len(s) {
|
|
|
|
_, _ = w.Write(s[start:end])
|
2014-04-10 20:20:58 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-10-31 02:06:25 +01:00
|
|
|
// RenderNode is a default renderer of a single node of a syntax tree. For
|
|
|
|
// block nodes it will be called twice: first time with entering=true, second
|
|
|
|
// time with entering=false, so that it could know when it's working on an open
|
|
|
|
// tag and when on close. It writes the result to w.
|
|
|
|
//
|
|
|
|
// The return value is a way to tell the calling walker to adjust its walk
|
|
|
|
// pattern: e.g. it can terminate the traversal by returning Terminate. Or it
|
|
|
|
// can ask the walker to skip a subtree of this node by returning SkipChildren.
|
|
|
|
// The typical behavior is to return GoToNext, which asks for the usual
|
|
|
|
// traversal to the next node.
|
|
|
|
func (r *Renderer) RenderNode(w io.Writer, node *blackfriday.Node, entering bool) blackfriday.WalkStatus {
|
|
|
|
switch node.Type {
|
|
|
|
case blackfriday.Image:
|
|
|
|
prefix := r.URLPrefix
|
|
|
|
if r.IsWiki {
|
|
|
|
prefix = util.URLJoin(prefix, "wiki", "raw")
|
2017-04-24 06:18:36 +02:00
|
|
|
}
|
2019-10-31 02:06:25 +01:00
|
|
|
prefix = strings.Replace(prefix, "/src/", "/media/", 1)
|
|
|
|
link := node.LinkData.Destination
|
|
|
|
if len(link) > 0 && !markup.IsLink(link) {
|
|
|
|
lnk := string(link)
|
|
|
|
lnk = util.URLJoin(prefix, lnk)
|
|
|
|
lnk = strings.Replace(lnk, " ", "+", -1)
|
|
|
|
link = []byte(lnk)
|
|
|
|
}
|
|
|
|
node.LinkData.Destination = link
|
|
|
|
// Render link around image only if parent is not link already
|
|
|
|
if node.Parent != nil && node.Parent.Type != blackfriday.Link {
|
|
|
|
if entering {
|
|
|
|
_, _ = w.Write([]byte(`<a href="`))
|
|
|
|
escapeHTML(w, link)
|
|
|
|
_, _ = w.Write([]byte(`">`))
|
|
|
|
return r.Renderer.RenderNode(w, node, entering)
|
|
|
|
}
|
|
|
|
s := r.Renderer.RenderNode(w, node, entering)
|
|
|
|
_, _ = w.Write([]byte(`</a>`))
|
|
|
|
return s
|
|
|
|
}
|
|
|
|
return r.Renderer.RenderNode(w, node, entering)
|
|
|
|
case blackfriday.Link:
|
|
|
|
// special case: this is not a link, a hash link or a mailto:, so it's a
|
|
|
|
// relative URL
|
|
|
|
link := node.LinkData.Destination
|
|
|
|
if len(link) > 0 && !markup.IsLink(link) &&
|
|
|
|
link[0] != '#' && !bytes.HasPrefix(link, byteMailto) &&
|
|
|
|
node.LinkData.Footnote == nil {
|
|
|
|
lnk := string(link)
|
|
|
|
if r.IsWiki {
|
|
|
|
lnk = util.URLJoin("wiki", lnk)
|
|
|
|
}
|
|
|
|
link = []byte(util.URLJoin(r.URLPrefix, lnk))
|
|
|
|
}
|
|
|
|
node.LinkData.Destination = link
|
|
|
|
return r.Renderer.RenderNode(w, node, entering)
|
|
|
|
case blackfriday.Text:
|
|
|
|
isListItem := false
|
|
|
|
for n := node.Parent; n != nil; n = n.Parent {
|
|
|
|
if n.Type == blackfriday.Item {
|
|
|
|
isListItem = true
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if isListItem {
|
|
|
|
text := node.Literal
|
|
|
|
switch {
|
|
|
|
case bytes.HasPrefix(text, []byte("[ ] ")):
|
|
|
|
_, _ = w.Write([]byte(`<span class="ui fitted disabled checkbox"><input type="checkbox" disabled="disabled" /><label /></span>`))
|
|
|
|
text = text[3:]
|
|
|
|
case bytes.HasPrefix(text, []byte("[x] ")):
|
|
|
|
_, _ = w.Write([]byte(`<span class="ui checked fitted disabled checkbox"><input type="checkbox" checked="" disabled="disabled" /><label /></span>`))
|
|
|
|
text = text[3:]
|
|
|
|
}
|
|
|
|
node.Literal = text
|
2017-04-24 06:18:36 +02:00
|
|
|
}
|
2016-01-13 13:25:52 +01:00
|
|
|
}
|
2019-10-31 02:06:25 +01:00
|
|
|
return r.Renderer.RenderNode(w, node, entering)
|
2014-10-15 05:44:34 +02:00
|
|
|
}
|
|
|
|
|
2018-02-27 08:09:18 +01:00
|
|
|
const (
|
|
|
|
blackfridayExtensions = 0 |
|
2019-10-31 02:06:25 +01:00
|
|
|
blackfriday.NoIntraEmphasis |
|
|
|
|
blackfriday.Tables |
|
|
|
|
blackfriday.FencedCode |
|
|
|
|
blackfriday.Strikethrough |
|
|
|
|
blackfriday.NoEmptyLineBeforeBlock |
|
|
|
|
blackfriday.DefinitionLists |
|
|
|
|
blackfriday.Footnotes |
|
|
|
|
blackfriday.HeadingIDs |
|
|
|
|
blackfriday.AutoHeadingIDs
|
2018-02-27 08:09:18 +01:00
|
|
|
blackfridayHTMLFlags = 0 |
|
2019-10-31 02:06:25 +01:00
|
|
|
blackfriday.Smartypants
|
2018-02-27 08:09:18 +01:00
|
|
|
)
|
|
|
|
|
2016-02-20 23:10:05 +01:00
|
|
|
// RenderRaw renders Markdown to HTML without handling special links.
|
2017-02-14 02:13:59 +01:00
|
|
|
func RenderRaw(body []byte, urlPrefix string, wikiMarkdown bool) []byte {
|
2016-02-20 23:10:05 +01:00
|
|
|
renderer := &Renderer{
|
2019-10-31 02:06:25 +01:00
|
|
|
Renderer: blackfriday.NewHTMLRenderer(blackfriday.HTMLRendererParameters{
|
|
|
|
Flags: blackfridayHTMLFlags,
|
|
|
|
}),
|
2017-09-21 07:20:14 +02:00
|
|
|
URLPrefix: urlPrefix,
|
|
|
|
IsWiki: wikiMarkdown,
|
2014-04-10 20:20:58 +02:00
|
|
|
}
|
|
|
|
|
2018-02-27 08:09:18 +01:00
|
|
|
exts := blackfridayExtensions
|
2015-09-01 14:32:02 +02:00
|
|
|
if setting.Markdown.EnableHardLineBreak {
|
2019-10-31 02:06:25 +01:00
|
|
|
exts |= blackfriday.HardLineBreak
|
2015-09-01 14:32:02 +02:00
|
|
|
}
|
|
|
|
|
2019-11-13 03:27:11 +01:00
|
|
|
// Need to normalize EOL to UNIX LF to have consistent results in rendering
|
|
|
|
body = blackfriday.Run(util.NormalizeEOL(body), blackfriday.WithRenderer(renderer), blackfriday.WithExtensions(exts))
|
2019-07-18 22:23:27 +02:00
|
|
|
return markup.SanitizeBytes(body)
|
2014-05-05 19:08:01 +02:00
|
|
|
}
|
|
|
|
|
2017-04-21 09:01:08 +02:00
|
|
|
var (
|
|
|
|
// MarkupName describes markup's name
|
|
|
|
MarkupName = "markdown"
|
|
|
|
)
|
|
|
|
|
|
|
|
func init() {
|
|
|
|
markup.RegisterParser(Parser{})
|
|
|
|
}
|
|
|
|
|
|
|
|
// Parser implements markup.Parser
|
|
|
|
type Parser struct {
|
|
|
|
}
|
|
|
|
|
|
|
|
// Name implements markup.Parser
|
|
|
|
func (Parser) Name() string {
|
|
|
|
return MarkupName
|
|
|
|
}
|
|
|
|
|
|
|
|
// Extensions implements markup.Parser
|
|
|
|
func (Parser) Extensions() []string {
|
|
|
|
return setting.Markdown.FileExtensions
|
|
|
|
}
|
|
|
|
|
|
|
|
// Render implements markup.Parser
|
|
|
|
func (Parser) Render(rawBytes []byte, urlPrefix string, metas map[string]string, isWiki bool) []byte {
|
2017-09-16 19:17:57 +02:00
|
|
|
return RenderRaw(rawBytes, urlPrefix, isWiki)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Render renders Markdown to HTML with all specific handling stuff.
|
|
|
|
func Render(rawBytes []byte, urlPrefix string, metas map[string]string) []byte {
|
|
|
|
return markup.Render("a.md", rawBytes, urlPrefix, metas)
|
|
|
|
}
|
|
|
|
|
|
|
|
// RenderString renders Markdown to HTML with special links and returns string type.
|
|
|
|
func RenderString(raw, urlPrefix string, metas map[string]string) string {
|
|
|
|
return markup.RenderString("a.md", raw, urlPrefix, metas)
|
|
|
|
}
|
|
|
|
|
|
|
|
// RenderWiki renders markdown wiki page to HTML and return HTML string
|
|
|
|
func RenderWiki(rawBytes []byte, urlPrefix string, metas map[string]string) string {
|
|
|
|
return markup.RenderWiki("a.md", rawBytes, urlPrefix, metas)
|
|
|
|
}
|
|
|
|
|
|
|
|
// IsMarkdownFile reports whether name looks like a Markdown file
|
|
|
|
// based on its extension.
|
|
|
|
func IsMarkdownFile(name string) bool {
|
|
|
|
return markup.IsMarkupFile(name, MarkupName)
|
2017-04-21 09:01:08 +02:00
|
|
|
}
|