```
Table 1

default      right      right
-------     ------     ------
row 1       1,000,000         10
rr oo ww 2     10,000  1,000,000
```

If I convert Table 1 to HTML, it will be as narrow as possible.

```
Table 2

--------------------------------------
default               right      right
-------              ------     ------
row 1 line 1         1,000,000         10
row 1 ll ii nn ee 2

row 2 line 1            10,000  1,000,000
row 2 ll ii nn ee 2
--------------------------------------
```

If I convert Table 2 to HTML, Pandoc will include its width and the width of each column:

```
<table style="width:54%;">
  <colgroup>
    <col style="width: 29%" />
    <col style="width: 15%" />
    <col style="width: 9%" />
  </colgroup>
  ...
</table>
```

Why is that? And how is it possible to tell Pandoc to not include widths when converting tables such as Table 2 to HTML?

--
You received this message because you are subscribed to the Google Groups "pandoc-discuss" group.
To unsubscribe from this group and stop receiving emails from it, send an email to pandoc-discuss+unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org.
To view this discussion on the web visit https://groups.google.com/d/msgid/pandoc-discuss/9fab3376-8799-48c7-b325-bde333bf8efcn%40googlegroups.com.