From: Shri Borde Date: 2009-05-19T15:30:35+09:00 Subject: SM::ToHtml does not convert urls to hyperlinks --_000_710DF26F214D2B4BB94287123FFE980A2E1C3C308BNAEXMSGC104re_ Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable I am trying to use my own output formatter with SimpleMarkup. Things seems = to work, except for hyperlinks not working as expected. I tried to use SM::= ToHtml to simplify things, and even if does not deal with hyperlinks. Here = is the code snippet I am using. require 'rdoc/markup/simple_markup' require 'rdoc/markup/simple_markup/to_html' s =3D "This is *bold*. These are urls - www.foo.com , h= ttp://www.foo.com , foo[http://www.foo.com]" p =3D SM::SimpleMarkup.new puts p.convert(s, SM::ToHtml.new) The output of this is as shown below. The word "bold" was surrounded by the= tag, but the urls were not surrounded with tags.

This is bold. These are urls - www.foo.com , htt= p://www.foo.com , foo[http://www.foo.com]

Is there a way to make this happen? Regards, Shri --_000_710DF26F214D2B4BB94287123FFE980A2E1C3C308BNAEXMSGC104re_--