Displaying 1 result from an estimated 1 matches for "s_cspn".
Did you mean:
s_cpu
2007 Mar 24
3
Patch for superredcloth to enable textile table headers
...========================================================
--- ext/superredcloth_scan/superredcloth_common.rl (revision 163)
+++ ext/superredcloth_scan/superredcloth_common.rl (working copy)
@@ -29,10 +29,12 @@
C_STYL = ( "{" [^}]+ >A %{ STORE(style) } "}" ) ;
S_CSPN = ( "\\" [0-9]+ >A %{ STORE(colspan) } ) ;
S_RSPN = ( "/" [0-9]+ >A %{ STORE(rowspan) } ) ;
+ D_HEADER = "_" %{ ASET(th, true) } ;
A = ( ( A_HLGN | A_VLGN )* ) ;
A2 = ( A_LIMIT? ) ;
S = ( S_CSPN | S_RSPN )* ;
C = ( C_CLAS | C_STYL | C_LNGE )*...