Моя цель - превратить уценку в текст. Я выполняю это с помощью анализа разметки в HTML с помощью Redcarpet, а затем с помощью #strip_tags. Моя проблема со ссылками, этот метод сохраняет только текст ссылки, а не саму ссылку.
Пример: мне нужно сохранить href url после использования # strip_tags
# current
<a href="http://www.google.com">google</a> => google
# desired
<a href="http://www.google.com">google</a> => http://www.google.com google
Я думаю, что лучшим способом было бы использовать регулярные выражения, кто-нибудь может помочь реализовать это?
Моя цель:
def contents_md
# instantiates Redcarpet
@markdown ||= begin
options = [autolink: true, fenced_code_blocks: true, no_intra_emphasis: true, hard_wrap: true, filter_html: true, gh_blockcode: true]
renderer = Redcarpet::Render::HTML.new(render_options = {})
Redcarpet::Markdown.new(renderer, *options)
end
# I need to run contents through a regex before passing to renderer that will turn something like this:
# [text1](https://www.stackoverflow.com) and [text2](https://www.google.com)
# into:
# text1 https://www.stackoverflow.com and text2 https://www.google.com
# then ill pass the result here, which will preserve my links that would be held in <a></a> instead of losing them
@markdown.render(contents)
end
# this will then be ran like:
<%= strip_tags(value.contents_md) %>