instiki/vendor/plugins/maruku/tests/unittest/pending/empty_cells.md
Jacques Distler c427807274 Blahtex
Sync with latest Maruku.
Pave the way for Blahtex (PNG-based math) support (from Ari Stern).
   (no visible functionality, yet, but that will come)
2008-07-26 04:14:41 -05:00

1.2 KiB

Write a comment here *** Parameters: *** {} # params *** Markdown input: ***

1 2
A X
B X
*** Output of inspect ***
md_el(:document,[
md_el(:table,[
md_el(:head_cell,[],{},[]),
md_el(:head_cell,["1"],{},[]),
md_el(:head_cell,["2"],{},[]),
md_el(:cell,["A"],{},[]),
md_el(:cell,["X"],{},[]),
md_el(:cell,[],{},[]),
md_el(:cell,["B"],{},[]),
md_el(:cell,[],{},[]),
md_el(:cell,["X"],{},[])
],{:align=>[:left, :left, :left]},[])
],{},[])
*** Output of to_html ***
12
AX
BX
*** Output of to_latex *** \begin{tabular}{l|l|l} &1&2\\ \hline A&X&\\ B&&X\\ \end{tabular} *** Output of to_md *** 12AXBX *** Output of to_s *** 12AXBX *** EOF ***
OK!

*** Output of Markdown.pl ***

| | 1 | 2 | |----|----|----| | A | X | | | B | | X |

*** Output of Markdown.pl (parsed) ***

| | 1 | 2 | |----|----|----| | A | X | | | B | | X |