From 9cbeb3c82c9cf7ab54824e39dcf9cfc4048d6c47 Mon Sep 17 00:00:00 2001 From: Laurent Gil <lgil@ebi.ac.uk> Date: Fri, 3 May 2013 15:55:47 +0000 Subject: [PATCH] Fix the regexp to catch the content of the tag @see --- misc-scripts/sql2html.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/misc-scripts/sql2html.pl b/misc-scripts/sql2html.pl index 6b4e7bee4a..63fe25ae90 100644 --- a/misc-scripts/sql2html.pl +++ b/misc-scripts/sql2html.pl @@ -268,7 +268,7 @@ while (<SQLFILE>) { fill_documentation ($1,$2); } # See other tables - elsif ($doc =~ /^\@(see)\s*(.+)$/i) { + elsif ($doc =~ /^\@(see)\s*(\w+)\s*$/i) { fill_documentation ($1,$2); } # Addtional information block -- GitLab