aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/mdoc_html.c
diff options
context:
space:
mode:
authorIngo Schwarze <schwarze@openbsd.org>2017-02-05 19:29:19 +0000
committerIngo Schwarze <schwarze@openbsd.org>2017-02-05 19:29:19 +0000
commit1d9fac28586a81fe21fe0b8d00ffed21e2277ca6 (patch)
tree7af9137d9271e14e4158333b30210ad9732a6d33 /mdoc_html.c
parentc6e62f9888a3bce6f8b3f7a4ee028dbdfc01ab1f (diff)
downloadmandoc-1d9fac28586a81fe21fe0b8d00ffed21e2277ca6.tar.gz
mandoc-1d9fac28586a81fe21fe0b8d00ffed21e2277ca6.tar.zst
mandoc-1d9fac28586a81fe21fe0b8d00ffed21e2277ca6.zip
for .Rs, use <cite>
Diffstat (limited to 'mdoc_html.c')
-rw-r--r--mdoc_html.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/mdoc_html.c b/mdoc_html.c
index 9dc82953..9d6ca1af 100644
--- a/mdoc_html.c
+++ b/mdoc_html.c
@@ -1,4 +1,4 @@
-/* $Id: mdoc_html.c,v 1.265 2017/02/05 18:15:39 schwarze Exp $ */
+/* $Id: mdoc_html.c,v 1.266 2017/02/05 19:29:19 schwarze Exp $ */
/*
* Copyright (c) 2008-2011, 2014 Kristaps Dzonsons <kristaps@bsd.lv>
* Copyright (c) 2014, 2015, 2016, 2017 Ingo Schwarze <schwarze@openbsd.org>
@@ -1512,7 +1512,7 @@ mdoc_rs_pre(MDOC_ARGS)
if (n->prev && SEC_SEE_ALSO == n->sec)
print_paragraph(h);
- print_otag(h, TAG_SPAN, "c", "Rs");
+ print_otag(h, TAG_CITE, "c", "Rs");
return 1;
}