fix samples bug [SCI-1241]

This commit is contained in:
zmagod 2017-05-09 11:25:00 +02:00
parent e98d6a4da6
commit df13478186

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,