diff options
author | Werner Koch <[email protected]> | 2014-08-18 09:39:57 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2014-08-18 09:40:15 +0000 |
commit | 7e51ef0f77962f5fb215da53817caf28899ca190 (patch) | |
tree | 7ea28fa5e123e0284b0932cd9a30e32e68c5ab5b /doc/yat2m.c | |
parent | estream: Change license from GPL to LPGL. (diff) | |
download | gnupg-7e51ef0f77962f5fb215da53817caf28899ca190.tar.gz gnupg-7e51ef0f77962f5fb215da53817caf28899ca190.zip |
yat2m: Support the $* command for man page rendering.
Diffstat (limited to 'doc/yat2m.c')
-rw-r--r-- | doc/yat2m.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/doc/yat2m.c b/doc/yat2m.c index 2ac43902a..cd3bb90ac 100644 --- a/doc/yat2m.c +++ b/doc/yat2m.c @@ -87,6 +87,10 @@ detects the number of white spaces in front of an @item and remove this number of spaces from all following lines until a new @item is found or there are less spaces than for the last @item. + + Note that @* does only work correctly if used at the end of an + input line. + */ #include <stdio.h> @@ -664,6 +668,8 @@ proc_texi_cmd (FILE *fp, const char *command, const char *rest, size_t len, { "table", 3 }, { "itemize", 3 }, { "bullet", 0, "* " }, + { "*", 0, "\n.br"}, + { "/", 0 }, { "end", 4 }, { "quotation",1, ".RS\n\\fB" }, { NULL } |