We use redcloth to parse text given by users in our application. However, there was a bug in the parser as shown below
>> 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>"
And the question is how do i make RedCloth parse the url so that the result would be <p>http://www.example.com/?_test_param_=test</p>
(no em tags) since it is part of the url?