[BACK]Return to html.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / mandoc

Diff for /src/usr.bin/mandoc/html.c between version 1.7 and 1.8

version 1.7, 2010/04/07 23:15:05 version 1.8, 2010/05/14 01:54:37
Line 50 
Line 50 
         {"h1",          0}, /* TAG_H1 */          {"h1",          0}, /* TAG_H1 */
         {"h2",          0}, /* TAG_H2 */          {"h2",          0}, /* TAG_H2 */
         {"span",        0}, /* TAG_SPAN */          {"span",        0}, /* TAG_SPAN */
         {"link",        HTML_CLRLINE | HTML_NOSTACK}, /* TAG_LINK */          {"link",        HTML_CLRLINE | HTML_NOSTACK | HTML_AUTOCLOSE}, /* TAG_LINK */
         {"br",          HTML_CLRLINE | HTML_NOSTACK | HTML_AUTOCLOSE}, /* TAG_BR */          {"br",          HTML_CLRLINE | HTML_NOSTACK | HTML_AUTOCLOSE}, /* TAG_BR */
         {"a",           0}, /* TAG_A */          {"a",           0}, /* TAG_A */
         {"table",       HTML_CLRLINE}, /* TAG_TABLE */          {"table",       HTML_CLRLINE}, /* TAG_TABLE */
Line 517 
Line 517 
         if ( ! print_encode(h, p, 0))          if ( ! print_encode(h, p, 0))
                 h->flags &= ~HTML_NOSPACE;                  h->flags &= ~HTML_NOSPACE;
   
           /*
            * Note that we don't process the pipe: the parser sees it as
            * punctuation, but we don't in terms of typography.
            */
         if (*p && 0 == *(p + 1))          if (*p && 0 == *(p + 1))
                 switch (*p) {                  switch (*p) {
                 case('('):                  case('('):

Legend:
Removed from v.1.7  
changed lines
  Added in v.1.8