mirror of
https://github.com/wahyd4/gitlabhq.git
synced 2026-08-24 20:16:08 +10:00
14 lines
231 B
Ruby
14 lines
231 B
Ruby
require 'gitlab/markdown'
|
|
|
|
module Gitlab
|
|
module Markdown
|
|
class ReferenceExtractionPipeline < Pipeline
|
|
def self.filters
|
|
[
|
|
Gitlab::Markdown::ReferenceGathererFilter
|
|
]
|
|
end
|
|
end
|
|
end
|
|
end
|