Merge pull request #599 from ZmagoD/zd_SCI_1241

fix samples bug [SCI-1241]
This commit is contained in:
Zmago Devetak 2017-05-09 15:55:43 +02:00 committed by GitHub
commit cd503580b2

View file

@ -16,15 +16,13 @@ module InputSanitizeHelper
end
def custom_auto_link(text, options = {})
simple_format = options.fetch(:simple_format) { true }
team = options.fetch(:team) { nil },
simple_f = options.fetch(:simple_format) { true }
team = options.fetch(:team) { nil }
wrapper_tag = options.fetch(:wrapper_tag) { {} }
tags = options.fetch(:tags) { [] }
text = if simple_format
simple_format(sanitize_input(text), {}, wrapper_tag)
else
sanitize_input(text, tags)
end
fromat_opt = wrapper_tag.merge(sanitize: false)
text = sanitize_input(text, tags)
text = simple_format(sanitize_input(text), {}, fromat_opt) if simple_f
auto_link(
smart_annotation_parser(text, team),
link: :urls,