[BACK]Return to html.h CVS log [TXT][DIR] Up to [cvsweb.bsd.lv] / mandoc

Annotation of mandoc/html.h, Revision 1.72

1.72    ! schwarze    1: /*     $Id: html.h,v 1.71 2015/10/13 22:59:54 schwarze Exp $ */
1.1       kristaps    2: /*
1.66      schwarze    3:  * Copyright (c) 2008-2011, 2014 Kristaps Dzonsons <kristaps@bsd.lv>
1.1       kristaps    4:  *
                      5:  * Permission to use, copy, modify, and distribute this software for any
1.6       kristaps    6:  * purpose with or without fee is hereby granted, provided that the above
                      7:  * copyright notice and this permission notice appear in all copies.
1.1       kristaps    8:  *
1.6       kristaps    9:  * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
                     10:  * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
                     11:  * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
                     12:  * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
                     13:  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
                     14:  * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
                     15:  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
1.1       kristaps   16:  */
                     17:
1.6       kristaps   18: enum   htmltag {
                     19:        TAG_HTML,
                     20:        TAG_HEAD,
                     21:        TAG_BODY,
                     22:        TAG_META,
                     23:        TAG_TITLE,
                     24:        TAG_DIV,
                     25:        TAG_H1,
                     26:        TAG_H2,
                     27:        TAG_SPAN,
                     28:        TAG_LINK,
                     29:        TAG_BR,
                     30:        TAG_A,
                     31:        TAG_TABLE,
1.28      kristaps   32:        TAG_TBODY,
1.6       kristaps   33:        TAG_COL,
                     34:        TAG_TR,
                     35:        TAG_TD,
                     36:        TAG_LI,
                     37:        TAG_UL,
                     38:        TAG_OL,
1.28      kristaps   39:        TAG_DL,
                     40:        TAG_DT,
                     41:        TAG_DD,
1.29      kristaps   42:        TAG_BLOCKQUOTE,
1.31      kristaps   43:        TAG_PRE,
1.32      kristaps   44:        TAG_B,
1.33      kristaps   45:        TAG_I,
1.34      kristaps   46:        TAG_CODE,
1.35      kristaps   47:        TAG_SMALL,
1.56      kristaps   48:        TAG_STYLE,
1.63      kristaps   49:        TAG_MATH,
                     50:        TAG_MROW,
                     51:        TAG_MI,
                     52:        TAG_MO,
                     53:        TAG_MSUP,
                     54:        TAG_MSUB,
                     55:        TAG_MSUBSUP,
                     56:        TAG_MFRAC,
                     57:        TAG_MSQRT,
                     58:        TAG_MFENCED,
                     59:        TAG_MTABLE,
                     60:        TAG_MTR,
                     61:        TAG_MTD,
1.64      kristaps   62:        TAG_MUNDEROVER,
                     63:        TAG_MUNDER,
                     64:        TAG_MOVER,
1.6       kristaps   65:        TAG_MAX
                     66: };
                     67:
                     68: enum   htmlattr {
                     69:        ATTR_NAME,
                     70:        ATTR_REL,
                     71:        ATTR_HREF,
                     72:        ATTR_TYPE,
                     73:        ATTR_MEDIA,
                     74:        ATTR_CLASS,
                     75:        ATTR_STYLE,
1.11      kristaps   76:        ATTR_ID,
1.39      kristaps   77:        ATTR_COLSPAN,
1.55      kristaps   78:        ATTR_CHARSET,
1.63      kristaps   79:        ATTR_OPEN,
                     80:        ATTR_CLOSE,
1.65      kristaps   81:        ATTR_MATHVARIANT,
1.6       kristaps   82:        ATTR_MAX
                     83: };
                     84:
1.21      kristaps   85: enum   htmlfont {
                     86:        HTMLFONT_NONE = 0,
                     87:        HTMLFONT_BOLD,
                     88:        HTMLFONT_ITALIC,
1.49      schwarze   89:        HTMLFONT_BI,
1.21      kristaps   90:        HTMLFONT_MAX
                     91: };
                     92:
1.6       kristaps   93: struct tag {
1.14      kristaps   94:        struct tag       *next;
1.6       kristaps   95:        enum htmltag      tag;
                     96: };
                     97:
1.14      kristaps   98: struct tagq {
                     99:        struct tag       *head;
                    100: };
1.6       kristaps  101:
                    102: struct htmlpair {
                    103:        enum htmlattr     key;
1.13      kristaps  104:        const char       *val;
1.1       kristaps  105: };
                    106:
