I came across another problematic table.  Seem to me the AsciiDoc parser
interpret zero as empty in the table cells.  This table:

.Look Up Table
[width="50%",cols="6*^",options="header"]
|====================================
|Bit 4|Bit 3|Bit 2|Bit 1|Bit 0|Output
|0|0|0|0|0|0
|0|0|0|0|1|1
|0|0|0|1|0|0
|0|0|0|1|1|1
|====================================

it is 'translated' into this table:

.Look Up Table
[width="50%", cols="6*^", options="header"]
|====================================
|Bit 4|Bit 3|Bit 2|Bit 1|Bit 0|Output
|||||||||||1|1
||||1||||||1|1|1
|====================================

As you can see, not quite what was intended.  I tried to add space in
front of the 0 elements, but it did not make a difference.  Is it the
perl evaluation of 'false' that messes things up?

-- 
Happy hacking
Petter Reinholdtsen

Reply via email to