我们使用 redcloth 来解析用户在我们的应用程序中给出的文本。但是,解析器中有一个错误,如下所示
>> RedCloth.new('http://www.example.com/?_test_param_=test', [:no_span_caps]).to_html
=> <p>http://www.example.com/?<em>test_param</em>=test</p>"
问题是我如何让 RedCloth 解析 url,以便结果是<p>http://www.example.com/?_test_param_=test</p>
(没有 em 标签),因为它是 url 的一部分?