[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.11

version 1.10, 2017/03/08 15:08:36 version 1.11, 2017/03/08 17:40:55
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.11

CVSweb