aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/mdoc_html.c
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2010-01-01 13:35:30 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2010-01-01 13:35:30 +0000
commit53a939341c20a0b9fe3c63717b0dd0ac26ad73f7 (patch)
treeeb70892bcc2cc1258c15e72ebaaf2f8635695e8a /mdoc_html.c
parent8dfb6885b4ca139f27de89b37393a0570defeee6 (diff)
downloadmandoc-53a939341c20a0b9fe3c63717b0dd0ac26ad73f7.tar.gz
mandoc-53a939341c20a0b9fe3c63717b0dd0ac26ad73f7.tar.zst
mandoc-53a939341c20a0b9fe3c63717b0dd0ac26ad73f7.zip
Documented `Fl' in mdoc.7.
Backed out stipulation that `Fl ""' is ignored: this is not the case in !OpenBSD groffs.
Diffstat (limited to 'mdoc_html.c')
-rw-r--r--mdoc_html.c22
1 files changed, 5 insertions, 17 deletions
diff --git a/mdoc_html.c b/mdoc_html.c
index fef64209..e6d3dace 100644
--- a/mdoc_html.c
+++ b/mdoc_html.c
@@ -1,4 +1,4 @@
-/* $Id: mdoc_html.c,v 1.50 2010/01/01 13:17:58 kristaps Exp $ */
+/* $Id: mdoc_html.c,v 1.51 2010/01/01 13:35:30 kristaps Exp $ */
/*
* Copyright (c) 2008, 2009 Kristaps Dzonsons <kristaps@kth.se>
*
@@ -659,25 +659,13 @@ mdoc_fl_pre(MDOC_ARGS)
{
struct htmlpair tag;
+ PAIR_CLASS_INIT(&tag, "flag");
+ print_otag(h, TAG_SPAN, 1, &tag);
+
/* `Cm' has no leading hyphen. */
- if (MDOC_Cm == n->tok) {
- PAIR_CLASS_INIT(&tag, "flag");
- print_otag(h, TAG_SPAN, 1, &tag);
+ if (MDOC_Cm == n->tok)
return(1);
- }
-
- /* A zero-length child shouldn't get a dash. */
-
- if (n->child) {
- assert(MDOC_TEXT == n->child->type);
- assert(n->child->string);
- if ('\0' == *n->child->string)
- return(0);
- }
-
- PAIR_CLASS_INIT(&tag, "flag");
- print_otag(h, TAG_SPAN, 1, &tag);
print_text(h, "\\-");