diff options
author | Ingo Schwarze <schwarze@openbsd.org> | 2017-03-15 11:29:53 +0000 |
---|---|---|
committer | Ingo Schwarze <schwarze@openbsd.org> | 2017-03-15 11:29:53 +0000 |
commit | 28bf3097cb23e1f811b5273cd04e16d309f04607 (patch) | |
tree | 38ecfdeb14b8bad014fc814155f7a1dd2f311e86 /html.h | |
parent | 7f62257df910dabf75acbc931ba339de0abde743 (diff) | |
download | mandoc-28bf3097cb23e1f811b5273cd04e16d309f04607.tar.gz |
Minimal support for deep linking into man(7) pages.
As the man(7) language does not provide semantic markup,
only .SH, .SS, and .UR become anchors for now.
Diffstat (limited to 'html.h')
-rw-r--r-- | html.h | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -112,6 +112,7 @@ struct html { }; +struct roff_node; struct tbl_span; struct eqn; @@ -127,4 +128,5 @@ void print_eqn(struct html *, const struct eqn *); void print_paragraph(struct html *); void print_endline(struct html *); +char *html_make_id(const struct roff_node *); int html_strlen(const char *); |