about summary refs log tree commit homepage
path: root/Documentation
diff options
context:
space:
mode:
authorEric Wong <e@80x24.org>2014-12-22 01:37:58 +0000
committerEric Wong <e@80x24.org>2014-12-22 01:41:41 +0000
commit7f35ce53a0183aafc450faded89954f784bf835a (patch)
treeeb41b4ced4b2e2c0fff37129f78f9bde9cccdafc /Documentation
parentf0ba219d00c4634a055ec364092284630cdbe9e1 (diff)
downloadpublic-inbox-7f35ce53a0183aafc450faded89954f784bf835a.tar.gz
Occasionally we'll use these for links.
Diffstat (limited to 'Documentation')
-rwxr-xr-xDocumentation/txt2pre2
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/txt2pre b/Documentation/txt2pre
index f84f9c06..0384a1d0 100755
--- a/Documentation/txt2pre
+++ b/Documentation/txt2pre
@@ -17,7 +17,7 @@ my ($title) = ($str =~ /\A([^\n]+)/);
 # temporarily swap &gt; for escape so our s!! to add href works.
 # there's probably a way to do this with only a single s!! ...
 $str =~ s!&gt;!\e!g;
-$str =~ s!\b(https?://[\w+\+\&\?\.\%\;/-]+)!<a\nhref="$1"\n>$1</a>!g;
+$str =~ s!\b((ftp|https?)://[\w+\+\&\?\.\%\;/#-]+)!<a\nhref="$1"\n>$1</a>!g;
 $str =~ s!\e!&gt;!g; # swap escapes back to &gt;
 
 print '<html><head>',