Last active
January 16, 2018 01:30
-
-
Save n3fariox/c8b3ef2e23d81479c8bbce0db1276411 to your computer and use it in GitHub Desktop.
HTML Test File with a Tiny Column
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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