summaryrefslogtreecommitdiffstats
path: root/html.h
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2014-09-27 10:56:18 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2014-09-27 10:56:18 +0000
commit1eb4a079a00426a06a0b3aa029e8dd5606190897 (patch)
treea38877683ef4ca999c3114329bfac080a8028957 /html.h
parentb4b566f2e27b30860a34ca722167ff748d29060d (diff)
downloadmandoc-1eb4a079a00426a06a0b3aa029e8dd5606190897.tar.gz
Remove <p> in favour of <div class="spacer">.
This is good because <p> is brittle: it can't appear within other block macros. This fixes a regression of the original HTML5 patch as noted by schwarze@ on the tech@ list, 14/8/2014.
Diffstat (limited to 'html.h')
-rw-r--r--html.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/html.h b/html.h
index 04b924a6..8c90d7b9 100644
--- a/html.h
+++ b/html.h
@@ -44,7 +44,6 @@ enum htmltag {
TAG_DT,
TAG_DD,
TAG_BLOCKQUOTE,
- TAG_P,
TAG_PRE,
TAG_B,
TAG_I,
@@ -144,6 +143,7 @@ void print_text(struct html *, const char *);
void print_tblclose(struct html *);
void print_tbl(struct html *, const struct tbl_span *);
void print_eqn(struct html *, const struct eqn *);
+void print_paragraph(struct html *);
#if __GNUC__ - 0 >= 4
__attribute__((__format__ (__printf__, 2, 3)))