diff options
author | Lunny Xiao <xiaolunwen@gmail.com> | 2021-04-13 15:06:31 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-13 15:06:31 +0800 |
commit | 66f0fd0959b293c01a7685e9d7858db1da4416da (patch) | |
tree | fbe5b537bbe9361ab3e7067c6d583230bf45db77 /modules/markup/markdown | |
parent | bf3e584de25b43ddc8fd12d1388fbd9b984f883b (diff) | |
download | gitea-66f0fd0959b293c01a7685e9d7858db1da4416da.tar.gz gitea-66f0fd0959b293c01a7685e9d7858db1da4416da.zip |
Add NeedPostProcess for Parser interface to improve performance of csv render (#15153)
Diffstat (limited to 'modules/markup/markdown')
-rw-r--r-- | modules/markup/markdown/markdown.go | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/modules/markup/markdown/markdown.go b/modules/markup/markdown/markdown.go index 93235d77e5..5bb0fbd652 100644 --- a/modules/markup/markdown/markdown.go +++ b/modules/markup/markdown/markdown.go @@ -228,6 +228,9 @@ func (Parser) Name() string { return MarkupName } +// NeedPostProcess implements markup.Parser +func (Parser) NeedPostProcess() bool { return true } + // Extensions implements markup.Parser func (Parser) Extensions() []string { return setting.Markdown.FileExtensions |