[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.9 and 1.10

version 1.9, 2017/03/08 14:30:06 version 1.10, 2017/03/08 15:08:36
Line 1151  md_pre_It(struct roff_node *n)
Line 1151  md_pre_It(struct roff_node *n)
   
         case ROFFT_HEAD:          case ROFFT_HEAD:
                 bln = n->parent->parent;                  bln = n->parent->parent;
                 if (bln->norm->Bl.comp == 0)                  if (bln->norm->Bl.comp == 0 &&
                       bln->norm->Bl.type != LIST_column)
                         outflags |= MD_sp;                          outflags |= MD_sp;
                 outflags |= MD_nl;                  outflags |= MD_nl;
   
Line 1180  md_pre_It(struct roff_node *n)
Line 1181  md_pre_It(struct roff_node *n)
                         printf("%d.\t", ++bln->norm->Bl.count);                          printf("%d.\t", ++bln->norm->Bl.count);
                         escflags &= ~ESC_FON;                          escflags &= ~ESC_FON;
                         break;                          break;
                   case LIST_column:
                           outflags |= MD_br;
                           return 0;
                 default:                  default:
                         return 0;                          return 0;
                 }                  }

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

CVSweb