diff options
author | Ben Niemann <pink@odahoda.de> | 2022-01-16 16:42:06 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-16 23:42:06 +0800 |
commit | 2871e58a016486782abb5a02521a71a167e0ac3d (patch) | |
tree | 12fd9cc0cff714192b24acbda58062d3f08d1b15 /modules/markup | |
parent | 52bfb7f012a130e7205f761d95c50a41d01e8757 (diff) | |
download | gitea-2871e58a016486782abb5a02521a71a167e0ac3d.tar.gz gitea-2871e58a016486782abb5a02521a71a167e0ac3d.zip |
Remove unneeded debug messages to stdout. (#18298)
Co-authored-by: wxiaoguang <wxiaoguang@gmail.com>
Diffstat (limited to 'modules/markup')
-rw-r--r-- | modules/markup/common/footnote.go | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/modules/markup/common/footnote.go b/modules/markup/common/footnote.go index bc53d56f2b..92a54101f0 100644 --- a/modules/markup/common/footnote.go +++ b/modules/markup/common/footnote.go @@ -10,7 +10,6 @@ package common import ( "bytes" "fmt" - "os" "strconv" "unicode" @@ -415,7 +414,6 @@ func (r *FootnoteHTMLRenderer) RegisterFuncs(reg renderer.NodeRendererFuncRegist func (r *FootnoteHTMLRenderer) renderFootnoteLink(w util.BufWriter, source []byte, node ast.Node, entering bool) (ast.WalkStatus, error) { if entering { n := node.(*FootnoteLink) - n.Dump(source, 0) is := strconv.Itoa(n.Index) _, _ = w.WriteString(`<sup id="fnref:`) _, _ = w.Write(n.Name) @@ -431,7 +429,6 @@ func (r *FootnoteHTMLRenderer) renderFootnoteLink(w util.BufWriter, source []byt func (r *FootnoteHTMLRenderer) renderFootnoteBackLink(w util.BufWriter, source []byte, node ast.Node, entering bool) (ast.WalkStatus, error) { if entering { n := node.(*FootnoteBackLink) - fmt.Fprintf(os.Stdout, "source:\n%s\n", string(n.Text(source))) _, _ = w.WriteString(` <a href="#fnref:`) _, _ = w.Write(n.Name) _, _ = w.WriteString(`" class="footnote-backref" role="doc-backlink">`) @@ -444,7 +441,6 @@ func (r *FootnoteHTMLRenderer) renderFootnoteBackLink(w util.BufWriter, source [ func (r *FootnoteHTMLRenderer) renderFootnote(w util.BufWriter, source []byte, node ast.Node, entering bool) (ast.WalkStatus, error) { n := node.(*Footnote) if entering { - fmt.Fprintf(os.Stdout, "source:\n%s\n", string(n.Text(source))) _, _ = w.WriteString(`<li id="fn:`) _, _ = w.Write(n.Name) _, _ = w.WriteString(`" role="doc-endnote"`) |