Lines Matching defs:meta
38 #define MDOC_ARGS const struct roff_meta *meta, \
311 print_mdoc_head(const struct roff_meta *meta, struct html *h)
317 if (meta->arch != NULL && meta->msec != NULL)
318 mandoc_asprintf(&cp, "%s(%s) (%s)", meta->title,
319 meta->msec, meta->arch);
320 else if (meta->msec != NULL)
321 mandoc_asprintf(&cp, "%s(%s)", meta->title, meta->msec);
322 else if (meta->arch != NULL)
323 mandoc_asprintf(&cp, "%s (%s)", meta->title, meta->arch);
325 cp = mandoc_strdup(meta->title);
337 print_mdoc_node(meta, n, h);
403 * the "meta" table state. This will be reopened on the
420 child = (*mdoc_html_acts[n->tok - MDOC_Dd].pre)(meta,
431 print_mdoc_nodelist(meta, n->child, h);
444 (*mdoc_html_acts[n->tok - MDOC_Dd].post)(meta, n, h);
452 mdoc_root_post(const struct roff_meta *meta, struct html *h)
463 print_text(h, meta->date);
467 print_text(h, meta->os);
472 mdoc_root_pre(const struct roff_meta *meta, struct html *h)
477 if (NULL == meta->arch)
478 volume = mandoc_strdup(meta->vol);
481 meta->vol, meta->arch);
483 if (NULL == meta->msec)
484 title = mandoc_strdup(meta->title);
487 meta->title, meta->msec);
551 print_mdoc_nodelist(meta, sn->head->child, h);
567 print_mdoc_nodelist(meta,
1234 mdoc_tg_pre(meta, n, h);