1.23      kristaps  107: #define        PAIR_INIT(p, t, v) \
                    108:        do { \
                    109:                (p)->key = (t); \
                    110:                (p)->val = (v); \
                    111:        } while (/* CONSTCOND */ 0)
                    112:
                    113: #define        PAIR_ID_INIT(p, v)      PAIR_INIT(p, ATTR_ID, v)
                    114: #define        PAIR_CLASS_INIT(p, v)   PAIR_INIT(p, ATTR_CLASS, v)
                    115: #define        PAIR_HREF_INIT(p, v)    PAIR_INIT(p, ATTR_HREF, v)
                    116: #define        PAIR_STYLE_INIT(p, h)   PAIR_INIT(p, ATTR_STYLE, (h)->buf)
1.12      kristaps  117:
1.6       kristaps  118: struct html {
                    119:        int               flags;
1.40      kristaps  120: #define        HTML_NOSPACE     (1 << 0) /* suppress next space */
1.25      kristaps  121: #define        HTML_IGNDELIM    (1 << 1)
                    122: #define        HTML_KEEP        (1 << 2)
                    123: #define        HTML_PREKEEP     (1 << 3)
1.40      kristaps  124: #define        HTML_NONOSPACE   (1 << 4) /* never add spaces */
                    125: #define        HTML_LITERAL     (1 << 5) /* literal (e.g., <PRE>) context */
1.48      schwarze  126: #define        HTML_SKIPCHAR    (1 << 6) /* skip the next character */
1.54      schwarze  127: #define        HTML_NOSPLIT     (1 << 7) /* do not break line before .An */
                    128: #define        HTML_SPLIT       (1 << 8) /* break line before .An */
1.70      schwarze  129: #define        HTML_NONEWLINE   (1 << 9) /* No line break in nofill mode. */
1.38      kristaps  130:        struct tagq       tags; /* stack of open tags */
                    131:        struct rofftbl    tbl; /* current table */
1.39      kristaps  132:        struct tag       *tblt; /* current open table scope */
1.38      kristaps  133:        char             *base_man; /* base for manpage href */
                    134:        char             *base_includes; /* base for include href */
                    135:        char             *style; /* style-sheet URI */
                    136:        char              buf[BUFSIZ]; /* see bufcat and friends */
1.51      schwarze  137:        size_t            buflen;
1.35      kristaps  138:        struct tag       *metaf; /* current open font scope */
                    139:        enum htmlfont     metal; /* last used font */
                    140:        enum htmlfont     metac; /* current font mode */
1.47      kristaps  141:        int               oflags; /* output options */
                    142: #define        HTML_FRAGMENT    (1 << 0) /* don't emit HTML/HEAD/BODY */
1.6       kristaps  143: };
1.69      schwarze  144:
                    145:
                    146: struct tbl_span;
                    147: struct eqn;
1.12      kristaps  148:
1.22      kristaps  149: void             print_gen_decls(struct html *);
1.6       kristaps  150: void             print_gen_head(struct html *);
1.51      schwarze  151: struct tag      *print_otag(struct html *, enum htmltag,
1.6       kristaps  152:                                int, const struct htmlpair *);
                    153: void             print_tagq(struct html *, const struct tag *);
                    154: void             print_stagq(struct html *, const struct tag *);
                    155: void             print_text(struct html *, const char *);
1.39      kristaps  156: void             print_tblclose(struct html *);
1.37      kristaps  157: void             print_tbl(struct html *, const struct tbl_span *);
1.45      kristaps  158: void             print_eqn(struct html *, const struct eqn *);
1.61      kristaps  159: void             print_paragraph(struct html *);
1.1       kristaps  160:
1.50      joerg     161: #if __GNUC__ - 0 >= 4
                    162: __attribute__((__format__ (__printf__, 2, 3)))
                    163: #endif
1.44      kristaps  164: void             bufcat_fmt(struct html *, const char *, ...);
                    165: void             bufcat(struct html *, const char *);
                    166: void             bufcat_id(struct html *, const char *);
1.51      schwarze  167: void             bufcat_style(struct html *,
1.44      kristaps  168:                        const char *, const char *);
1.51      schwarze  169: void             bufcat_su(struct html *, const char *,
1.12      kristaps  170:                        const struct roffsu *);
1.44      kristaps  171: void             bufinit(struct html *);
1.51      schwarze  172: void             buffmt_man(struct html *,
1.12      kristaps  173:                        const char *, const char *);
1.10      kristaps  174: void             buffmt_includes(struct html *, const char *);
                    175:
1.42      kristaps  176: int              html_strlen(const char *);

CVSweb