demydd / pandoc

Automatically exported from code.google.com/p/pandoc
0 stars 0 forks source link

Reading simple HTML tables #106

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
It would be nice if pandoc could read simple html tables like this

<table>
<tr>
  <td>Head 1</td>
  <td>Head 2</td>
  <td>Head 3</td>
</tr>
<tr>
  <td>Data 1</td>
  <td>Data 2</td>
  <td>Data 3</td>
</tr>
</table>

Of course html tables can be far more complicated. But for our current
demands here at ART+COM its ok to transform the above kind into

  Head 1  Head 2  Head 3
  ------- ------- -------
  Data 1  Data 2  Data 3

We have never coded anything in Haskell before but where able to create a
small patch which meets our demands.

Best regards,

                    Rodja
-- 
Rodja Trappe | Software Developement

ART+COM Technologies GmbH
Kleiststr. 23-26 | 10787 Berlin | Germany
p: +49.30.21001-428 | f: +49.30.21001-556 | m: +49.179.9225767
w: http://tech.artcom.de/

Trade Register 107973B | County Court Charlottenburg
CEO: Pavel Mayer
VAT-IdNr.: DE254751981

Original issue reported on code.google.com by rodja.tr...@googlemail.com on 10 Nov 2008 at 9:00

Attachments:

GoogleCodeExporter commented 8 years ago

Original comment by fiddloso...@gmail.com on 5 Dec 2009 at 8:04

GoogleCodeExporter commented 8 years ago

Original comment by fiddloso...@gmail.com on 5 Dec 2009 at 9:08

GoogleCodeExporter commented 8 years ago
Feature added in a5cbcdfe3a6e64bffe7bf95ee783f1abdfc207e7.

Original comment by fiddloso...@gmail.com on 15 Jan 2011 at 4:49