=================================================================== RCS file: /cvs/mandoc/html.c,v retrieving revision 1.209 retrieving revision 1.210 diff -u -p -r1.209 -r1.210 --- mandoc/html.c 2017/03/14 01:35:15 1.209 +++ mandoc/html.c 2017/03/15 11:29:53 1.210 @@ -1,4 +1,4 @@ -/* $Id: html.c,v 1.209 2017/03/14 01:35:15 schwarze Exp $ */ +/* $Id: html.c,v 1.210 2017/03/15 11:29:53 schwarze Exp $ */ /* * Copyright (c) 2008-2011, 2014 Kristaps Dzonsons * Copyright (c) 2011-2015, 2017 Ingo Schwarze @@ -28,8 +28,9 @@ #include #include -#include "mandoc.h" #include "mandoc_aux.h" +#include "mandoc.h" +#include "roff.h" #include "out.h" #include "html.h" #include "manconf.h" @@ -234,6 +235,28 @@ print_metaf(struct html *h, enum mandoc_esc deco) default: break; } +} + +char * +html_make_id(const struct roff_node *n) +{ + const struct roff_node *nch; + char *buf, *cp; + + for (nch = n->child; nch != NULL; nch = nch->next) + if (nch->type != ROFFT_TEXT) + return NULL; + + buf = NULL; + deroff(&buf, n); + + /* http://www.w3.org/TR/html5/dom.html#the-id-attribute */ + + for (cp = buf; *cp != '\0'; cp++) + if (*cp == ' ') + *cp = '_'; + + return buf; } int