Closed GoogleCodeExporter closed 9 years ago
Use "pandoc -f html -t html -R" and you will get the output you expect.
By default, in parsing html or latex, pandoc will ignore constructs that
don't correspond to standard markdown constructs (that includes tables,
since tables are a pandoc extension). If you specify -R/--parse-raw,
it will instead pass these through as raw html or latex.
Original comment by fiddloso...@gmail.com
on 23 Oct 2009 at 11:00
Ok. It's work with HTML output, but when I try to use "pandoc -f html -t odt -R
-o
2.odt" or "pandoc -f html -t rtf -s -o 1.rtf" I get digits without table.
Original comment by nushenk...@gmail.com
on 30 Oct 2009 at 4:24
Raw HTML doesn't make sense in RTF output, so the writer doesn't include it,
even if
you specify -R.
Sounds like you need a way to convert simple HTML tables to pandoc/markdown
tables,
which could then be converted to RTF or other formats. Someone posted a perl
script
that converts HTML tables to pandoc-markdown format in the discussion of this
issue:
might be useful to you.
http://code.google.com/p/pandoc/issues/detail?id=132
Original comment by fiddloso...@gmail.com
on 30 Oct 2009 at 7:35
Original issue reported on code.google.com by
nushenk...@gmail.com
on 23 Oct 2009 at 11:22