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

Diff for /mandoc/mdoc_markdown.c between version 1.10 and 1.12

version 1.10, 2017/03/08 15:08:36 version 1.12, 2017/03/08 17:51:58
Line 535  md_word(const char *s)
Line 535  md_word(const char *s)
                         bs = escflags & ESC_HYP && !code_blocks;                          bs = escflags & ESC_HYP && !code_blocks;
                         break;                          break;
                 case ')':                  case ')':
                         bs = escflags & ESC_PAR && !code_blocks;                          bs = escflags & (ESC_NUM | ESC_PAR) && !code_blocks;
                         break;                          break;
                 case '*':                  case '*':
                 case '[':                  case '[':
Line 1178  md_pre_It(struct roff_node *n)
Line 1178  md_pre_It(struct roff_node *n)
                         break;                          break;
                 case LIST_enum:                  case LIST_enum:
                         md_preword();                          md_preword();
                         printf("%d.\t", ++bln->norm->Bl.count);                          if (bln->norm->Bl.count < 99)
                                   bln->norm->Bl.count++;
                           printf("%d.\t", bln->norm->Bl.count);
                         escflags &= ~ESC_FON;                          escflags &= ~ESC_FON;
                         break;                          break;
                 case LIST_column:                  case LIST_column:

Legend:
Removed from v.1.10  
changed lines
  Added in v.1.12

CVSweb