diff options
author | Yorick Peterse <yorickpeterse@gmail.com> | 2016-06-21 17:07:17 +0200 |
---|---|---|
committer | Yorick Peterse <yorickpeterse@gmail.com> | 2016-06-21 17:39:01 +0200 |
commit | d9a4ca5975b4fb91b147930d863f0bb4b9619a64 (patch) | |
tree | cadcad43926a1dfe08c71bb644a136127ae50796 /lib/banzai.rb | |
parent | 0468deafbd6fcf008eb672dd42b98390d95e8add (diff) | |
download | gitlab-ce-d9a4ca5975b4fb91b147930d863f0bb4b9619a64.tar.gz |
Move pre_process into render_resultremove-banzai-pre-process
The method Banzai::Renderer.pre_process would always be called,
regardless of whether the Markdown to render was already cached or not.
In cache the document _was_ cached the output of the pre-processing
pipeline was ignored resulting in it doing nothing but wasting CPU
cycles.
This commit moves Banzai::Renderer.pre_process into
Banzai::Renderer.render_result so that it's _only_ used when needed.
Diffstat (limited to 'lib/banzai.rb')
-rw-r--r-- | lib/banzai.rb | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/lib/banzai.rb b/lib/banzai.rb index b467413a7dd..093382261ae 100644 --- a/lib/banzai.rb +++ b/lib/banzai.rb @@ -7,10 +7,6 @@ module Banzai Renderer.render_result(text, context) end - def self.pre_process(text, context) - Renderer.pre_process(text, context) - end - def self.post_process(html, context) Renderer.post_process(html, context) end |