Add NeedPostProcess for Parser interface to improve performance of csv render (#15153)

This commit is contained in:
2021-04-13 15:06:31 +08:00
committed by GitHub
parent bf3e584de2
commit 66f0fd0959
8 changed files with 38 additions and 14 deletions

View File

@ -30,6 +30,9 @@ func (Parser) Name() string {
return "orgmode"
}
// NeedPostProcess implements markup.Parser
func (Parser) NeedPostProcess() bool { return true }
// Extensions implements markup.Parser
func (Parser) Extensions() []string {
return []string{".org"}