diff options
author | Mike Greiling <mike@pixelcog.com> | 2018-03-19 23:01:17 -0500 |
---|---|---|
committer | Mike Greiling <mike@pixelcog.com> | 2018-03-19 23:07:46 -0500 |
commit | c1708514f594040deedb87216945a29c3bc28bb9 (patch) | |
tree | 962aebefcc08a99515b33364592c0e566cfd785e /lib/banzai | |
parent | 956bd6a45861dccc40591e02cf36e895a6fc4f5b (diff) | |
download | gitlab-ce-c1708514f594040deedb87216945a29c3bc28bb9.tar.gz |
move render_gfm into behaviors directory
Diffstat (limited to 'lib/banzai')
-rw-r--r-- | lib/banzai/pipeline/gfm_pipeline.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/banzai/pipeline/gfm_pipeline.rb b/lib/banzai/pipeline/gfm_pipeline.rb index 4001b8a85e3..8b2f05fffec 100644 --- a/lib/banzai/pipeline/gfm_pipeline.rb +++ b/lib/banzai/pipeline/gfm_pipeline.rb @@ -2,10 +2,10 @@ module Banzai module Pipeline class GfmPipeline < BasePipeline # These filters convert GitLab Flavored Markdown (GFM) to HTML. - # The handlers defined in app/assets/javascripts/copy_as_gfm.js + # The handlers defined in app/assets/javascripts/behaviors/markdown/copy_as_gfm.js # consequently convert that same HTML to GFM to be copied to the clipboard. # Every filter that generates HTML from GFM should have a handler in - # app/assets/javascripts/copy_as_gfm.js, in reverse order. + # app/assets/javascripts/behaviors/markdown/copy_as_gfm.js, in reverse order. # The GFM-to-HTML-to-GFM cycle is tested in spec/features/copy_as_gfm_spec.rb. def self.filters @filters ||= FilterArray[ |