search for: trdef

Displaying 1 result from an estimated 1 matches for "trdef".

Did you mean: todef
2007 Mar 24
3
Patch for superredcloth to enable textile table headers
...scan.rl (working copy) @@ -37,9 +37,9 @@ # tables para = ( default+ ) -- CRLF ; btext = para ( CRLF{2} )? ; - tddef = ( S A C :> dotspace ) ; + tddef = ( S A C D :> dotspace ) ; td = ( tddef? btext >A %T :> "|" >{PASS(table, text, td);} ) >X ; - trdef = ( A C :> dotspace ) ; + trdef = ( A C D :> dotspace ) ; tr = ( trdef? "|" %{INLINE(table, tr_open);} td+ ) >X %{INLINE(table, tr_close);} ; trows = ( tr (CRLF >X tr)* ) ; tdef = ( "table" >X A C :> dotspace CRLF ) ; Index: ext/superredcloth_scan...