diff options
author | Ben Kibbey <[email protected]> | 2023-11-07 03:15:07 +0000 |
---|---|---|
committer | Ben Kibbey <[email protected]> | 2023-11-07 03:15:07 +0000 |
commit | db81ea1219e2baad0fadbc665465d3d03cbb4de2 (patch) | |
tree | 6180788e079221933d3ac9e83b1480ccc8e623c0 | |
parent | yat2m: No en-dash and em-dash for @item line. (diff) | |
download | libgpg-error-db81ea1219e2baad0fadbc665465d3d03cbb4de2.tar.gz libgpg-error-db81ea1219e2baad0fadbc665465d3d03cbb4de2.zip |
yat2m: Parse @dots{} to show ellipsis in HTML mode.
* doc/yat2m.c (proc_texi_cmd): Add "dots" to comamnd table and output
"..." in manpages and ellipsis in HTML mode.
Signed-off-by: Ben Kibbey <[email protected]>
-rw-r--r-- | doc/yat2m.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/doc/yat2m.c b/doc/yat2m.c index e21dcba..9530319 100644 --- a/doc/yat2m.c +++ b/doc/yat2m.c @@ -1318,6 +1318,7 @@ proc_texi_cmd (FILE *fp, const char *command, const char *rest, size_t len, { "end", 4 }, { "quotation",1, ".RS\n\\fB" }, { "value", 8 }, + { "dots", 0, "...", NULL, "…" }, { NULL } }; size_t n; |