# HG changeset patch # User Luke Mewburn # Date 1582173980 -39600 # Node ID 0a80278df21f59476cc284d485f70bf1869951be # Parent ad50ef2eddeabb15cf33ab49727c4fa232a0aad2 org_to_fd.pl: convert empty comments to blank links diff -r ad50ef2eddea -r 0a80278df21f contrib/tools/org_to_fd.pl --- a/contrib/tools/org_to_fd.pl Tue Feb 25 09:45:15 2020 +1100 +++ b/contrib/tools/org_to_fd.pl Thu Feb 20 15:46:20 2020 +1100 @@ -99,6 +99,10 @@ print_comment($1); next; } + if ($name =~ m/#/) { + print("\n"); + next; + } if ($name =~ m/\s/) { die(sprintf("name '%s' contains space", $name));