diff options
author | Andrew Lewis <nerf@judo.za.org> | 2023-11-06 14:15:01 +0200 |
---|---|---|
committer | Andrew Lewis <nerf@judo.za.org> | 2023-11-06 14:15:42 +0200 |
commit | ed77d35c7929cb0e84abf7ccde8efa05775b746d (patch) | |
tree | 62f0109cc7df5a4073ddca84caa10aa48e740f04 /doc/doxydown | |
parent | f5d5be99421097d18824c69148b7dacb608e7b84 (diff) | |
download | rspamd-ed77d35c7929cb0e84abf7ccde8efa05775b746d.tar.gz rspamd-ed77d35c7929cb0e84abf7ccde8efa05775b746d.zip |
[Minor] doxydown: fix elements containing few spaces
Diffstat (limited to 'doc/doxydown')
-rwxr-xr-x | doc/doxydown/doxydown.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/doxydown/doxydown.pl b/doc/doxydown/doxydown.pl index 9c2f74131..5002f589a 100755 --- a/doc/doxydown/doxydown.pl +++ b/doc/doxydown/doxydown.pl @@ -21,7 +21,7 @@ my %languages = ( lua => { start => qr/^\s*\--(?:\[\[\[+|-+)\s*$/, end => qr/^\s*--(:?\]\]+|-+)\s*$/, - filter => qr/^(?:\s*--!?\s?)?(\s*\S.+)\s*$/, + filter => qr/^(?:\s*--!?\s?)?(\s*\S?.+)\s*$/, }, sql => { start => qr/^\s*\--(?:\[\[+|-+)\s*$/, |