Skip to content

Instantly share code, notes, and snippets.

@n3fariox
Last active January 16, 2018 01:30
Show Gist options
  • Save n3fariox/c8b3ef2e23d81479c8bbce0db1276411 to your computer and use it in GitHub Desktop.
Save n3fariox/c8b3ef2e23d81479c8bbce0db1276411 to your computer and use it in GitHub Desktop.
HTML Test File with a Tiny Column
<table>
<colgroup>
<col width="95%">
<col width="5%">
</colgroup>
<tr>
<td>Question</td>
<td>Y/N?</td>
</tr>
<tr>
<td>Do you like to transpose documents?</td>
<td>Y</td>
</tr>
</table>
BEFORE FIX:
[Table [] [AlignDefault,AlignDefault] [0.95,0.5]
[[]
,[]]
[[[Plain [Str "Question"]]
,[Plain [Str "Y/N?"]]]
,[[Plain [Str "Do",Space,Str "you",Space,Str "like",Space,Str "to",Space,Str "transpose",Space,Str "documents?"]]
,[Plain [Str "N"]]]]]
AFTER FIX:
[Table [] [AlignDefault,AlignDefault] [0.95,5.0e-2]
[[]
,[]]
[[[Plain [Str "Question"]]
,[Plain [Str "Y/N?"]]]
,[[Plain [Str "Do",Space,Str "you",Space,Str "like",Space,Str "to",Space,Str "transpose",Space,Str "documents?"]]
,[Plain [Str "Y"]]]]]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment