Displaying 1 result from an estimated 1 matches for "dotspac".
Did you mean:
dotspace
2007 Mar 24
3
Patch for superredcloth to enable textile table headers
...===================================
--- ext/superredcloth_scan/superredcloth_scan.rl (revision 163)
+++ ext/superredcloth_scan/superredcloth_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,...