breakout_parser 0.0.12 → 0.0.13

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -124,8 +124,13 @@ extern size_t in_buf_len;
124
124
  return H1;
125
125
  }
126
126
 
127
- ^[ \t]*\*[ ]+ { return ULI; }
128
- ^[ \t]*#[ ]+ { return OLI; }
127
+ ^[ \t]*\*\*\*[ ]+ { yylval.ivalue=3; return ULI; }
128
+ ^[ \t]*\*\*[ ]+ { yylval.ivalue=2; return ULI; }
129
+ ^[ \t]*\*[ ]+ { yylval.ivalue=1; return ULI; }
130
+
131
+ ^[ \t]*###[ ]+ { yylval.ivalue=3; return OLI; }
132
+ ^[ \t]*##[ ]+ { yylval.ivalue=2; return OLI; }
133
+ ^[ \t]*#[ ]+ { yylval.ivalue=1; return OLI; }
129
134
 
130
135
 
131
136
  <INITIAL,_LINKS_ONLY,_BOLD,_ITALIC>{