Print this page


Split Close
Expand all
Collapse all
          --- old/parse.h
          +++ new/parse.h
↓ open down ↓ 92 lines elided ↑ open up ↑
  93   93          data->cond_stack[data->cond_stack_use] = !data->cond_stack[data->cond_stack_use];
  94   94  }
  95   95  
  96   96  static inline void cond_endif(struct parser_output *data)
  97   97  {
  98   98          ASSERT3S(data->cond_stack_use, >=, 0);
  99   99  
 100  100          data->cond_stack_use--;
 101  101  }
 102  102  
      103 +/*
      104 + * Format "4" (markdown) entry point:
      105 + */
      106 +extern struct str *fmt4_md_to_html(struct str *);
 103  107  #endif
    
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX