breakout_parser 0.0.5 → 0.0.6

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.
@@ -105,6 +105,9 @@ extern size_t in_buf_len;
105
105
  ^_/[^ \t\r\n_] { yylval.ivalue=0; yy_push_state(_ITALIC); return ITALIC_START; }
106
106
  [ \t]+_/[^ \t\r\n_] { yylval.ivalue=1; yy_push_state(_ITALIC); return ITALIC_START; }
107
107
 
108
+ ^@[^\r\n\xff@]+@/[ \t\r\n\xff] { yylval.svalue = yytext; return INLINE_CODE; }
109
+ [ \t]+@[^\r\n\xff@]+@/[ \t\r\n\xff] { yylval.svalue = yytext; return INLINE_CODE; }
110
+
108
111
  ^h[1-5]\.[ \t]+[^ \t\r\n][^\r\n]*/[\r\n\xff] {
109
112
  yylval.svalue = yytext+4;
110
113
  switch(yytext[1]){