diff options
author | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2014-08-28 13:59:12 +0100 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2014-08-28 13:59:12 +0100 |
commit | e2bc2b887fcc7b139eaf74566dfd199bad2791e2 (patch) | |
tree | e515a6911dff20ce31c32e009e4ba61b3399af1e | |
parent | d555043165b2bbfcd1c06b98b2f88b2665f28df9 (diff) | |
download | rspamd-e2bc2b887fcc7b139eaf74566dfd199bad2791e2.tar.gz rspamd-e2bc2b887fcc7b139eaf74566dfd199bad2791e2.zip |
Make more compatible markdown.
-rwxr-xr-x | doc/lua_api.pl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/lua_api.pl b/doc/lua_api.pl index e6e47e621..e4225b40a 100755 --- a/doc/lua_api.pl +++ b/doc/lua_api.pl @@ -39,15 +39,15 @@ EOD my $name = $f->{'name'}; my $id = $f->{'id'}; - print ": [`$name`](#$id)\n"; + print "> [`$name`](#$id)\n\n"; } print "\n###Brief content:\n\n"; - print "**Functions**:\n"; + print "**Functions**:\n\n"; foreach ( @{ $m->{'functions'} } ) { print_func($_); } - print "\n\n**Methods**:\n"; + print "\n\n**Methods**:\n\n"; foreach ( @{ $m->{'methods'} } ) { print_func($_); } |