Created
January 11, 2012 23:44
-
-
Save daroczig/1597511 to your computer and use it in GitHub Desktop.
Pandoc strange output (https://github.com/jgm/pandoc/issues/374)
This file contains hidden or 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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> | |
<html xmlns="http://www.w3.org/1999/xhtml"> | |
<head> | |
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> | |
<meta name="generator" content="pandoc" /> | |
<title></title> | |
</head> | |
<body> | |
<p>List:</p> | |
<ul> | |
<li>x</li> | |
<li><p>y</p> | |
<table> | |
<thead> | |
<tr class="header"> | |
<th align="right">*<em>W</em></th> | |
<th align="left">* *<em>p</em></th> | |
<th align="left">*</th> | |
</tr> | |
</thead> | |
<tbody> | |
<tr class="odd"> | |
<td align="right">shapiro.test(x)</td> | |
<td align="left">0.93</td> | |
<td align="left">0.05</td> | |
</tr> | |
<tr class="even"> | |
<td align="right">lillie.test(x)</td> | |
<td align="left">0.17</td> | |
<td align="left">0.02</td> | |
</tr> | |
<tr class="odd"> | |
<td align="right">ad.test(x)</td> | |
<td align="left">0.71</td> | |
<td align="left">0.06</td> | |
</tr> | |
<tr class="even"> | |
<td align="right">pearson.test(x)</td> | |
<td align="left">11.50</td> | |
<td align="left">0.04</td> | |
</tr> | |
</tbody> | |
</table></li> | |
<li>xxx</li> | |
<li><p>yyy</p> | |
<table> | |
<thead> | |
<tr class="header"> | |
<th align="left"></th> | |
<th align="center"><strong>W</strong></th> | |
<th align="center"><strong>p</strong></th> | |
</tr> | |
</thead> | |
<tbody> | |
<tr class="odd"> | |
<td align="left">shapiro.test(x)</td> | |
<td align="center">0.93</td> | |
<td align="center">0.05</td> | |
</tr> | |
<tr class="even"> | |
<td align="left">lillie.test(x)</td> | |
<td align="center">0.17</td> | |
<td align="center">0.02</td> | |
</tr> | |
<tr class="odd"> | |
<td align="left">ad.test(x)</td> | |
<td align="center">0.71</td> | |
<td align="center">0.06</td> | |
</tr> | |
<tr class="even"> | |
<td align="left">pearson.test(x)</td> | |
<td align="center">11.50</td> | |
<td align="center">0.04</td> | |
</tr> | |
</tbody> | |
</table></li> | |
</ul> | |
</body> | |
</html> |
This file contains hidden or 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
* x | |
* y | |
**W** **p** | |
----------------- ------- ------- | |
shapiro.test(x) 0.93 0.05 | |
lillie.test(x) 0.17 0.02 | |
ad.test(x) 0.71 0.06 | |
pearson.test(x) 11.50 0.04 | |
----------------- ------- ------- |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment