1<!DOCTYPE html> 2<html> 3 <head> 4 <meta charset="UTF-8"> 5 <title>Comparison Table (accuracy, performance and disk memory)</title> 6 <style>{{ template "styles" }}</style> 7 </head> 8 <body> 9 <table id="comparison"> 10 <thead> 11 <tr><th style="width: 24%">Language</th><th style="width: 8%">Memory</th><th style="width: 8%">Disk</th><th style="width: 8%">Performance (ms)</th><th colspan="6"style=" width: 52%">Accuracy</th></tr> 12 <tr><th/><th/><th/><th/><th>Graphemes</th><th>SoftBreaks</th><th>HardBreaks</th><th>Whitespaces</th><th>Words</th><th>Controls</th></tr> 13 </thead> 14 <tbody> 15 {{ template "rows" .Rows }} 16 </tbody> 17 </table> 18 <script type="text/javascript">{{ template "scripts" }}</script> 19 </body> 20</html> 21