#line 1 "ext/dtext/dtext.rl"
// situationally print newlines to make the generated html
// easier to read
#define PRETTY_PRINT 0
#include
#include
#include
#include
#include
typedef struct StateMachine {
size_t top;
int cs;
int act;
const char * p;
const char * pe;
const char * eof;
const char * ts;
const char * te;
const char * a1;
const char * a2;
const char * b1;
const char * b2;
bool f_inline;
bool f_strip;
bool list_mode;
GString * output;
GArray * stack;
GQueue * dstack;
int list_nest;
int d;
int b;
} StateMachine;
static const size_t MAX_STACK_DEPTH = 512;
static const int BLOCK_P = 1;
static const int INLINE_SPOILER = 2;
static const int BLOCK_SPOILER = 3;
static const int BLOCK_QUOTE = 4;
static const int BLOCK_EXPAND = 5;
static const int BLOCK_NODTEXT = 6;
static const int BLOCK_CODE = 7;
static const int BLOCK_TD = 8;
static const int INLINE_NODTEXT = 9;
static const int INLINE_B = 10;
static const int INLINE_I = 11;
static const int INLINE_U = 12;
static const int INLINE_S = 13;
static const int INLINE_TN = 14;
static const int BLOCK_TN = 15;
static const int BLOCK_TABLE = 16;
static const int BLOCK_THEAD = 17;
static const int BLOCK_TBODY = 18;
static const int BLOCK_TR = 19;
static const int BLOCK_UL = 20;
static const int BLOCK_LI = 21;
static const int BLOCK_TH = 22;
#line 1001 "ext/dtext/dtext.rl"
#line 69 "ext/dtext/dtext.c"
static const int dtext_start = 244;
static const int dtext_first_final = 244;
static const int dtext_error = -1;
static const int dtext_en_inline = 260;
static const int dtext_en_code = 296;
static const int dtext_en_nodtext = 298;
static const int dtext_en_table = 300;
static const int dtext_en_list = 302;
static const int dtext_en_main = 244;
#line 1004 "ext/dtext/dtext.rl"
static inline void underscore_string(char * str, size_t len) {
for (size_t i=0; if_strip)) {
sm->output = g_string_append(sm->output, s);
}
}
static inline void append_newline(StateMachine * sm) {
#if (PRETTY_PRINT)
g_string_append_c(sm->output, '\n');
#endif
}
static inline void append_c(StateMachine * sm, char s) {
sm->output = g_string_append_c(sm->output, s);
}
static inline void append_c_html_escaped(StateMachine * sm, char s) {
switch (s) {
case '<':
sm->output = g_string_append(sm->output, "<");
break;
case '>':
sm->output = g_string_append(sm->output, ">");
break;
case '&':
sm->output = g_string_append(sm->output, "&");
break;
default:
sm->output = g_string_append_c(sm->output, s);
break;
}
}
static inline void append_segment(StateMachine * sm, bool is_markup, const char * a, const char * b) {
if (!(is_markup && sm->f_strip)) {
sm->output = g_string_append_len(sm->output, a, b - a + 1);
}
}
static inline void append_segment_uri_escaped(StateMachine * sm, const char * a, const char * b) {
if (sm->f_strip) {
return;
}
GString * segment_string = g_string_new_len(a, b - a + 1);
char * segment = g_uri_escape_string(segment_string->str, G_URI_RESERVED_CHARS_ALLOWED_IN_PATH "#%?", TRUE);
sm->output = g_string_append(sm->output, segment);
g_string_free(segment_string, TRUE);
g_free(segment);
}
static inline void append_segment_html_escaped(StateMachine * sm, const char * a, const char * b) {
gchar * segment = g_markup_escape_text(a, b - a + 1);
sm->output = g_string_append(sm->output, segment);
g_free(segment);
}
static inline void append_block(StateMachine * sm, const char * s) {
if (sm->f_inline) {
sm->output = g_string_append_c(sm->output, ' ');
} else if (sm->f_strip) {
// do nothing
} else {
sm->output = g_string_append(sm->output, s);
}
}
static inline void append_closing_p(StateMachine * sm) {
size_t i = sm->output->len;
if (i > 4 && !strncmp(sm->output->str + i - 4, "
", 4)) {
sm->output = g_string_truncate(sm->output, sm->output->len - 4);
}
append_block(sm, "
");
}
static inline void dstack_push(StateMachine * sm, const int * element) {
g_queue_push_tail(sm->dstack, (gpointer)element);
}
static inline int * dstack_pop(StateMachine * sm) {
return g_queue_pop_tail(sm->dstack);
}
static inline int * dstack_peek(StateMachine * sm) {
return g_queue_peek_tail(sm->dstack);
}
static inline bool dstack_search(StateMachine * sm, const int * element) {
return g_queue_find(sm->dstack, (gconstpointer)element);
}
static inline bool dstack_check(StateMachine * sm, int expected_element) {
int * top = dstack_peek(sm);
return top && *top == expected_element;
}
static inline bool dstack_check2(StateMachine * sm, int expected_element) {
int * top2 = NULL;
if (sm->dstack->length < 2) {
return false;
}
top2 = g_queue_peek_nth(sm->dstack, sm->dstack->length - 2);
return top2 && *top2 == expected_element;
}
static void dstack_rewind(StateMachine * sm) {
int * element = dstack_pop(sm);
if (element == NULL) {
return;
}
if (*element == BLOCK_P) {
append_closing_p(sm);
append_newline(sm);
} else if (*element == INLINE_SPOILER) {
append(sm, true, "");
} else if (*element == BLOCK_SPOILER) {
append_block(sm, "");
} else if (*element == BLOCK_QUOTE) {
append_block(sm, "");
} else if (*element == BLOCK_EXPAND) {
append_block(sm, "");
} else if (*element == BLOCK_NODTEXT) {
append_closing_p(sm);
append_newline(sm);
} else if (*element == BLOCK_CODE) {
append_block(sm, "");
} else if (*element == BLOCK_TD) {
append_block(sm, "");
} else if (*element == INLINE_NODTEXT) {
} else if (*element == INLINE_B) {
append(sm, true, "");
} else if (*element == INLINE_I) {
append(sm, true, "");
} else if (*element == INLINE_U) {
append(sm, true, "");
} else if (*element == INLINE_S) {
append(sm, true, "");
} else if (*element == INLINE_TN) {
append(sm, true, "");
} else if (*element == BLOCK_TN) {
append_closing_p(sm);
append_newline(sm);
} else if (*element == BLOCK_TABLE) {
append_block(sm, "");
} else if (*element == BLOCK_THEAD) {
append_block(sm, "");
} else if (*element == BLOCK_TBODY) {
append_block(sm, "");
} else if (*element == BLOCK_TR) {
append_block(sm, "");
} else if (*element == BLOCK_UL) {
append_block(sm, "");
append_newline(sm);
} else if (*element == BLOCK_LI) {
append_block(sm, "");
append_newline(sm);
}
}
static void dstack_close(StateMachine * sm) {
while (dstack_peek(sm) != NULL) {
dstack_rewind(sm);
}
}
static inline bool is_boundary_c(char c) {
switch (c) {
case ':':
case ';':
case '.':
case ',':
case '!':
case '?':
case ')':
case ']':
case '<':
case '>':
return true;
}
return false;
}
static void init_machine(StateMachine * sm, VALUE input) {
size_t output_length = 0;
sm->p = RSTRING_PTR(input);
sm->pe = sm->p + RSTRING_LEN(input);
sm->eof = sm->pe;
sm->ts = NULL;
sm->te = NULL;
sm->cs = 0;
sm->act = 0;
sm->top = 0;
output_length = RSTRING_LEN(input);
if (output_length < (INT16_MAX / 2)) {
output_length *= 2;
}
sm->output = g_string_sized_new(output_length);
sm->a1 = NULL;
sm->a2 = NULL;
sm->b1 = NULL;
sm->b2 = NULL;
sm->f_inline = false;
sm->f_strip = false;
sm->stack = g_array_sized_new(FALSE, TRUE, sizeof(int), 16);
sm->dstack = g_queue_new();
sm->list_nest = 0;
sm->list_mode = false;
}
static void free_machine(StateMachine * sm) {
g_string_free(sm->output, TRUE);
g_array_free(sm->stack, FALSE);
g_queue_free(sm->dstack);
g_free(sm);
}
static VALUE parse(int argc, VALUE * argv, VALUE self) {
VALUE input;
VALUE options;
VALUE opt_inline;
VALUE opt_strip;
VALUE ret;
StateMachine * sm = NULL;
g_debug("start\n");
if (argc == 0) {
rb_raise(rb_eArgError, "wrong number of arguments (0 for 1)");
}
input = argv[0];
sm = (StateMachine *)g_malloc0(sizeof(StateMachine));
input = rb_str_cat(input, "\0", 1);
init_machine(sm, input);
if (argc > 1) {
options = argv[1];
if (!NIL_P(options)) {
opt_strip = rb_hash_aref(options, ID2SYM(rb_intern("strip")));
if (RTEST(opt_strip)) {
sm->f_strip = true;
}
opt_inline = rb_hash_aref(options, ID2SYM(rb_intern("inline")));
if (RTEST(opt_inline)) {
sm->f_inline = true;
}
}
}
#line 375 "ext/dtext/dtext.c"
{
sm->cs = dtext_start;
( sm->top) = 0;
( sm->ts) = 0;
( sm->te) = 0;
( sm->act) = 0;
}
#line 1296 "ext/dtext/dtext.rl"
#line 386 "ext/dtext/dtext.c"
{
if ( ( sm->p) == ( sm->pe) )
goto _test_eof;
goto _resume;
_again:
switch ( sm->cs ) {
case 244: goto st244;
case 245: goto st245;
case 246: goto st246;
case 247: goto st247;
case 0: goto st0;
case 248: goto st248;
case 249: goto st249;
case 1: goto st1;
case 250: goto st250;
case 2: goto st2;
case 3: goto st3;
case 4: goto st4;
case 5: goto st5;
case 6: goto st6;
case 7: goto st7;
case 8: goto st8;
case 9: goto st9;
case 10: goto st10;
case 11: goto st11;
case 12: goto st12;
case 13: goto st13;
case 251: goto st251;
case 14: goto st14;
case 15: goto st15;
case 16: goto st16;
case 17: goto st17;
case 18: goto st18;
case 19: goto st19;
case 20: goto st20;
case 21: goto st21;
case 252: goto st252;
case 253: goto st253;
case 22: goto st22;
case 23: goto st23;
case 24: goto st24;
case 25: goto st25;
case 26: goto st26;
case 27: goto st27;
case 28: goto st28;
case 254: goto st254;
case 29: goto st29;
case 30: goto st30;
case 31: goto st31;
case 32: goto st32;
case 33: goto st33;
case 255: goto st255;
case 34: goto st34;
case 35: goto st35;
case 36: goto st36;
case 37: goto st37;
case 38: goto st38;
case 39: goto st39;
case 40: goto st40;
case 256: goto st256;
case 41: goto st41;
case 42: goto st42;
case 43: goto st43;
case 44: goto st44;
case 45: goto st45;
case 46: goto st46;
case 257: goto st257;
case 47: goto st47;
case 48: goto st48;
case 258: goto st258;
case 259: goto st259;
case 260: goto st260;
case 261: goto st261;
case 262: goto st262;
case 263: goto st263;
case 49: goto st49;
case 50: goto st50;
case 51: goto st51;
case 52: goto st52;
case 264: goto st264;
case 53: goto st53;
case 54: goto st54;
case 55: goto st55;
case 56: goto st56;
case 57: goto st57;
case 58: goto st58;
case 59: goto st59;
case 60: goto st60;
case 61: goto st61;
case 62: goto st62;
case 63: goto st63;
case 64: goto st64;
case 65: goto st65;
case 66: goto st66;
case 67: goto st67;
case 68: goto st68;
case 69: goto st69;
case 265: goto st265;
case 70: goto st70;
case 266: goto st266;
case 267: goto st267;
case 71: goto st71;
case 268: goto st268;
case 269: goto st269;
case 270: goto st270;
case 271: goto st271;
case 72: goto st72;
case 73: goto st73;
case 74: goto st74;
case 75: goto st75;
case 76: goto st76;
case 77: goto st77;
case 78: goto st78;
case 79: goto st79;
case 80: goto st80;
case 81: goto st81;
case 82: goto st82;
case 83: goto st83;
case 84: goto st84;
case 85: goto st85;
case 272: goto st272;
case 86: goto st86;
case 87: goto st87;
case 88: goto st88;
case 89: goto st89;
case 90: goto st90;
case 91: goto st91;
case 92: goto st92;
case 93: goto st93;
case 94: goto st94;
case 95: goto st95;
case 96: goto st96;
case 97: goto st97;
case 98: goto st98;
case 99: goto st99;
case 100: goto st100;
case 101: goto st101;
case 102: goto st102;
case 103: goto st103;
case 104: goto st104;
case 105: goto st105;
case 106: goto st106;
case 107: goto st107;
case 108: goto st108;
case 109: goto st109;
case 110: goto st110;
case 111: goto st111;
case 112: goto st112;
case 113: goto st113;
case 114: goto st114;
case 115: goto st115;
case 116: goto st116;
case 117: goto st117;
case 118: goto st118;
case 119: goto st119;
case 120: goto st120;
case 121: goto st121;
case 122: goto st122;
case 123: goto st123;
case 124: goto st124;
case 125: goto st125;
case 126: goto st126;
case 127: goto st127;
case 128: goto st128;
case 129: goto st129;
case 130: goto st130;
case 131: goto st131;
case 132: goto st132;
case 133: goto st133;
case 273: goto st273;
case 134: goto st134;
case 135: goto st135;
case 136: goto st136;
case 137: goto st137;
case 138: goto st138;
case 139: goto st139;
case 140: goto st140;
case 274: goto st274;
case 275: goto st275;
case 141: goto st141;
case 142: goto st142;
case 143: goto st143;
case 144: goto st144;
case 145: goto st145;
case 146: goto st146;
case 147: goto st147;
case 148: goto st148;
case 276: goto st276;
case 277: goto st277;
case 149: goto st149;
case 150: goto st150;
case 151: goto st151;
case 152: goto st152;
case 153: goto st153;
case 154: goto st154;
case 278: goto st278;
case 279: goto st279;
case 155: goto st155;
case 156: goto st156;
case 280: goto st280;
case 281: goto st281;
case 157: goto st157;
case 158: goto st158;
case 159: goto st159;
case 160: goto st160;
case 161: goto st161;
case 162: goto st162;
case 282: goto st282;
case 163: goto st163;
case 283: goto st283;
case 164: goto st164;
case 165: goto st165;
case 166: goto st166;
case 167: goto st167;
case 168: goto st168;
case 169: goto st169;
case 284: goto st284;
case 285: goto st285;
case 170: goto st170;
case 171: goto st171;
case 172: goto st172;
case 173: goto st173;
case 174: goto st174;
case 175: goto st175;
case 286: goto st286;
case 176: goto st176;
case 177: goto st177;
case 287: goto st287;
case 178: goto st178;
case 179: goto st179;
case 180: goto st180;
case 181: goto st181;
case 182: goto st182;
case 288: goto st288;
case 183: goto st183;
case 184: goto st184;
case 185: goto st185;
case 186: goto st186;
case 289: goto st289;
case 290: goto st290;
case 187: goto st187;
case 188: goto st188;
case 189: goto st189;
case 190: goto st190;
case 191: goto st191;
case 192: goto st192;
case 291: goto st291;
case 193: goto st193;
case 194: goto st194;
case 292: goto st292;
case 293: goto st293;
case 195: goto st195;
case 196: goto st196;
case 197: goto st197;
case 198: goto st198;
case 199: goto st199;
case 294: goto st294;
case 295: goto st295;
case 200: goto st200;
case 201: goto st201;
case 202: goto st202;
case 296: goto st296;
case 297: goto st297;
case 203: goto st203;
case 204: goto st204;
case 205: goto st205;
case 206: goto st206;
case 207: goto st207;
case 298: goto st298;
case 299: goto st299;
case 208: goto st208;
case 209: goto st209;
case 210: goto st210;
case 211: goto st211;
case 212: goto st212;
case 213: goto st213;
case 214: goto st214;
case 215: goto st215;
case 300: goto st300;
case 301: goto st301;
case 216: goto st216;
case 217: goto st217;
case 218: goto st218;
case 219: goto st219;
case 220: goto st220;
case 221: goto st221;
case 222: goto st222;
case 223: goto st223;
case 224: goto st224;
case 225: goto st225;
case 226: goto st226;
case 227: goto st227;
case 228: goto st228;
case 229: goto st229;
case 230: goto st230;
case 231: goto st231;
case 232: goto st232;
case 233: goto st233;
case 234: goto st234;
case 235: goto st235;
case 236: goto st236;
case 237: goto st237;
case 238: goto st238;
case 239: goto st239;
case 240: goto st240;
case 241: goto st241;
case 302: goto st302;
case 303: goto st303;
case 304: goto st304;
case 305: goto st305;
case 242: goto st242;
case 306: goto st306;
case 307: goto st307;
case 243: goto st243;
default: break;
}
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof;
_resume:
switch ( sm->cs )
{
tr0:
#line 985 "ext/dtext/dtext.rl"
{{( sm->p) = ((( sm->te)))-1;}{
g_debug("block c: %c", (*( sm->p)));
( sm->p)--;
if (g_queue_is_empty(sm->dstack) || dstack_check(sm, BLOCK_QUOTE) || dstack_check(sm, BLOCK_SPOILER) || dstack_check(sm, BLOCK_EXPAND)) {
g_debug(" push p");
g_debug(" print ");
dstack_push(sm, &BLOCK_P);
append_newline(sm);
append_block(sm, "
");
}
{
size_t len = sm->stack->len;
if (len > MAX_STACK_DEPTH) {
free_machine(sm);
rb_raise(rb_eSyntaxError, "too many nested elements");
}
if (sm->top >= len) {
sm->stack = g_array_set_size(sm->stack, len + 16);
}
{( ((int *)sm->stack->data))[( sm->top)++] = 244; goto st260;}}
}}
goto st244;
tr12:
#line 884 "ext/dtext/dtext.rl"
{( sm->te) = ( sm->p)+1;{
if (dstack_check(sm, BLOCK_P)) {
dstack_rewind(sm);
}
if (dstack_check(sm, BLOCK_SPOILER)) {
dstack_rewind(sm);
}
}}
goto st244;
tr51:
#line 938 "ext/dtext/dtext.rl"
{( sm->te) = ( sm->p)+1;{
dstack_push(sm, &BLOCK_TABLE);
append_newline(sm);
append_newline(sm);
append_block(sm, "
");
{
size_t len = sm->stack->len;
if (len > MAX_STACK_DEPTH) {
free_machine(sm);
rb_raise(rb_eSyntaxError, "too many nested elements");
}
if (sm->top >= len) {
sm->stack = g_array_set_size(sm->stack, len + 16);
}
{( ((int *)sm->stack->data))[( sm->top)++] = 244; goto st300;}}
}}
goto st244;
tr52:
#line 946 "ext/dtext/dtext.rl"
{( sm->te) = ( sm->p)+1;{
dstack_push(sm, &BLOCK_TN);
append_newline(sm);
append_newline(sm);
append_block(sm, "");
{
size_t len = sm->stack->len;
if (len > MAX_STACK_DEPTH) {
free_machine(sm);
rb_raise(rb_eSyntaxError, "too many nested elements");
}
if (sm->top >= len) {
sm->stack = g_array_set_size(sm->stack, len + 16);
}
{( ((int *)sm->stack->data))[( sm->top)++] = 244; goto st260;}}
}}
goto st244;
tr289:
#line 985 "ext/dtext/dtext.rl"
{( sm->te) = ( sm->p)+1;{
g_debug("block c: %c", (*( sm->p)));
( sm->p)--;
if (g_queue_is_empty(sm->dstack) || dstack_check(sm, BLOCK_QUOTE) || dstack_check(sm, BLOCK_SPOILER) || dstack_check(sm, BLOCK_EXPAND)) {
g_debug(" push p");
g_debug(" print
");
dstack_push(sm, &BLOCK_P);
append_newline(sm);
append_block(sm, "
");
}
{
size_t len = sm->stack->len;
if (len > MAX_STACK_DEPTH) {
free_machine(sm);
rb_raise(rb_eSyntaxError, "too many nested elements");
}
if (sm->top >= len) {
sm->stack = g_array_set_size(sm->stack, len + 16);
}
{( ((int *)sm->stack->data))[( sm->top)++] = 244; goto st260;}}
}}
goto st244;
tr290:
#line 967 "ext/dtext/dtext.rl"
{( sm->te) = ( sm->p)+1;{
g_debug("block 0");
g_debug(" close dstack");
dstack_close(sm);
}}
goto st244;
tr296:
#line 1 "NONE"
{ switch( ( sm->act) ) {
case 78:
{{( sm->p) = ((( sm->te)))-1;}
g_debug("block newline2");
if (dstack_check(sm, BLOCK_P)) {
g_debug(" pop p");
dstack_rewind(sm);
}
}
break;
case 79:
{{( sm->p) = ((( sm->te)))-1;}
g_debug("block newline");
}
break;
}
}
goto st244;
tr298:
#line 981 "ext/dtext/dtext.rl"
{( sm->te) = ( sm->p);( sm->p)--;{
g_debug("block newline");
}}
goto st244;
tr299:
#line 985 "ext/dtext/dtext.rl"
{( sm->te) = ( sm->p);( sm->p)--;{
g_debug("block c: %c", (*( sm->p)));
( sm->p)--;
if (g_queue_is_empty(sm->dstack) || dstack_check(sm, BLOCK_QUOTE) || dstack_check(sm, BLOCK_SPOILER) || dstack_check(sm, BLOCK_EXPAND)) {
g_debug(" push p");
g_debug(" print
");
dstack_push(sm, &BLOCK_P);
append_newline(sm);
append_block(sm, "
");
}
{
size_t len = sm->stack->len;
if (len > MAX_STACK_DEPTH) {
free_machine(sm);
rb_raise(rb_eSyntaxError, "too many nested elements");
}
if (sm->top >= len) {
sm->stack = g_array_set_size(sm->stack, len + 16);
}
{( ((int *)sm->stack->data))[( sm->top)++] = 244; goto st260;}}
}}
goto st244;
tr300:
#line 99 "ext/dtext/dtext.rl"
{
sm->b2 = sm->p;
}
#line 954 "ext/dtext/dtext.rl"
{( sm->te) = ( sm->p);( sm->p)--;{
g_debug("inline list");
sm->list_nest = 0;
sm->list_mode = true;
if (dstack_check(sm, BLOCK_P)) {
g_debug(" pop dstack");
dstack_rewind(sm);
}
g_debug(" call list");
{( sm->p) = (( sm->ts))-1;}
{
size_t len = sm->stack->len;
if (len > MAX_STACK_DEPTH) {
free_machine(sm);
rb_raise(rb_eSyntaxError, "too many nested elements");
}
if (sm->top >= len) {
sm->stack = g_array_set_size(sm->stack, len + 16);
}
{( ((int *)sm->stack->data))[( sm->top)++] = 244; goto st302;}}
}}
goto st244;
tr309:
#line 894 "ext/dtext/dtext.rl"
{( sm->te) = ( sm->p);( sm->p)--;{
dstack_push(sm, &BLOCK_CODE);
append_newline(sm);
append_newline(sm);
append_block(sm, "
");
append_newline(sm);
{
size_t len = sm->stack->len;
if (len > MAX_STACK_DEPTH) {
free_machine(sm);
rb_raise(rb_eSyntaxError, "too many nested elements");
}
if (sm->top >= len) {
sm->stack = g_array_set_size(sm->stack, len + 16);
}
{( ((int *)sm->stack->data))[( sm->top)++] = 244; goto st296;}}
}}
goto st244;
tr310:
#line 916 "ext/dtext/dtext.rl"
{( sm->te) = ( sm->p);( sm->p)--;{
dstack_push(sm, &BLOCK_EXPAND);
dstack_push(sm, &BLOCK_P);
append_newline(sm);
append_newline(sm);
append_block(sm, "");
append(sm, true, "");
append_segment_html_escaped(sm, sm->a1, sm->a2);
append(sm, true, "");
append_block(sm, "
");
append_block(sm, "
");
append_newline(sm);
{
size_t len = sm->stack->len;
if (len > MAX_STACK_DEPTH) {
free_machine(sm);
rb_raise(rb_eSyntaxError, "too many nested elements");
}
if (sm->top >= len) {
sm->stack = g_array_set_size(sm->stack, len + 16);
}
{( ((int *)sm->stack->data))[( sm->top)++] = 244; goto st260;}}
}}
goto st244;
tr312:
#line 903 "ext/dtext/dtext.rl"
{( sm->te) = ( sm->p);( sm->p)--;{
dstack_push(sm, &BLOCK_EXPAND);
dstack_push(sm, &BLOCK_P);
append_newline(sm);
append_newline(sm);
append_block(sm, "
");
append_block(sm, "
");
append_block(sm, "
");
append_block(sm, "
");
append_newline(sm);
{
size_t len = sm->stack->len;
if (len > MAX_STACK_DEPTH) {
free_machine(sm);
rb_raise(rb_eSyntaxError, "too many nested elements");
}
if (sm->top >= len) {
sm->stack = g_array_set_size(sm->stack, len + 16);
}
{( ((int *)sm->stack->data))[( sm->top)++] = 244; goto st260;}}
}}
goto st244;
tr313:
#line 931 "ext/dtext/dtext.rl"
{( sm->te) = ( sm->p);( sm->p)--;{
dstack_push(sm, &BLOCK_NODTEXT);
append_newline(sm);
append_block(sm, "
");
{
size_t len = sm->stack->len;
if (len > MAX_STACK_DEPTH) {
free_machine(sm);
rb_raise(rb_eSyntaxError, "too many nested elements");
}
if (sm->top >= len) {
sm->stack = g_array_set_size(sm->stack, len + 16);
}
{( ((int *)sm->stack->data))[( sm->top)++] = 244; goto st298;}}
}}
goto st244;
tr314:
#line 851 "ext/dtext/dtext.rl"
{( sm->te) = ( sm->p);( sm->p)--;{
g_debug("block [quote]");
g_debug(" push quote");
g_debug(" push p");
g_debug(" print
");
g_debug(" print ");
g_debug(" call inline");
dstack_push(sm, &BLOCK_QUOTE);
dstack_push(sm, &BLOCK_P);
append_newline(sm);
append_newline(sm);
append_block(sm, "
");
append_newline(sm);
{
size_t len = sm->stack->len;
if (len > MAX_STACK_DEPTH) {
free_machine(sm);
rb_raise(rb_eSyntaxError, "too many nested elements");
}
if (sm->top >= len) {
sm->stack = g_array_set_size(sm->stack, len + 16);
}
{( ((int *)sm->stack->data))[( sm->top)++] = 244; goto st260;}}
}}
goto st244;
tr315:
#line 868 "ext/dtext/dtext.rl"
{( sm->te) = ( sm->p);( sm->p)--;{
g_debug("block [spoiler]");
g_debug(" push spoiler");
g_debug(" push p");
g_debug(" print
");
g_debug(" print
");
g_debug(" call inline");
dstack_push(sm, &BLOCK_SPOILER);
dstack_push(sm, &BLOCK_P);
append_newline(sm);
append_newline(sm);
append_block(sm, "
");
append_newline(sm);
{
size_t len = sm->stack->len;
if (len > MAX_STACK_DEPTH) {
free_machine(sm);
rb_raise(rb_eSyntaxError, "too many nested elements");
}
if (sm->top >= len) {
sm->stack = g_array_set_size(sm->stack, len + 16);
}
{( ((int *)sm->stack->data))[( sm->top)++] = 244; goto st260;}}
}}
goto st244;
tr317:
#line 99 "ext/dtext/dtext.rl"
{
sm->b2 = sm->p;
}
#line 827 "ext/dtext/dtext.rl"
{( sm->te) = ( sm->p);( sm->p)--;{
char header = *sm->a1;
if (sm->f_inline) {
header = '6';
}
append_newline(sm);
append_newline(sm);
if (!sm->f_strip) {
append(sm, true, "');
}
append_segment(sm, false, sm->b1, sm->b2 - 1);
if (!sm->f_strip) {
append(sm, true, "');
}
append_newline(sm);
append_newline(sm);
}}
goto st244;
st244:
#line 1 "NONE"
{( sm->ts) = 0;}
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof244;
case 244:
#line 1 "NONE"
{( sm->ts) = ( sm->p);}
#line 1105 "ext/dtext/dtext.c"
switch( (*( sm->p)) ) {
case 0: goto tr290;
case 10: goto tr291;
case 13: goto st246;
case 42: goto tr293;
case 91: goto tr294;
case 104: goto tr295;
}
goto tr289;
tr291:
#line 1 "NONE"
{( sm->te) = ( sm->p)+1;}
#line 981 "ext/dtext/dtext.rl"
{( sm->act) = 79;}
goto st245;
tr297:
#line 1 "NONE"
{( sm->te) = ( sm->p)+1;}
#line 973 "ext/dtext/dtext.rl"
{( sm->act) = 78;}
goto st245;
st245:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof245;
case 245:
#line 1131 "ext/dtext/dtext.c"
switch( (*( sm->p)) ) {
case 10: goto tr297;
case 13: goto tr297;
}
goto tr296;
st246:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof246;
case 246:
switch( (*( sm->p)) ) {
case 10: goto tr297;
case 13: goto tr297;
}
goto tr298;
tr293:
#line 1 "NONE"
{( sm->te) = ( sm->p)+1;}
#line 87 "ext/dtext/dtext.rl"
{
sm->a1 = sm->p;
}
goto st247;
st247:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof247;
case 247:
#line 1158 "ext/dtext/dtext.c"
switch( (*( sm->p)) ) {
case 9: goto tr3;
case 32: goto tr3;
case 42: goto st1;
}
goto tr299;
tr3:
#line 91 "ext/dtext/dtext.rl"
{
sm->a2 = sm->p;
}
goto st0;
st0:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof0;
case 0:
#line 1175 "ext/dtext/dtext.c"
switch( (*( sm->p)) ) {
case 0: goto tr0;
case 9: goto tr2;
case 10: goto tr0;
case 13: goto tr0;
case 32: goto tr2;
}
goto tr1;
tr1:
#line 95 "ext/dtext/dtext.rl"
{
sm->b1 = sm->p;
}
goto st248;
st248:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof248;
case 248:
#line 1194 "ext/dtext/dtext.c"
switch( (*( sm->p)) ) {
case 0: goto tr300;
case 10: goto tr300;
case 13: goto tr300;
}
goto st248;
tr2:
#line 95 "ext/dtext/dtext.rl"
{
sm->b1 = sm->p;
}
goto st249;
st249:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof249;
case 249:
#line 1211 "ext/dtext/dtext.c"
switch( (*( sm->p)) ) {
case 0: goto tr300;
case 9: goto tr2;
case 10: goto tr300;
case 13: goto tr300;
case 32: goto tr2;
}
goto tr1;
st1:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof1;
case 1:
switch( (*( sm->p)) ) {
case 9: goto tr3;
case 32: goto tr3;
case 42: goto st1;
}
goto tr0;
tr294:
#line 1 "NONE"
{( sm->te) = ( sm->p)+1;}
goto st250;
st250:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof250;
case 250:
#line 1238 "ext/dtext/dtext.c"
switch( (*( sm->p)) ) {
case 47: goto st2;
case 99: goto st10;
case 101: goto st14;
case 110: goto st22;
case 113: goto st29;
case 115: goto st34;
case 116: goto st41;
}
goto tr299;
st2:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof2;
case 2:
if ( (*( sm->p)) == 115 )
goto st3;
goto tr0;
st3:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof3;
case 3:
if ( (*( sm->p)) == 112 )
goto st4;
goto tr0;
st4:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof4;
case 4:
if ( (*( sm->p)) == 111 )
goto st5;
goto tr0;
st5:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof5;
case 5:
if ( (*( sm->p)) == 105 )
goto st6;
goto tr0;
st6:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof6;
case 6:
if ( (*( sm->p)) == 108 )
goto st7;
goto tr0;
st7:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof7;
case 7:
if ( (*( sm->p)) == 101 )
goto st8;
goto tr0;
st8:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof8;
case 8:
if ( (*( sm->p)) == 114 )
goto st9;
goto tr0;
st9:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof9;
case 9:
if ( (*( sm->p)) == 93 )
goto tr12;
goto tr0;
st10:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof10;
case 10:
if ( (*( sm->p)) == 111 )
goto st11;
goto tr0;
st11:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof11;
case 11:
if ( (*( sm->p)) == 100 )
goto st12;
goto tr0;
st12:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof12;
case 12:
if ( (*( sm->p)) == 101 )
goto st13;
goto tr0;
st13:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof13;
case 13:
if ( (*( sm->p)) == 93 )
goto st251;
goto tr0;
st251:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof251;
case 251:
if ( (*( sm->p)) == 32 )
goto st251;
if ( 9 <= (*( sm->p)) && (*( sm->p)) <= 13 )
goto st251;
goto tr309;
st14:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof14;
case 14:
if ( (*( sm->p)) == 120 )
goto st15;
goto tr0;
st15:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof15;
case 15:
if ( (*( sm->p)) == 112 )
goto st16;
goto tr0;
st16:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof16;
case 16:
if ( (*( sm->p)) == 97 )
goto st17;
goto tr0;
st17:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof17;
case 17:
if ( (*( sm->p)) == 110 )
goto st18;
goto tr0;
st18:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof18;
case 18:
if ( (*( sm->p)) == 100 )
goto st19;
goto tr0;
st19:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof19;
case 19:
switch( (*( sm->p)) ) {
case 61: goto st20;
case 93: goto st253;
}
goto tr0;
st20:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof20;
case 20:
if ( (*( sm->p)) == 93 )
goto tr0;
goto tr24;
tr24:
#line 87 "ext/dtext/dtext.rl"
{
sm->a1 = sm->p;
}
goto st21;
st21:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof21;
case 21:
#line 1403 "ext/dtext/dtext.c"
if ( (*( sm->p)) == 93 )
goto tr26;
goto st21;
tr26:
#line 91 "ext/dtext/dtext.rl"
{
sm->a2 = sm->p;
}
goto st252;
st252:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof252;
case 252:
#line 1417 "ext/dtext/dtext.c"
if ( (*( sm->p)) == 32 )
goto st252;
if ( 9 <= (*( sm->p)) && (*( sm->p)) <= 13 )
goto st252;
goto tr310;
st253:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof253;
case 253:
if ( (*( sm->p)) == 32 )
goto st253;
if ( 9 <= (*( sm->p)) && (*( sm->p)) <= 13 )
goto st253;
goto tr312;
st22:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof22;
case 22:
if ( (*( sm->p)) == 111 )
goto st23;
goto tr0;
st23:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof23;
case 23:
if ( (*( sm->p)) == 100 )
goto st24;
goto tr0;
st24:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof24;
case 24:
if ( (*( sm->p)) == 116 )
goto st25;
goto tr0;
st25:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof25;
case 25:
if ( (*( sm->p)) == 101 )
goto st26;
goto tr0;
st26:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof26;
case 26:
if ( (*( sm->p)) == 120 )
goto st27;
goto tr0;
st27:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof27;
case 27:
if ( (*( sm->p)) == 116 )
goto st28;
goto tr0;
st28:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof28;
case 28:
if ( (*( sm->p)) == 93 )
goto st254;
goto tr0;
st254:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof254;
case 254:
if ( (*( sm->p)) == 32 )
goto st254;
if ( 9 <= (*( sm->p)) && (*( sm->p)) <= 13 )
goto st254;
goto tr313;
st29:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof29;
case 29:
if ( (*( sm->p)) == 117 )
goto st30;
goto tr0;
st30:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof30;
case 30:
if ( (*( sm->p)) == 111 )
goto st31;
goto tr0;
st31:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof31;
case 31:
if ( (*( sm->p)) == 116 )
goto st32;
goto tr0;
st32:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof32;
case 32:
if ( (*( sm->p)) == 101 )
goto st33;
goto tr0;
st33:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof33;
case 33:
if ( (*( sm->p)) == 93 )
goto st255;
goto tr0;
st255:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof255;
case 255:
if ( (*( sm->p)) == 32 )
goto st255;
if ( 9 <= (*( sm->p)) && (*( sm->p)) <= 13 )
goto st255;
goto tr314;
st34:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof34;
case 34:
if ( (*( sm->p)) == 112 )
goto st35;
goto tr0;
st35:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof35;
case 35:
if ( (*( sm->p)) == 111 )
goto st36;
goto tr0;
st36:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof36;
case 36:
if ( (*( sm->p)) == 105 )
goto st37;
goto tr0;
st37:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof37;
case 37:
if ( (*( sm->p)) == 108 )
goto st38;
goto tr0;
st38:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof38;
case 38:
if ( (*( sm->p)) == 101 )
goto st39;
goto tr0;
st39:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof39;
case 39:
if ( (*( sm->p)) == 114 )
goto st40;
goto tr0;
st40:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof40;
case 40:
if ( (*( sm->p)) == 93 )
goto st256;
goto tr0;
st256:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof256;
case 256:
if ( (*( sm->p)) == 32 )
goto st256;
if ( 9 <= (*( sm->p)) && (*( sm->p)) <= 13 )
goto st256;
goto tr315;
st41:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof41;
case 41:
switch( (*( sm->p)) ) {
case 97: goto st42;
case 110: goto st46;
}
goto tr0;
st42:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof42;
case 42:
if ( (*( sm->p)) == 98 )
goto st43;
goto tr0;
st43:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof43;
case 43:
if ( (*( sm->p)) == 108 )
goto st44;
goto tr0;
st44:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof44;
case 44:
if ( (*( sm->p)) == 101 )
goto st45;
goto tr0;
st45:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof45;
case 45:
if ( (*( sm->p)) == 93 )
goto tr51;
goto tr0;
st46:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof46;
case 46:
if ( (*( sm->p)) == 93 )
goto tr52;
goto tr0;
tr295:
#line 1 "NONE"
{( sm->te) = ( sm->p)+1;}
goto st257;
st257:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof257;
case 257:
#line 1644 "ext/dtext/dtext.c"
if ( 49 <= (*( sm->p)) && (*( sm->p)) <= 54 )
goto tr316;
goto tr299;
tr316:
#line 87 "ext/dtext/dtext.rl"
{
sm->a1 = sm->p;
}
goto st47;
st47:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof47;
case 47:
#line 1658 "ext/dtext/dtext.c"
if ( (*( sm->p)) == 46 )
goto tr53;
goto tr0;
tr53:
#line 91 "ext/dtext/dtext.rl"
{
sm->a2 = sm->p;
}
goto st48;
st48:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof48;
case 48:
#line 1672 "ext/dtext/dtext.c"
switch( (*( sm->p)) ) {
case 0: goto tr0;
case 9: goto tr55;
case 10: goto tr0;
case 13: goto tr0;
case 32: goto tr55;
}
goto tr54;
tr54:
#line 95 "ext/dtext/dtext.rl"
{
sm->b1 = sm->p;
}
goto st258;
st258:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof258;
case 258:
#line 1691 "ext/dtext/dtext.c"
switch( (*( sm->p)) ) {
case 0: goto tr317;
case 10: goto tr317;
case 13: goto tr317;
}
goto st258;
tr55:
#line 95 "ext/dtext/dtext.rl"
{
sm->b1 = sm->p;
}
goto st259;
st259:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof259;
case 259:
#line 1708 "ext/dtext/dtext.c"
switch( (*( sm->p)) ) {
case 0: goto tr317;
case 9: goto tr55;
case 10: goto tr317;
case 13: goto tr317;
case 32: goto tr55;
}
goto tr54;
tr56:
#line 624 "ext/dtext/dtext.rl"
{{( sm->p) = ((( sm->te)))-1;}{
g_debug("inline c: %c", (*( sm->p)));
append_c_html_escaped(sm, (*( sm->p)));
}}
goto st260;
tr67:
#line 99 "ext/dtext/dtext.rl"
{
sm->b2 = sm->p;
}
#line 320 "ext/dtext/dtext.rl"
{( sm->te) = ( sm->p)+1;{
append(sm, true, "b1, sm->b2 - 1);
append(sm, true, "\">");
append_segment_html_escaped(sm, sm->a1, sm->a2 - 1);
append(sm, true, "");
}}
goto st260;
tr93:
#line 392 "ext/dtext/dtext.rl"
{( sm->te) = ( sm->p)+1;{
if (dstack_check(sm, INLINE_B)) {
dstack_pop(sm);
append(sm, true, "");
} else {
append(sm, true, "[/b]");
}
}}
goto st260;
tr99:
#line 541 "ext/dtext/dtext.rl"
{( sm->te) = ( sm->p)+1;{
if (dstack_check(sm, BLOCK_P)) {
append_closing_p(sm);
append_newline(sm);
dstack_pop(sm);
}
if (dstack_check(sm, BLOCK_EXPAND)) {
append_newline(sm);
append_block(sm, "
");
append_newline(sm);
append_newline(sm);
dstack_pop(sm);
{ sm->cs = ( ((int *)sm->stack->data))[--( sm->top)];goto _again;}
} else {
append_block(sm, "[/expand]");
}
}}
goto st260;
tr100:
#line 406 "ext/dtext/dtext.rl"
{( sm->te) = ( sm->p)+1;{
if (dstack_check(sm, INLINE_I)) {
dstack_pop(sm);
append(sm, true, "");
} else {
append(sm, true, "[/i]");
}
}}
goto st260;
tr106:
#line 420 "ext/dtext/dtext.rl"
{( sm->te) = ( sm->p)+1;{
if (dstack_check(sm, INLINE_S)) {
dstack_pop(sm);
append(sm, true, "");
} else {
append(sm, true, "[/s]");
}
}}
goto st260;
tr113:
#line 508 "ext/dtext/dtext.rl"
{( sm->te) = ( sm->p)+1;{
g_debug("inline [/spoiler]");
if (dstack_check(sm, INLINE_SPOILER)) {
g_debug(" pop dstack");
g_debug(" print ");
dstack_pop(sm);
append(sm, true, "");
} else if (dstack_check(sm, BLOCK_P) && dstack_check2(sm, BLOCK_SPOILER)) {
g_debug(" pop dstack");
g_debug(" print
");
g_debug(" return");
dstack_pop(sm);
dstack_pop(sm);
append_newline(sm);
append_closing_p(sm);
append_block(sm, "
");
append_newline(sm);
append_newline(sm);
{ sm->cs = ( ((int *)sm->stack->data))[--( sm->top)];goto _again;}
} else {
append_block(sm, "[/spoiler]");
}
}}
goto st260;
tr117:
#line 577 "ext/dtext/dtext.rl"
{( sm->te) = ( sm->p)+1;{
if (dstack_check(sm, BLOCK_TD)) {
dstack_pop(sm);
append_newline(sm);
append_block(sm, "");
append_newline(sm);
{ sm->cs = ( ((int *)sm->stack->data))[--( sm->top)];goto _again;}
} else {
append_block(sm, "[/td]");
}
}}
goto st260;
tr118:
#line 565 "ext/dtext/dtext.rl"
{( sm->te) = ( sm->p)+1;{
if (dstack_check(sm, BLOCK_TH)) {
dstack_pop(sm);
append_newline(sm);
append_block(sm, "");
append_newline(sm);
{ sm->cs = ( ((int *)sm->stack->data))[--( sm->top)];goto _again;}
} else {
append_block(sm, "[/th]");
}
}}
goto st260;
tr119:
#line 448 "ext/dtext/dtext.rl"
{( sm->te) = ( sm->p)+1;{
if (dstack_check(sm, BLOCK_TN)) {
dstack_pop(sm);
append_closing_p(sm);
append_newline(sm);
{ sm->cs = ( ((int *)sm->stack->data))[--( sm->top)];goto _again;}
} else if (dstack_check(sm, INLINE_TN)) {
dstack_pop(sm);
append(sm, true, "");
} else {
append_block(sm, "[/tn]");
}
}}
goto st260;
tr120:
#line 434 "ext/dtext/dtext.rl"
{( sm->te) = ( sm->p)+1;{
if (dstack_check(sm, INLINE_U)) {
dstack_pop(sm);
append(sm, true, "");
} else {
append(sm, true, "[/u]");
}
}}
goto st260;
tr125:
#line 258 "ext/dtext/dtext.rl"
{( sm->te) = ( sm->p)+1;{
GString * segment = g_string_new_len(sm->a1, sm->a2 - sm->a1);
GString * lowercase_segment = NULL;
underscore_string(segment->str, segment->len);
if (g_utf8_validate(segment->str, -1, NULL)) {
lowercase_segment = g_string_new(g_utf8_strdown(segment->str, -1));
} else {
lowercase_segment = g_string_new(g_ascii_strdown(segment->str, -1));
}
append(sm, true, "
str, lowercase_segment->str + lowercase_segment->len - 1);
append(sm, true, "\">");
append_segment_html_escaped(sm, sm->a1, sm->a2 - 1);
append(sm, true, "");
g_string_free(lowercase_segment, TRUE);
g_string_free(segment, TRUE);
}}
goto st260;
tr129:
#line 279 "ext/dtext/dtext.rl"
{( sm->te) = ( sm->p)+1;{
GString * segment = g_string_new_len(sm->a1, sm->a2 - sm->a1);
GString * lowercase_segment = NULL;
underscore_string(segment->str, segment->len);
if (g_utf8_validate(segment->str, -1, NULL)) {
lowercase_segment = g_string_new(g_utf8_strdown(segment->str, -1));
} else {
lowercase_segment = g_string_new(g_ascii_strdown(segment->str, -1));
}
append(sm, true, "
str, lowercase_segment->str + lowercase_segment->len - 1);
append(sm, true, "\">");
append_segment_html_escaped(sm, sm->b1, sm->b2 - 1);
append(sm, true, "");
g_string_free(lowercase_segment, TRUE);
g_string_free(segment, TRUE);
}}
goto st260;
tr130:
#line 387 "ext/dtext/dtext.rl"
{( sm->te) = ( sm->p)+1;{
dstack_push(sm, &INLINE_B);
append(sm, true, "
");
}}
goto st260;
tr136:
#line 534 "ext/dtext/dtext.rl"
{( sm->te) = ( sm->p)+1;{
g_debug("inline [expand]");
dstack_rewind(sm);
{( sm->p) = (((sm->p - 7)))-1;}
{ sm->cs = ( ((int *)sm->stack->data))[--( sm->top)];goto _again;}
}}
goto st260;
tr137:
#line 401 "ext/dtext/dtext.rl"
{( sm->te) = ( sm->p)+1;{
dstack_push(sm, &INLINE_I);
append(sm, true, "");
}}
goto st260;
tr144:
#line 560 "ext/dtext/dtext.rl"
{( sm->te) = ( sm->p)+1;{
dstack_push(sm, &INLINE_NODTEXT);
{
size_t len = sm->stack->len;
if (len > MAX_STACK_DEPTH) {
free_machine(sm);
rb_raise(rb_eSyntaxError, "too many nested elements");
}
if (sm->top >= len) {
sm->stack = g_array_set_size(sm->stack, len + 16);
}
{( ((int *)sm->stack->data))[( sm->top)++] = 260; goto st298;}}
}}
goto st260;
tr149:
#line 470 "ext/dtext/dtext.rl"
{( sm->te) = ( sm->p)+1;{
g_debug("inline [quote]");
if (dstack_check(sm, BLOCK_P)) {
g_debug(" pop dstack");
g_debug(" print ");
dstack_pop(sm);
append_closing_p(sm);
append_newline(sm);
}
{( sm->p) = (( sm->ts))-1;}
{ sm->cs = ( ((int *)sm->stack->data))[--( sm->top)];goto _again;}
}}
goto st260;
tr150:
#line 415 "ext/dtext/dtext.rl"
{( sm->te) = ( sm->p)+1;{
dstack_push(sm, &INLINE_S);
append(sm, true, "");
}}
goto st260;
tr157:
#line 501 "ext/dtext/dtext.rl"
{( sm->te) = ( sm->p)+1;{
g_debug("inline [spoiler]");
g_debug(" push ");
dstack_push(sm, &INLINE_SPOILER);
append(sm, true, "");
}}
goto st260;
tr159:
#line 443 "ext/dtext/dtext.rl"
{( sm->te) = ( sm->p)+1;{
dstack_push(sm, &INLINE_TN);
append(sm, true, "");
}}
goto st260;
tr160:
#line 429 "ext/dtext/dtext.rl"
{( sm->te) = ( sm->p)+1;{
dstack_push(sm, &INLINE_U);
append(sm, true, "");
}}
goto st260;
tr204:
#line 228 "ext/dtext/dtext.rl"
{{( sm->p) = ((( sm->te)))-1;}{
append(sm, true, "a1, sm->a2 - 1);
append(sm, true, "\">");
append(sm, false, "pixiv #");
append_segment(sm, false, sm->a1, sm->a2 - 1);
append(sm, true, "");
}}
goto st260;
tr223:
#line 161 "ext/dtext/dtext.rl"
{{( sm->p) = ((( sm->te)))-1;}{
append(sm, true, "a1, sm->a2 - 1);
append(sm, true, "\">");
append(sm, false, "topic #");
append_segment(sm, false, sm->a1, sm->a2 - 1);
append(sm, true, "");
}}
goto st260;
tr234:
#line 250 "ext/dtext/dtext.rl"
{( sm->te) = ( sm->p)+1;{
append(sm, true, "a1, sm->a2 - 1);
append(sm, true, "\">");
append_segment_html_escaped(sm, sm->a1, sm->a2 - 1);
append(sm, true, "");
}}
goto st260;
tr319:
#line 624 "ext/dtext/dtext.rl"
{( sm->te) = ( sm->p)+1;{
g_debug("inline c: %c", (*( sm->p)));
append_c_html_escaped(sm, (*( sm->p)));
}}
goto st260;
tr320:
#line 589 "ext/dtext/dtext.rl"
{( sm->te) = ( sm->p)+1;{
g_debug("inline 0");
g_debug(" return");
( sm->p)--;
{ sm->cs = ( ((int *)sm->stack->data))[--( sm->top)];goto _again;}
}}
goto st260;
tr336:
#line 1 "NONE"
{ switch( ( sm->act) ) {
case 18:
{{( sm->p) = ((( sm->te)))-1;}
append_segment_html_escaped(sm, sm->ts, sm->te - 1);
}
break;
case 19:
{{( sm->p) = ((( sm->te)))-1;}
if (is_boundary_c((*( sm->p)))) {
sm->b = true;
sm->d = 2;
} else {
sm->b = false;
sm->d = 1;
}
append(sm, true, "a1, sm->a2 - sm->d);
append(sm, true, "\">");
append_c(sm, '@');
append_segment_html_escaped(sm, sm->a1, sm->a2 - sm->d);
append(sm, true, "");
if (sm->b) {
append_c_html_escaped(sm, (*( sm->p)));
}
}
break;
case 42:
{{( sm->p) = ((( sm->te)))-1;}
g_debug("inline newline2");
g_debug(" return");
if (sm->list_mode) {
if (dstack_check(sm, BLOCK_LI)) {
dstack_rewind(sm);
}
sm->list_mode = false;
}
{( sm->p) = (( sm->ts))-1;}
{ sm->cs = ( ((int *)sm->stack->data))[--( sm->top)];goto _again;}
}
break;
case 43:
{{( sm->p) = ((( sm->te)))-1;}
g_debug("inline newline");
if (sm->list_mode && (*(sm->p+1) == '*') && dstack_check(sm, BLOCK_LI)) {
dstack_rewind(sm);
} else {
append(sm, true, "
");
append_newline(sm);
}
}
break;
}
}
goto st260;
tr338:
#line 613 "ext/dtext/dtext.rl"
{( sm->te) = ( sm->p);( sm->p)--;{
g_debug("inline newline");
if (sm->list_mode && (*(sm->p+1) == '*') && dstack_check(sm, BLOCK_LI)) {
dstack_rewind(sm);
} else {
append(sm, true, "
");
append_newline(sm);
}
}}
goto st260;
tr339:
#line 624 "ext/dtext/dtext.rl"
{( sm->te) = ( sm->p);( sm->p)--;{
g_debug("inline c: %c", (*( sm->p)));
append_c_html_escaped(sm, (*( sm->p)));
}}
goto st260;
tr341:
#line 99 "ext/dtext/dtext.rl"
{
sm->b2 = sm->p;
}
#line 300 "ext/dtext/dtext.rl"
{( sm->te) = ( sm->p);( sm->p)--;{
if (is_boundary_c((*( sm->p)))) {
sm->d = 2;
sm->b = true;
} else {
sm->d = 1;
sm->b = false;
}
append(sm, true, "b1, sm->b2 - sm->d);
append(sm, true, "\">");
append_segment_html_escaped(sm, sm->a1, sm->a2 - 1);
append(sm, true, "");
if (sm->b) {
append_c_html_escaped(sm, (*( sm->p)));
}
}}
goto st260;
tr342:
#line 99 "ext/dtext/dtext.rl"
{
sm->b2 = sm->p;
}
#line 374 "ext/dtext/dtext.rl"
{( sm->te) = ( sm->p);( sm->p)--;{
g_debug("inline list");
if (dstack_check(sm, BLOCK_P)) {
g_debug(" rewind p");
dstack_rewind(sm);
}
g_debug(" call list");
{( sm->p) = (( sm->ts))-1;}
{
size_t len = sm->stack->len;
if (len > MAX_STACK_DEPTH) {
free_machine(sm);
rb_raise(rb_eSyntaxError, "too many nested elements");
}
if (sm->top >= len) {
sm->stack = g_array_set_size(sm->stack, len + 16);
}
{( ((int *)sm->stack->data))[( sm->top)++] = 260; goto st302;}}
}}
goto st260;
tr345:
#line 91 "ext/dtext/dtext.rl"
{
sm->a2 = sm->p;
}
#line 353 "ext/dtext/dtext.rl"
{( sm->te) = ( sm->p);( sm->p)--;{
if (is_boundary_c((*( sm->p)))) {
sm->b = true;
sm->d = 2;
} else {
sm->b = false;
sm->d = 1;
}
append(sm, true, "a1, sm->a2 - sm->d);
append(sm, true, "\">");
append_c(sm, '@');
append_segment_html_escaped(sm, sm->a1, sm->a2 - sm->d);
append(sm, true, "");
if (sm->b) {
append_c_html_escaped(sm, (*( sm->p)));
}
}}
goto st260;
tr348:
#line 91 "ext/dtext/dtext.rl"
{
sm->a2 = sm->p;
}
#line 1 "NONE"
{ switch( ( sm->act) ) {
case 18:
{{( sm->p) = ((( sm->te)))-1;}
append_segment_html_escaped(sm, sm->ts, sm->te - 1);
}
break;
case 19:
{{( sm->p) = ((( sm->te)))-1;}
if (is_boundary_c((*( sm->p)))) {
sm->b = true;
sm->d = 2;
} else {
sm->b = false;
sm->d = 1;
}
append(sm, true, "a1, sm->a2 - sm->d);
append(sm, true, "\">");
append_c(sm, '@');
append_segment_html_escaped(sm, sm->a1, sm->a2 - sm->d);
append(sm, true, "");
if (sm->b) {
append_c_html_escaped(sm, (*( sm->p)));
}
}
break;
case 42:
{{( sm->p) = ((( sm->te)))-1;}
g_debug("inline newline2");
g_debug(" return");
if (sm->list_mode) {
if (dstack_check(sm, BLOCK_LI)) {
dstack_rewind(sm);
}
sm->list_mode = false;
}
{( sm->p) = (( sm->ts))-1;}
{ sm->cs = ( ((int *)sm->stack->data))[--( sm->top)];goto _again;}
}
break;
case 43:
{{( sm->p) = ((( sm->te)))-1;}
g_debug("inline newline");
if (sm->list_mode && (*(sm->p+1) == '*') && dstack_check(sm, BLOCK_LI)) {
dstack_rewind(sm);
} else {
append(sm, true, "
");
append_newline(sm);
}
}
break;
}
}
goto st260;
tr359:
#line 486 "ext/dtext/dtext.rl"
{( sm->te) = ( sm->p);( sm->p)--;{
g_debug("inline [/quote]");
if (dstack_check(sm, BLOCK_P)) {
dstack_rewind(sm);
}
if (dstack_check(sm, BLOCK_QUOTE)) {
dstack_rewind(sm);
{ sm->cs = ( ((int *)sm->stack->data))[--( sm->top)];goto _again;}
} else {
append_block(sm, "[/quote]");
}
}}
goto st260;
tr361:
#line 91 "ext/dtext/dtext.rl"
{
sm->a2 = sm->p;
}
#line 210 "ext/dtext/dtext.rl"
{( sm->te) = ( sm->p);( sm->p)--;{
append(sm, true, "a1, sm->a2 - 1);
append(sm, true, "\">");
append(sm, false, "artist #");
append_segment(sm, false, sm->a1, sm->a2 - 1);
append(sm, true, "");
}}
goto st260;
tr364:
#line 91 "ext/dtext/dtext.rl"
{
sm->a2 = sm->p;
}
#line 183 "ext/dtext/dtext.rl"
{( sm->te) = ( sm->p);( sm->p)--;{
append(sm, true, "a1, sm->a2 - 1);
append(sm, true, "\">");
append(sm, false, "comment #");
append_segment(sm, false, sm->a1, sm->a2 - 1);
append(sm, true, "");
}}
goto st260;
tr367:
#line 91 "ext/dtext/dtext.rl"
{
sm->a2 = sm->p;
}
#line 152 "ext/dtext/dtext.rl"
{( sm->te) = ( sm->p);( sm->p)--;{
append(sm, true, "a1, sm->a2 - 1);
append(sm, true, "\">");
append(sm, false, "forum #");
append_segment(sm, false, sm->a1, sm->a2 - 1);
append(sm, true, "");
}}
goto st260;
tr371:
#line 99 "ext/dtext/dtext.rl"
{
sm->b2 = sm->p;
}
#line 464 "ext/dtext/dtext.rl"
{( sm->te) = ( sm->p);( sm->p)--;{
dstack_rewind(sm);
{( sm->p) = (( sm->a1 - 1))-1;}
{ sm->cs = ( ((int *)sm->stack->data))[--( sm->top)];goto _again;}
}}
goto st260;
tr373:
#line 328 "ext/dtext/dtext.rl"
{( sm->te) = ( sm->p);( sm->p)--;{
if (is_boundary_c((*( sm->p)))) {
sm->b = true;
sm->d = 2;
} else {
sm->b = false;
sm->d = 1;
}
append(sm, true, "ts, sm->te - sm->d);
append(sm, true, "\">");
append_segment_html_escaped(sm, sm->ts, sm->te - sm->d);
append(sm, true, "");
if (sm->b) {
append_c_html_escaped(sm, (*( sm->p)));
}
}}
goto st260;
tr375:
#line 91 "ext/dtext/dtext.rl"
{
sm->a2 = sm->p;
}
#line 219 "ext/dtext/dtext.rl"
{( sm->te) = ( sm->p);( sm->p)--;{
append(sm, true, "a1, sm->a2 - 1);
append(sm, true, "\">");
append(sm, false, "issue #");
append_segment(sm, false, sm->a1, sm->a2 - 1);
append(sm, true, "");
}}
goto st260;
tr379:
#line 91 "ext/dtext/dtext.rl"
{
sm->a2 = sm->p;
}
#line 228 "ext/dtext/dtext.rl"
{( sm->te) = ( sm->p);( sm->p)--;{
append(sm, true, "a1, sm->a2 - 1);
append(sm, true, "\">");
append(sm, false, "pixiv #");
append_segment(sm, false, sm->a1, sm->a2 - 1);
append(sm, true, "");
}}
goto st260;
tr382:
#line 99 "ext/dtext/dtext.rl"
{
sm->b2 = sm->p;
}
#line 237 "ext/dtext/dtext.rl"
{( sm->te) = ( sm->p);( sm->p)--;{
append(sm, true, "a1, sm->a2 - 1);
append(sm, true, "&page=");
append_segment(sm, true, sm->b1, sm->b2 - 1);
append(sm, true, "\">");
append(sm, false, "pixiv #");
append_segment(sm, false, sm->a1, sm->a2 - 1);
append(sm, false, "/p");
append_segment(sm, false, sm->b1, sm->b2 - 1);
append(sm, true, "");
}}
goto st260;
tr384:
#line 91 "ext/dtext/dtext.rl"
{
sm->a2 = sm->p;
}
#line 192 "ext/dtext/dtext.rl"
{( sm->te) = ( sm->p);( sm->p)--;{
append(sm, true, "a1, sm->a2 - 1);
append(sm, true, "\">");
append(sm, false, "pool #");
append_segment(sm, false, sm->a1, sm->a2 - 1);
append(sm, true, "");
}}
goto st260;
tr386:
#line 91 "ext/dtext/dtext.rl"
{
sm->a2 = sm->p;
}
#line 143 "ext/dtext/dtext.rl"
{( sm->te) = ( sm->p);( sm->p)--;{
append(sm, true, "a1, sm->a2 - 1);
append(sm, true, "\">");
append(sm, false, "post #");
append_segment(sm, false, sm->a1, sm->a2 - 1);
append(sm, true, "");
}}
goto st260;
tr389:
#line 91 "ext/dtext/dtext.rl"
{
sm->a2 = sm->p;
}
#line 161 "ext/dtext/dtext.rl"
{( sm->te) = ( sm->p);( sm->p)--;{
append(sm, true, "a1, sm->a2 - 1);
append(sm, true, "\">");
append(sm, false, "topic #");
append_segment(sm, false, sm->a1, sm->a2 - 1);
append(sm, true, "");
}}
goto st260;
tr392:
#line 99 "ext/dtext/dtext.rl"
{
sm->b2 = sm->p;
}
#line 170 "ext/dtext/dtext.rl"
{( sm->te) = ( sm->p);( sm->p)--;{
append(sm, true, "a1, sm->a2 - 1);
append(sm, true, "?page=");
append_segment(sm, true, sm->b1, sm->b2 - 1);
append(sm, true, "\">");
append(sm, false, "topic #");
append_segment(sm, false, sm->a1, sm->a2 - 1);
append(sm, false, "/p");
append_segment(sm, false, sm->b1, sm->b2 - 1);
append(sm, true, "");
}}
goto st260;
tr395:
#line 91 "ext/dtext/dtext.rl"
{
sm->a2 = sm->p;
}
#line 201 "ext/dtext/dtext.rl"
{( sm->te) = ( sm->p);( sm->p)--;{
append(sm, true, "a1, sm->a2 - 1);
append(sm, true, "\">");
append(sm, false, "user #");
append_segment(sm, false, sm->a1, sm->a2 - 1);
append(sm, true, "");
}}
goto st260;
st260:
#line 1 "NONE"
{( sm->ts) = 0;}
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof260;
case 260:
#line 1 "NONE"
{( sm->ts) = ( sm->p);}
#line 2522 "ext/dtext/dtext.c"
switch( (*( sm->p)) ) {
case 0: goto tr320;
case 10: goto tr321;
case 13: goto st262;
case 34: goto tr323;
case 42: goto tr324;
case 64: goto st268;
case 91: goto tr326;
case 97: goto tr327;
case 99: goto tr328;
case 102: goto tr329;
case 104: goto tr330;
case 105: goto tr331;
case 112: goto tr332;
case 116: goto tr333;
case 117: goto tr334;
case 123: goto tr335;
}
goto tr319;
tr321:
#line 1 "NONE"
{( sm->te) = ( sm->p)+1;}
#line 613 "ext/dtext/dtext.rl"
{( sm->act) = 43;}
goto st261;
tr337:
#line 1 "NONE"
{( sm->te) = ( sm->p)+1;}
#line 597 "ext/dtext/dtext.rl"
{( sm->act) = 42;}
goto st261;
st261:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof261;
case 261:
#line 2558 "ext/dtext/dtext.c"
switch( (*( sm->p)) ) {
case 10: goto tr337;
case 13: goto tr337;
}
goto tr336;
st262:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof262;
case 262:
switch( (*( sm->p)) ) {
case 10: goto tr337;
case 13: goto tr337;
}
goto tr338;
tr323:
#line 1 "NONE"
{( sm->te) = ( sm->p)+1;}
goto st263;
st263:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof263;
case 263:
#line 2581 "ext/dtext/dtext.c"
if ( (*( sm->p)) == 34 )
goto tr339;
goto tr340;
tr340:
#line 87 "ext/dtext/dtext.rl"
{
sm->a1 = sm->p;
}
goto st49;
st49:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof49;
case 49:
#line 2595 "ext/dtext/dtext.c"
if ( (*( sm->p)) == 34 )
goto tr58;
goto st49;
tr58:
#line 91 "ext/dtext/dtext.rl"
{
sm->a2 = sm->p;
}
goto st50;
st50:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof50;
case 50:
#line 2609 "ext/dtext/dtext.c"
if ( (*( sm->p)) == 58 )
goto st51;
goto tr56;
st51:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof51;
case 51:
switch( (*( sm->p)) ) {
case 47: goto tr60;
case 91: goto st53;
case 104: goto tr62;
}
goto tr56;
tr60:
#line 95 "ext/dtext/dtext.rl"
{
sm->b1 = sm->p;
}
goto st52;
st52:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof52;
case 52:
#line 2633 "ext/dtext/dtext.c"
if ( 33 <= (*( sm->p)) && (*( sm->p)) <= 126 )
goto st264;
goto tr56;
st264:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof264;
case 264:
if ( 33 <= (*( sm->p)) && (*( sm->p)) <= 126 )
goto st264;
goto tr341;
st53:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof53;
case 53:
switch( (*( sm->p)) ) {
case 47: goto tr64;
case 104: goto tr65;
}
goto tr56;
tr64:
#line 95 "ext/dtext/dtext.rl"
{
sm->b1 = sm->p;
}
goto st54;
st54:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof54;
case 54:
#line 2663 "ext/dtext/dtext.c"
if ( 33 <= (*( sm->p)) && (*( sm->p)) <= 126 )
goto st55;
goto tr56;
st55:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof55;
case 55:
if ( (*( sm->p)) == 93 )
goto tr67;
if ( 33 <= (*( sm->p)) && (*( sm->p)) <= 126 )
goto st55;
goto tr56;
tr65:
#line 95 "ext/dtext/dtext.rl"
{
sm->b1 = sm->p;
}
goto st56;
st56:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof56;
case 56:
#line 2686 "ext/dtext/dtext.c"
if ( (*( sm->p)) == 116 )
goto st57;
goto tr56;
st57:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof57;
case 57:
if ( (*( sm->p)) == 116 )
goto st58;
goto tr56;
st58:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof58;
case 58:
if ( (*( sm->p)) == 112 )
goto st59;
goto tr56;
st59:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof59;
case 59:
switch( (*( sm->p)) ) {
case 58: goto st60;
case 115: goto st62;
}
goto tr56;
st60:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof60;
case 60:
if ( (*( sm->p)) == 47 )
goto st61;
goto tr56;
st61:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof61;
case 61:
if ( (*( sm->p)) == 47 )
goto st54;
goto tr56;
st62:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof62;
case 62:
if ( (*( sm->p)) == 58 )
goto st60;
goto tr56;
tr62:
#line 95 "ext/dtext/dtext.rl"
{
sm->b1 = sm->p;
}
goto st63;
st63:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof63;
case 63:
#line 2744 "ext/dtext/dtext.c"
if ( (*( sm->p)) == 116 )
goto st64;
goto tr56;
st64:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof64;
case 64:
if ( (*( sm->p)) == 116 )
goto st65;
goto tr56;
st65:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof65;
case 65:
if ( (*( sm->p)) == 112 )
goto st66;
goto tr56;
st66:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof66;
case 66:
switch( (*( sm->p)) ) {
case 58: goto st67;
case 115: goto st69;
}
goto tr56;
st67:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof67;
case 67:
if ( (*( sm->p)) == 47 )
goto st68;
goto tr56;
st68:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof68;
case 68:
if ( (*( sm->p)) == 47 )
goto st52;
goto tr56;
st69:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof69;
case 69:
if ( (*( sm->p)) == 58 )
goto st67;
goto tr56;
tr324:
#line 1 "NONE"
{( sm->te) = ( sm->p)+1;}
#line 87 "ext/dtext/dtext.rl"
{
sm->a1 = sm->p;
}
goto st265;
st265:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof265;
case 265:
#line 2804 "ext/dtext/dtext.c"
switch( (*( sm->p)) ) {
case 9: goto tr84;
case 32: goto tr84;
case 42: goto st71;
}
goto tr339;
tr84:
#line 91 "ext/dtext/dtext.rl"
{
sm->a2 = sm->p;
}
goto st70;
st70:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof70;
case 70:
#line 2821 "ext/dtext/dtext.c"
switch( (*( sm->p)) ) {
case 0: goto tr56;
case 9: goto tr83;
case 10: goto tr56;
case 13: goto tr56;
case 32: goto tr83;
}
goto tr82;
tr82:
#line 95 "ext/dtext/dtext.rl"
{
sm->b1 = sm->p;
}
goto st266;
st266:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof266;
case 266:
#line 2840 "ext/dtext/dtext.c"
switch( (*( sm->p)) ) {
case 0: goto tr342;
case 10: goto tr342;
case 13: goto tr342;
}
goto st266;
tr83:
#line 95 "ext/dtext/dtext.rl"
{
sm->b1 = sm->p;
}
goto st267;
st267:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof267;
case 267:
#line 2857 "ext/dtext/dtext.c"
switch( (*( sm->p)) ) {
case 0: goto tr342;
case 9: goto tr83;
case 10: goto tr342;
case 13: goto tr342;
case 32: goto tr83;
}
goto tr82;
st71:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof71;
case 71:
switch( (*( sm->p)) ) {
case 9: goto tr84;
case 32: goto tr84;
case 42: goto st71;
}
goto tr56;
st268:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof268;
case 268:
if ( 33 <= (*( sm->p)) && (*( sm->p)) <= 126 )
goto tr344;
goto tr339;
tr344:
#line 87 "ext/dtext/dtext.rl"
{
sm->a1 = sm->p;
}
goto st269;
st269:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof269;
case 269:
#line 2893 "ext/dtext/dtext.c"
if ( (*( sm->p)) == 64 )
goto tr347;
if ( 33 <= (*( sm->p)) && (*( sm->p)) <= 126 )
goto tr346;
goto tr345;
tr346:
#line 1 "NONE"
{( sm->te) = ( sm->p)+1;}
#line 353 "ext/dtext/dtext.rl"
{( sm->act) = 19;}
goto st270;
tr347:
#line 1 "NONE"
{( sm->te) = ( sm->p)+1;}
#line 349 "ext/dtext/dtext.rl"
{( sm->act) = 18;}
goto st270;
st270:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof270;
case 270:
#line 2915 "ext/dtext/dtext.c"
if ( 33 <= (*( sm->p)) && (*( sm->p)) <= 126 )
goto tr346;
goto tr348;
tr326:
#line 1 "NONE"
{( sm->te) = ( sm->p)+1;}
goto st271;
st271:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof271;
case 271:
#line 2927 "ext/dtext/dtext.c"
switch( (*( sm->p)) ) {
case 47: goto st72;
case 91: goto st98;
case 98: goto st104;
case 101: goto st105;
case 105: goto st111;
case 110: goto st112;
case 113: goto st119;
case 115: goto st124;
case 116: goto st131;
case 117: goto st133;
}
goto tr339;
st72:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof72;
case 72:
switch( (*( sm->p)) ) {
case 98: goto st73;
case 101: goto st74;
case 105: goto st80;
case 113: goto st81;
case 115: goto st86;
case 116: goto st93;
case 117: goto st97;
}
goto tr56;
st73:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof73;
case 73:
if ( (*( sm->p)) == 93 )
goto tr93;
goto tr56;
st74:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof74;
case 74:
if ( (*( sm->p)) == 120 )
goto st75;
goto tr56;
st75:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof75;
case 75:
if ( (*( sm->p)) == 112 )
goto st76;
goto tr56;
st76:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof76;
case 76:
if ( (*( sm->p)) == 97 )
goto st77;
goto tr56;
st77:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof77;
case 77:
if ( (*( sm->p)) == 110 )
goto st78;
goto tr56;
st78:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof78;
case 78:
if ( (*( sm->p)) == 100 )
goto st79;
goto tr56;
st79:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof79;
case 79:
if ( (*( sm->p)) == 93 )
goto tr99;
goto tr56;
st80:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof80;
case 80:
if ( (*( sm->p)) == 93 )
goto tr100;
goto tr56;
st81:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof81;
case 81:
if ( (*( sm->p)) == 117 )
goto st82;
goto tr56;
st82:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof82;
case 82:
if ( (*( sm->p)) == 111 )
goto st83;
goto tr56;
st83:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof83;
case 83:
if ( (*( sm->p)) == 116 )
goto st84;
goto tr56;
st84:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof84;
case 84:
if ( (*( sm->p)) == 101 )
goto st85;
goto tr56;
st85:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof85;
case 85:
if ( (*( sm->p)) == 93 )
goto st272;
goto tr56;
st272:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof272;
case 272:
if ( (*( sm->p)) == 32 )
goto st272;
if ( 9 <= (*( sm->p)) && (*( sm->p)) <= 13 )
goto st272;
goto tr359;
st86:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof86;
case 86:
switch( (*( sm->p)) ) {
case 93: goto tr106;
case 112: goto st87;
}
goto tr56;
st87:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof87;
case 87:
if ( (*( sm->p)) == 111 )
goto st88;
goto tr56;
st88:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof88;
case 88:
if ( (*( sm->p)) == 105 )
goto st89;
goto tr56;
st89:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof89;
case 89:
if ( (*( sm->p)) == 108 )
goto st90;
goto tr56;
st90:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof90;
case 90:
if ( (*( sm->p)) == 101 )
goto st91;
goto tr56;
st91:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof91;
case 91:
if ( (*( sm->p)) == 114 )
goto st92;
goto tr56;
st92:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof92;
case 92:
if ( (*( sm->p)) == 93 )
goto tr113;
goto tr56;
st93:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof93;
case 93:
switch( (*( sm->p)) ) {
case 100: goto st94;
case 104: goto st95;
case 110: goto st96;
}
goto tr56;
st94:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof94;
case 94:
if ( (*( sm->p)) == 93 )
goto tr117;
goto tr56;
st95:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof95;
case 95:
if ( (*( sm->p)) == 93 )
goto tr118;
goto tr56;
st96:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof96;
case 96:
if ( (*( sm->p)) == 93 )
goto tr119;
goto tr56;
st97:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof97;
case 97:
if ( (*( sm->p)) == 93 )
goto tr120;
goto tr56;
st98:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof98;
case 98:
switch( (*( sm->p)) ) {
case 93: goto tr56;
case 124: goto tr56;
}
goto tr121;
tr121:
#line 87 "ext/dtext/dtext.rl"
{
sm->a1 = sm->p;
}
goto st99;
st99:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof99;
case 99:
#line 3163 "ext/dtext/dtext.c"
switch( (*( sm->p)) ) {
case 93: goto tr123;
case 124: goto tr124;
}
goto st99;
tr123:
#line 91 "ext/dtext/dtext.rl"
{
sm->a2 = sm->p;
}
goto st100;
st100:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof100;
case 100:
#line 3179 "ext/dtext/dtext.c"
if ( (*( sm->p)) == 93 )
goto tr125;
goto tr56;
tr124:
#line 91 "ext/dtext/dtext.rl"
{
sm->a2 = sm->p;
}
goto st101;
st101:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof101;
case 101:
#line 3193 "ext/dtext/dtext.c"
if ( (*( sm->p)) == 93 )
goto tr56;
goto tr126;
tr126:
#line 95 "ext/dtext/dtext.rl"
{
sm->b1 = sm->p;
}
goto st102;
st102:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof102;
case 102:
#line 3207 "ext/dtext/dtext.c"
if ( (*( sm->p)) == 93 )
goto tr128;
goto st102;
tr128:
#line 99 "ext/dtext/dtext.rl"
{
sm->b2 = sm->p;
}
goto st103;
st103:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof103;
case 103:
#line 3221 "ext/dtext/dtext.c"
if ( (*( sm->p)) == 93 )
goto tr129;
goto tr56;
st104:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof104;
case 104:
if ( (*( sm->p)) == 93 )
goto tr130;
goto tr56;
st105:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof105;
case 105:
if ( (*( sm->p)) == 120 )
goto st106;
goto tr56;
st106:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof106;
case 106:
if ( (*( sm->p)) == 112 )
goto st107;
goto tr56;
st107:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof107;
case 107:
if ( (*( sm->p)) == 97 )
goto st108;
goto tr56;
st108:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof108;
case 108:
if ( (*( sm->p)) == 110 )
goto st109;
goto tr56;
st109:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof109;
case 109:
if ( (*( sm->p)) == 100 )
goto st110;
goto tr56;
st110:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof110;
case 110:
if ( (*( sm->p)) == 93 )
goto tr136;
goto tr56;
st111:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof111;
case 111:
if ( (*( sm->p)) == 93 )
goto tr137;
goto tr56;
st112:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof112;
case 112:
if ( (*( sm->p)) == 111 )
goto st113;
goto tr56;
st113:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof113;
case 113:
if ( (*( sm->p)) == 100 )
goto st114;
goto tr56;
st114:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof114;
case 114:
if ( (*( sm->p)) == 116 )
goto st115;
goto tr56;
st115:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof115;
case 115:
if ( (*( sm->p)) == 101 )
goto st116;
goto tr56;
st116:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof116;
case 116:
if ( (*( sm->p)) == 120 )
goto st117;
goto tr56;
st117:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof117;
case 117:
if ( (*( sm->p)) == 116 )
goto st118;
goto tr56;
st118:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof118;
case 118:
if ( (*( sm->p)) == 93 )
goto tr144;
goto tr56;
st119:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof119;
case 119:
if ( (*( sm->p)) == 117 )
goto st120;
goto tr56;
st120:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof120;
case 120:
if ( (*( sm->p)) == 111 )
goto st121;
goto tr56;
st121:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof121;
case 121:
if ( (*( sm->p)) == 116 )
goto st122;
goto tr56;
st122:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof122;
case 122:
if ( (*( sm->p)) == 101 )
goto st123;
goto tr56;
st123:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof123;
case 123:
if ( (*( sm->p)) == 93 )
goto tr149;
goto tr56;
st124:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof124;
case 124:
switch( (*( sm->p)) ) {
case 93: goto tr150;
case 112: goto st125;
}
goto tr56;
st125:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof125;
case 125:
if ( (*( sm->p)) == 111 )
goto st126;
goto tr56;
st126:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof126;
case 126:
if ( (*( sm->p)) == 105 )
goto st127;
goto tr56;
st127:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof127;
case 127:
if ( (*( sm->p)) == 108 )
goto st128;
goto tr56;
st128:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof128;
case 128:
if ( (*( sm->p)) == 101 )
goto st129;
goto tr56;
st129:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof129;
case 129:
if ( (*( sm->p)) == 114 )
goto st130;
goto tr56;
st130:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof130;
case 130:
if ( (*( sm->p)) == 93 )
goto tr157;
goto tr56;
st131:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof131;
case 131:
if ( (*( sm->p)) == 110 )
goto st132;
goto tr56;
st132:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof132;
case 132:
if ( (*( sm->p)) == 93 )
goto tr159;
goto tr56;
st133:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof133;
case 133:
if ( (*( sm->p)) == 93 )
goto tr160;
goto tr56;
tr327:
#line 1 "NONE"
{( sm->te) = ( sm->p)+1;}
goto st273;
st273:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof273;
case 273:
#line 3445 "ext/dtext/dtext.c"
if ( (*( sm->p)) == 114 )
goto st134;
goto tr339;
st134:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof134;
case 134:
if ( (*( sm->p)) == 116 )
goto st135;
goto tr56;
st135:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof135;
case 135:
if ( (*( sm->p)) == 105 )
goto st136;
goto tr56;
st136:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof136;
case 136:
if ( (*( sm->p)) == 115 )
goto st137;
goto tr56;
st137:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof137;
case 137:
if ( (*( sm->p)) == 116 )
goto st138;
goto tr56;
st138:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof138;
case 138:
if ( (*( sm->p)) == 32 )
goto st139;
goto tr56;
st139:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof139;
case 139:
if ( (*( sm->p)) == 35 )
goto st140;
goto tr56;
st140:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof140;
case 140:
if ( 48 <= (*( sm->p)) && (*( sm->p)) <= 57 )
goto tr167;
goto tr56;
tr167:
#line 87 "ext/dtext/dtext.rl"
{
sm->a1 = sm->p;
}
goto st274;
st274:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof274;
case 274:
#line 3508 "ext/dtext/dtext.c"
if ( 48 <= (*( sm->p)) && (*( sm->p)) <= 57 )
goto st274;
goto tr361;
tr328:
#line 1 "NONE"
{( sm->te) = ( sm->p)+1;}
goto st275;
st275:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof275;
case 275:
#line 3520 "ext/dtext/dtext.c"
if ( (*( sm->p)) == 111 )
goto st141;
goto tr339;
st141:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof141;
case 141:
if ( (*( sm->p)) == 109 )
goto st142;
goto tr56;
st142:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof142;
case 142:
if ( (*( sm->p)) == 109 )
goto st143;
goto tr56;
st143:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof143;
case 143:
if ( (*( sm->p)) == 101 )
goto st144;
goto tr56;
st144:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof144;
case 144:
if ( (*( sm->p)) == 110 )
goto st145;
goto tr56;
st145:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof145;
case 145:
if ( (*( sm->p)) == 116 )
goto st146;
goto tr56;
st146:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof146;
case 146:
if ( (*( sm->p)) == 32 )
goto st147;
goto tr56;
st147:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof147;
case 147:
if ( (*( sm->p)) == 35 )
goto st148;
goto tr56;
st148:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof148;
case 148:
if ( 48 <= (*( sm->p)) && (*( sm->p)) <= 57 )
goto tr175;
goto tr56;
tr175:
#line 87 "ext/dtext/dtext.rl"
{
sm->a1 = sm->p;
}
goto st276;
st276:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof276;
case 276:
#line 3590 "ext/dtext/dtext.c"
if ( 48 <= (*( sm->p)) && (*( sm->p)) <= 57 )
goto st276;
goto tr364;
tr329:
#line 1 "NONE"
{( sm->te) = ( sm->p)+1;}
goto st277;
st277:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof277;
case 277:
#line 3602 "ext/dtext/dtext.c"
if ( (*( sm->p)) == 111 )
goto st149;
goto tr339;
st149:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof149;
case 149:
if ( (*( sm->p)) == 114 )
goto st150;
goto tr56;
st150:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof150;
case 150:
if ( (*( sm->p)) == 117 )
goto st151;
goto tr56;
st151:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof151;
case 151:
if ( (*( sm->p)) == 109 )
goto st152;
goto tr56;
st152:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof152;
case 152:
if ( (*( sm->p)) == 32 )
goto st153;
goto tr56;
st153:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof153;
case 153:
if ( (*( sm->p)) == 35 )
goto st154;
goto tr56;
st154:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof154;
case 154:
if ( 48 <= (*( sm->p)) && (*( sm->p)) <= 57 )
goto tr181;
goto tr56;
tr181:
#line 87 "ext/dtext/dtext.rl"
{
sm->a1 = sm->p;
}
goto st278;
st278:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof278;
case 278:
#line 3658 "ext/dtext/dtext.c"
if ( 48 <= (*( sm->p)) && (*( sm->p)) <= 57 )
goto st278;
goto tr367;
tr330:
#line 1 "NONE"
{( sm->te) = ( sm->p)+1;}
goto st279;
st279:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof279;
case 279:
#line 3670 "ext/dtext/dtext.c"
if ( (*( sm->p)) == 116 )
goto st157;
if ( 49 <= (*( sm->p)) && (*( sm->p)) <= 54 )
goto tr369;
goto tr339;
tr369:
#line 87 "ext/dtext/dtext.rl"
{
sm->a1 = sm->p;
}
goto st155;
st155:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof155;
case 155:
#line 3686 "ext/dtext/dtext.c"
if ( (*( sm->p)) == 46 )
goto tr182;
goto tr56;
tr182:
#line 91 "ext/dtext/dtext.rl"
{
sm->a2 = sm->p;
}
goto st156;
st156:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof156;
case 156:
#line 3700 "ext/dtext/dtext.c"
switch( (*( sm->p)) ) {
case 0: goto tr56;
case 9: goto tr184;
case 10: goto tr56;
case 13: goto tr56;
case 32: goto tr184;
}
goto tr183;
tr183:
#line 95 "ext/dtext/dtext.rl"
{
sm->b1 = sm->p;
}
goto st280;
st280:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof280;
case 280:
#line 3719 "ext/dtext/dtext.c"
switch( (*( sm->p)) ) {
case 0: goto tr371;
case 10: goto tr371;
case 13: goto tr371;
}
goto st280;
tr184:
#line 95 "ext/dtext/dtext.rl"
{
sm->b1 = sm->p;
}
goto st281;
st281:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof281;
case 281:
#line 3736 "ext/dtext/dtext.c"
switch( (*( sm->p)) ) {
case 0: goto tr371;
case 9: goto tr184;
case 10: goto tr371;
case 13: goto tr371;
case 32: goto tr184;
}
goto tr183;
st157:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof157;
case 157:
if ( (*( sm->p)) == 116 )
goto st158;
goto tr56;
st158:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof158;
case 158:
if ( (*( sm->p)) == 112 )
goto st159;
goto tr56;
st159:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof159;
case 159:
switch( (*( sm->p)) ) {
case 58: goto st160;
case 115: goto st163;
}
goto tr56;
st160:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof160;
case 160:
if ( (*( sm->p)) == 47 )
goto st161;
goto tr56;
st161:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof161;
case 161:
if ( (*( sm->p)) == 47 )
goto st162;
goto tr56;
st162:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof162;
case 162:
if ( 33 <= (*( sm->p)) && (*( sm->p)) <= 126 )
goto st282;
goto tr56;
st282:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof282;
case 282:
if ( 33 <= (*( sm->p)) && (*( sm->p)) <= 126 )
goto st282;
goto tr373;
st163:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof163;
case 163:
if ( (*( sm->p)) == 58 )
goto st160;
goto tr56;
tr331:
#line 1 "NONE"
{( sm->te) = ( sm->p)+1;}
goto st283;
st283:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof283;
case 283:
#line 3811 "ext/dtext/dtext.c"
if ( (*( sm->p)) == 115 )
goto st164;
goto tr339;
st164:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof164;
case 164:
if ( (*( sm->p)) == 115 )
goto st165;
goto tr56;
st165:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof165;
case 165:
if ( (*( sm->p)) == 117 )
goto st166;
goto tr56;
st166:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof166;
case 166:
if ( (*( sm->p)) == 101 )
goto st167;
goto tr56;
st167:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof167;
case 167:
if ( (*( sm->p)) == 32 )
goto st168;
goto tr56;
st168:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof168;
case 168:
if ( (*( sm->p)) == 35 )
goto st169;
goto tr56;
st169:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof169;
case 169:
if ( 48 <= (*( sm->p)) && (*( sm->p)) <= 57 )
goto tr197;
goto tr56;
tr197:
#line 87 "ext/dtext/dtext.rl"
{
sm->a1 = sm->p;
}
goto st284;
st284:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof284;
case 284:
#line 3867 "ext/dtext/dtext.c"
if ( 48 <= (*( sm->p)) && (*( sm->p)) <= 57 )
goto st284;
goto tr375;
tr332:
#line 1 "NONE"
{( sm->te) = ( sm->p)+1;}
goto st285;
st285:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof285;
case 285:
#line 3879 "ext/dtext/dtext.c"
switch( (*( sm->p)) ) {
case 105: goto st170;
case 111: goto st178;
}
goto tr339;
st170:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof170;
case 170:
if ( (*( sm->p)) == 120 )
goto st171;
goto tr56;
st171:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof171;
case 171:
if ( (*( sm->p)) == 105 )
goto st172;
goto tr56;
st172:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof172;
case 172:
if ( (*( sm->p)) == 118 )
goto st173;
goto tr56;
st173:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof173;
case 173:
if ( (*( sm->p)) == 32 )
goto st174;
goto tr56;
st174:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof174;
case 174:
if ( (*( sm->p)) == 35 )
goto st175;
goto tr56;
st175:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof175;
case 175:
if ( 48 <= (*( sm->p)) && (*( sm->p)) <= 57 )
goto tr203;
goto tr56;
tr203:
#line 1 "NONE"
{( sm->te) = ( sm->p)+1;}
#line 87 "ext/dtext/dtext.rl"
{
sm->a1 = sm->p;
}
goto st286;
tr381:
#line 1 "NONE"
{( sm->te) = ( sm->p)+1;}
goto st286;
st286:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof286;
case 286:
#line 3943 "ext/dtext/dtext.c"
if ( (*( sm->p)) == 47 )
goto tr380;
if ( 48 <= (*( sm->p)) && (*( sm->p)) <= 57 )
goto tr381;
goto tr379;
tr380:
#line 91 "ext/dtext/dtext.rl"
{
sm->a2 = sm->p;
}
goto st176;
st176:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof176;
case 176:
#line 3959 "ext/dtext/dtext.c"
if ( (*( sm->p)) == 112 )
goto st177;
goto tr204;
st177:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof177;
case 177:
if ( 48 <= (*( sm->p)) && (*( sm->p)) <= 57 )
goto tr206;
goto tr204;
tr206:
#line 95 "ext/dtext/dtext.rl"
{
sm->b1 = sm->p;
}
goto st287;
st287:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof287;
case 287:
#line 3980 "ext/dtext/dtext.c"
if ( 48 <= (*( sm->p)) && (*( sm->p)) <= 57 )
goto st287;
goto tr382;
st178:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof178;
case 178:
switch( (*( sm->p)) ) {
case 111: goto st179;
case 115: goto st183;
}
goto tr56;
st179:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof179;
case 179:
if ( (*( sm->p)) == 108 )
goto st180;
goto tr56;
st180:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof180;
case 180:
if ( (*( sm->p)) == 32 )
goto st181;
goto tr56;
st181:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof181;
case 181:
if ( (*( sm->p)) == 35 )
goto st182;
goto tr56;
st182:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof182;
case 182:
if ( 48 <= (*( sm->p)) && (*( sm->p)) <= 57 )
goto tr212;
goto tr56;
tr212:
#line 87 "ext/dtext/dtext.rl"
{
sm->a1 = sm->p;
}
goto st288;
st288:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof288;
case 288:
#line 4031 "ext/dtext/dtext.c"
if ( 48 <= (*( sm->p)) && (*( sm->p)) <= 57 )
goto st288;
goto tr384;
st183:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof183;
case 183:
if ( (*( sm->p)) == 116 )
goto st184;
goto tr56;
st184:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof184;
case 184:
if ( (*( sm->p)) == 32 )
goto st185;
goto tr56;
st185:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof185;
case 185:
if ( (*( sm->p)) == 35 )
goto st186;
goto tr56;
st186:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof186;
case 186:
if ( 48 <= (*( sm->p)) && (*( sm->p)) <= 57 )
goto tr216;
goto tr56;
tr216:
#line 87 "ext/dtext/dtext.rl"
{
sm->a1 = sm->p;
}
goto st289;
st289:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof289;
case 289:
#line 4073 "ext/dtext/dtext.c"
if ( 48 <= (*( sm->p)) && (*( sm->p)) <= 57 )
goto st289;
goto tr386;
tr333:
#line 1 "NONE"
{( sm->te) = ( sm->p)+1;}
goto st290;
st290:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof290;
case 290:
#line 4085 "ext/dtext/dtext.c"
if ( (*( sm->p)) == 111 )
goto st187;
goto tr339;
st187:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof187;
case 187:
if ( (*( sm->p)) == 112 )
goto st188;
goto tr56;
st188:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof188;
case 188:
if ( (*( sm->p)) == 105 )
goto st189;
goto tr56;
st189:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof189;
case 189:
if ( (*( sm->p)) == 99 )
goto st190;
goto tr56;
st190:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof190;
case 190:
if ( (*( sm->p)) == 32 )
goto st191;
goto tr56;
st191:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof191;
case 191:
if ( (*( sm->p)) == 35 )
goto st192;
goto tr56;
st192:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof192;
case 192:
if ( 48 <= (*( sm->p)) && (*( sm->p)) <= 57 )
goto tr222;
goto tr56;
tr222:
#line 1 "NONE"
{( sm->te) = ( sm->p)+1;}
#line 87 "ext/dtext/dtext.rl"
{
sm->a1 = sm->p;
}
goto st291;
tr391:
#line 1 "NONE"
{( sm->te) = ( sm->p)+1;}
goto st291;
st291:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof291;
case 291:
#line 4147 "ext/dtext/dtext.c"
if ( (*( sm->p)) == 47 )
goto tr390;
if ( 48 <= (*( sm->p)) && (*( sm->p)) <= 57 )
goto tr391;
goto tr389;
tr390:
#line 91 "ext/dtext/dtext.rl"
{
sm->a2 = sm->p;
}
goto st193;
st193:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof193;
case 193:
#line 4163 "ext/dtext/dtext.c"
if ( (*( sm->p)) == 112 )
goto st194;
goto tr223;
st194:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof194;
case 194:
if ( 48 <= (*( sm->p)) && (*( sm->p)) <= 57 )
goto tr225;
goto tr223;
tr225:
#line 95 "ext/dtext/dtext.rl"
{
sm->b1 = sm->p;
}
goto st292;
st292:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof292;
case 292:
#line 4184 "ext/dtext/dtext.c"
if ( 48 <= (*( sm->p)) && (*( sm->p)) <= 57 )
goto st292;
goto tr392;
tr334:
#line 1 "NONE"
{( sm->te) = ( sm->p)+1;}
goto st293;
st293:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof293;
case 293:
#line 4196 "ext/dtext/dtext.c"
if ( (*( sm->p)) == 115 )
goto st195;
goto tr339;
st195:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof195;
case 195:
if ( (*( sm->p)) == 101 )
goto st196;
goto tr56;
st196:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof196;
case 196:
if ( (*( sm->p)) == 114 )
goto st197;
goto tr56;
st197:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof197;
case 197:
if ( (*( sm->p)) == 32 )
goto st198;
goto tr56;
st198:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof198;
case 198:
if ( (*( sm->p)) == 35 )
goto st199;
goto tr56;
st199:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof199;
case 199:
if ( 48 <= (*( sm->p)) && (*( sm->p)) <= 57 )
goto tr230;
goto tr56;
tr230:
#line 87 "ext/dtext/dtext.rl"
{
sm->a1 = sm->p;
}
goto st294;
st294:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof294;
case 294:
#line 4245 "ext/dtext/dtext.c"
if ( 48 <= (*( sm->p)) && (*( sm->p)) <= 57 )
goto st294;
goto tr395;
tr335:
#line 1 "NONE"
{( sm->te) = ( sm->p)+1;}
goto st295;
st295:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof295;
case 295:
#line 4257 "ext/dtext/dtext.c"
if ( (*( sm->p)) == 123 )
goto st200;
goto tr339;
st200:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof200;
case 200:
if ( (*( sm->p)) == 125 )
goto tr56;
goto tr231;
tr231:
#line 87 "ext/dtext/dtext.rl"
{
sm->a1 = sm->p;
}
goto st201;
st201:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof201;
case 201:
#line 4278 "ext/dtext/dtext.c"
if ( (*( sm->p)) == 125 )
goto tr233;
goto st201;
tr233:
#line 91 "ext/dtext/dtext.rl"
{
sm->a2 = sm->p;
}
goto st202;
st202:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof202;
case 202:
#line 4292 "ext/dtext/dtext.c"
if ( (*( sm->p)) == 125 )
goto tr234;
goto tr56;
tr235:
#line 645 "ext/dtext/dtext.rl"
{{( sm->p) = ((( sm->te)))-1;}{
append_c_html_escaped(sm, (*( sm->p)));
}}
goto st296;
tr240:
#line 631 "ext/dtext/dtext.rl"
{( sm->te) = ( sm->p)+1;{
if (dstack_check(sm, BLOCK_CODE)) {
dstack_rewind(sm);
} else {
append(sm, true, "[/code]");
}
{ sm->cs = ( ((int *)sm->stack->data))[--( sm->top)];goto _again;}
}}
goto st296;
tr398:
#line 645 "ext/dtext/dtext.rl"
{( sm->te) = ( sm->p)+1;{
append_c_html_escaped(sm, (*( sm->p)));
}}
goto st296;
tr399:
#line 640 "ext/dtext/dtext.rl"
{( sm->te) = ( sm->p)+1;{
( sm->p)--;
{ sm->cs = ( ((int *)sm->stack->data))[--( sm->top)];goto _again;}
}}
goto st296;
tr401:
#line 645 "ext/dtext/dtext.rl"
{( sm->te) = ( sm->p);( sm->p)--;{
append_c_html_escaped(sm, (*( sm->p)));
}}
goto st296;
st296:
#line 1 "NONE"
{( sm->ts) = 0;}
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof296;
case 296:
#line 1 "NONE"
{( sm->ts) = ( sm->p);}
#line 4340 "ext/dtext/dtext.c"
switch( (*( sm->p)) ) {
case 0: goto tr399;
case 91: goto tr400;
}
goto tr398;
tr400:
#line 1 "NONE"
{( sm->te) = ( sm->p)+1;}
goto st297;
st297:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof297;
case 297:
#line 4354 "ext/dtext/dtext.c"
if ( (*( sm->p)) == 47 )
goto st203;
goto tr401;
st203:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof203;
case 203:
if ( (*( sm->p)) == 99 )
goto st204;
goto tr235;
st204:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof204;
case 204:
if ( (*( sm->p)) == 111 )
goto st205;
goto tr235;
st205:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof205;
case 205:
if ( (*( sm->p)) == 100 )
goto st206;
goto tr235;
st206:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof206;
case 206:
if ( (*( sm->p)) == 101 )
goto st207;
goto tr235;
st207:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof207;
case 207:
if ( (*( sm->p)) == 93 )
goto tr240;
goto tr235;
tr241:
#line 672 "ext/dtext/dtext.rl"
{{( sm->p) = ((( sm->te)))-1;}{
append_c_html_escaped(sm, (*( sm->p)));
}}
goto st298;
tr249:
#line 651 "ext/dtext/dtext.rl"
{( sm->te) = ( sm->p)+1;{
if (dstack_check(sm, BLOCK_NODTEXT)) {
dstack_pop(sm);
append_newline(sm);
append_closing_p(sm);
append_newline(sm);
append_newline(sm);
{ sm->cs = ( ((int *)sm->stack->data))[--( sm->top)];goto _again;}
} else if (dstack_check(sm, INLINE_NODTEXT)) {
dstack_pop(sm);
{ sm->cs = ( ((int *)sm->stack->data))[--( sm->top)];goto _again;}
} else {
append(sm, true, "[/nodtext]");
}
}}
goto st298;
tr403:
#line 672 "ext/dtext/dtext.rl"
{( sm->te) = ( sm->p)+1;{
append_c_html_escaped(sm, (*( sm->p)));
}}
goto st298;
tr404:
#line 667 "ext/dtext/dtext.rl"
{( sm->te) = ( sm->p)+1;{
( sm->p)--;
{ sm->cs = ( ((int *)sm->stack->data))[--( sm->top)];goto _again;}
}}
goto st298;
tr406:
#line 672 "ext/dtext/dtext.rl"
{( sm->te) = ( sm->p);( sm->p)--;{
append_c_html_escaped(sm, (*( sm->p)));
}}
goto st298;
st298:
#line 1 "NONE"
{( sm->ts) = 0;}
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof298;
case 298:
#line 1 "NONE"
{( sm->ts) = ( sm->p);}
#line 4444 "ext/dtext/dtext.c"
switch( (*( sm->p)) ) {
case 0: goto tr404;
case 91: goto tr405;
}
goto tr403;
tr405:
#line 1 "NONE"
{( sm->te) = ( sm->p)+1;}
goto st299;
st299:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof299;
case 299:
#line 4458 "ext/dtext/dtext.c"
if ( (*( sm->p)) == 47 )
goto st208;
goto tr406;
st208:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof208;
case 208:
if ( (*( sm->p)) == 110 )
goto st209;
goto tr241;
st209:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof209;
case 209:
if ( (*( sm->p)) == 111 )
goto st210;
goto tr241;
st210:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof210;
case 210:
if ( (*( sm->p)) == 100 )
goto st211;
goto tr241;
st211:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof211;
case 211:
if ( (*( sm->p)) == 116 )
goto st212;
goto tr241;
st212:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof212;
case 212:
if ( (*( sm->p)) == 101 )
goto st213;
goto tr241;
st213:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof213;
case 213:
if ( (*( sm->p)) == 120 )
goto st214;
goto tr241;
st214:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof214;
case 214:
if ( (*( sm->p)) == 116 )
goto st215;
goto tr241;
st215:
if ( ++( sm->p) == ( sm->pe) )
goto _test_eof215;
case 215:
if ( (*( sm->p)) == 93 )
goto tr249;
goto tr241;
tr250:
#line 766 "ext/dtext/dtext.rl"
{{( sm->p) = ((( sm->te)))-1;}}
goto st300;
tr259:
#line 748 "ext/dtext/dtext.rl"
{( sm->te) = ( sm->p)+1;{
if (dstack_check(sm, BLOCK_TABLE)) {
dstack_pop(sm);
append_newline(sm);
append_block(sm, "
");
append_newline(sm);
append_newline(sm);
{ sm->cs = ( ((int *)sm->stack->data))[--( sm->top)];goto _again;}
} else {
append(sm, true, "[/table]");
}
}}
goto st300;
tr263:
#line 703 "ext/dtext/dtext.rl"
{( sm->te) = ( sm->p)+1;{
if (dstack_check(sm, BLOCK_TBODY)) {
dstack_pop(sm);
append_newline(sm);
append_block(sm, "");
append_newline(sm);
} else {
append(sm, true, "[/tbody]");
}
}}
goto st300;
tr267:
#line 685 "ext/dtext/dtext.rl"
{( sm->te) = ( sm->p)+1;{
if (dstack_check(sm, BLOCK_THEAD)) {
dstack_pop(sm);
append_newline(sm);
append_block(sm, "");
append_newline(sm);
} else {
append(sm, true, "[/thead]");
}
}}
goto st300;
tr268:
#line 729 "ext/dtext/dtext.rl"
{( sm->te) = ( sm->p)+1;{
if (dstack_check(sm, BLOCK_TR)) {
dstack_pop(sm);
append_newline(sm);
append_block(sm, "");
append_newline(sm);
} else {
append(sm, true, "[/tr]");
}
}}
goto st300;
tr276:
#line 696 "ext/dtext/dtext.rl"
{( sm->te) = ( sm->p)+1;{
dstack_push(sm, &BLOCK_TBODY);
append_newline(sm);
append_block(sm, "