├── .gitignore ├── CMakeLists.txt ├── README.md ├── README ├── CODESTYLE.md ├── CONTRIBUTING.md ├── LICENSE.md ├── LICENSE.txt ├── LOCALIZE.md ├── README.html ├── README.md ├── VERSION.md └── verhist.log ├── build ├── cmake │ ├── .gitignore │ ├── build-api.sh │ ├── build-bins.bat │ ├── build-me.bat │ ├── build-me.sh │ ├── cmake-clean.sh │ ├── cmake-clean.txt │ ├── pub-bins.bat │ ├── pub-bins.sh │ └── updexe.bat ├── emscripten │ ├── Makefile │ └── wrapper.js └── win64 │ ├── .gitignore │ ├── build-bins.bat │ ├── build-me.bat │ ├── cmake-clean.txt │ ├── pub-bins.bat │ └── updexe.bat ├── console ├── tab2space.c ├── test71.cxx └── tidy.c ├── documentation ├── .gitignore ├── DoxygenLayout.xml ├── README.md ├── build_docs.sh ├── doxygen.cfg ├── examples │ ├── example.1.c │ └── example_config.txt ├── pages │ ├── main_page.dox │ ├── page_building.dox │ ├── page_featured_options.dox │ ├── page_history.dox │ ├── page_license.dox │ ├── page_quickref.dox │ ├── page_tidy.dox │ ├── page_tidy_config.dox │ ├── page_tidy_quickstart.dox │ ├── page_tidy_scripting.dox │ ├── page_tidylib.dox │ └── page_todo.dox ├── quickref.include.xsl ├── quickref.xsl ├── style.css ├── tidy.cfg └── tidy1.xsl.in ├── experimental ├── TidyNodeIter.c ├── TidyNodeIter.h ├── httpio.c └── httpio.h ├── include ├── tidy.h ├── tidybuffio.h ├── tidyenum.h └── tidyplatform.h ├── localize ├── .gitignore ├── Gemfile ├── README.md ├── language_ll_cc.h.erb ├── poconvert.rb └── translations │ ├── language_en_gb.po │ ├── language_es.po │ ├── language_es_mx.po │ ├── language_zh_cn.po │ └── tidy.pot ├── src ├── access.c ├── access.h ├── alloc.c ├── attrask.c ├── attrdict.c ├── attrdict.h ├── attrget.c ├── attrs.c ├── attrs.h ├── buffio.c ├── charsets.c ├── charsets.h ├── clean.c ├── clean.h ├── config.c ├── config.h ├── entities.c ├── entities.h ├── fileio.c ├── fileio.h ├── forward.h ├── gdoc.c ├── gdoc.h ├── iconvtc.c ├── iconvtc.h ├── istack.c ├── language.c ├── language.h ├── language_en.h ├── language_en_gb.h ├── language_es.h ├── language_es_mx.h ├── language_zh_cn.h ├── lexer.c ├── lexer.h ├── mappedio.c ├── mappedio.h ├── message.c ├── message.h ├── parser.c ├── parser.h ├── pprint.c ├── pprint.h ├── sprtf.c ├── sprtf.h ├── streamio.c ├── streamio.h ├── tagask.c ├── tags.c ├── tags.h ├── tidy-int.h ├── tidylib.c ├── tmbstr.c ├── tmbstr.h ├── utf8.c ├── utf8.h ├── version.h ├── win32tc.c └── win32tc.h ├── test ├── .gitignore ├── README.md ├── accessTest │ ├── 1-1-1-1.html │ ├── 1-1-1-10.html │ ├── 1-1-1-2.html │ ├── 1-1-1-3.html │ ├── 1-1-1-4.html │ ├── 1-1-10-1.html │ ├── 1-1-12-1.html │ ├── 1-1-2-1.html │ ├── 1-1-2-2.html │ ├── 1-1-2-3.html │ ├── 1-1-3-1.html │ ├── 1-1-4-1.html │ ├── 1-1-5-1.html │ ├── 1-1-6-1.html │ ├── 1-1-6-2.html │ ├── 1-1-6-3.html │ ├── 1-1-6-4.html │ ├── 1-1-6-5.html │ ├── 1-1-6-6.html │ ├── 1-1-8-1.html │ ├── 1-1-9-1.html │ ├── 1-2-1-1.html │ ├── 1-4-1-1.html │ ├── 1-5-1-1.html │ ├── 10-1-1-1.html │ ├── 10-1-1-2.html │ ├── 11-2-1-1.html │ ├── 11-2-1-10.html │ ├── 11-2-1-2.html │ ├── 11-2-1-3.html │ ├── 11-2-1-4.html │ ├── 11-2-1-5.html │ ├── 11-2-1-6.html │ ├── 11-2-1-7.html │ ├── 11-2-1-8.html │ ├── 11-2-1-9.html │ ├── 12-1-1-1.html │ ├── 12-1-1-2.html │ ├── 12-1-1-3.html │ ├── 12-4-1-1.html │ ├── 12-4-1-2.html │ ├── 12-4-1-3.html │ ├── 13-1-1-1.html │ ├── 13-1-1-2.html │ ├── 13-1-1-3.html │ ├── 13-1-1-4.html │ ├── 13-10-1-1.html │ ├── 13-2-1-1.html │ ├── 13-2-1-3.html │ ├── 2-1-1-1.html │ ├── 2-1-1-2.html │ ├── 2-1-1-3.html │ ├── 2-1-1-4.html │ ├── 2-1-1-5.html │ ├── 2-2-1-1.html │ ├── 2-2-1-2.html │ ├── 2-2-1-3.html │ ├── 2-2-1-4.html │ ├── 3-2-1-1.html │ ├── 3-3-1-1.html │ ├── 3-5-1-1.html │ ├── 3-5-2-1.html │ ├── 3-5-2-2.html │ ├── 3-5-2-3.html │ ├── 3-6-1-1.html │ ├── 3-6-1-2.html │ ├── 3-6-1-4.html │ ├── 4-1-1-1.html │ ├── 4-3-1-1.html │ ├── 4-3-1-2.html │ ├── 5-1-2-1.html │ ├── 5-1-2-2.html │ ├── 5-1-2-3.html │ ├── 5-2-1-1.html │ ├── 5-2-1-2.html │ ├── 5-3-1-1.html │ ├── 5-4-1-1.html │ ├── 5-5-1-1.html │ ├── 5-5-1-2.html │ ├── 5-5-1-3.html │ ├── 5-5-1-6.html │ ├── 5-5-2-1.html │ ├── 5-6-1-1.html │ ├── 5-6-1-2.html │ ├── 5-6-1-3.html │ ├── 6-1-1-1.html │ ├── 6-1-1-2.html │ ├── 6-1-1-3.html │ ├── 6-2-1-1.html │ ├── 6-2-2-1.html │ ├── 6-2-2-2.html │ ├── 6-2-2-3.html │ ├── 6-3-1-1.html │ ├── 6-3-1-2.html │ ├── 6-3-1-3.html │ ├── 6-3-1-4.html │ ├── 6-5-1-1.html │ ├── 6-5-1-2.html │ ├── 6-5-1-3.html │ ├── 6-5-1-4.html │ ├── 7-1-1-1.html │ ├── 7-1-1-2.html │ ├── 7-1-1-3.html │ ├── 7-1-1-4.html │ ├── 7-1-1-5.html │ ├── 7-2-1-1.html │ ├── 7-4-1-1.html │ ├── 7-5-1-1.html │ ├── 8-1-1-1.html │ ├── 8-1-1-2.html │ ├── 8-1-1-3.html │ ├── 8-1-1-4.html │ ├── 9-1-1-1.html │ ├── 9-3-1-1.html │ ├── 9-3-1-2.html │ ├── 9-3-1-3.html │ ├── 9-3-1-4.html │ ├── 9-3-1-5.html │ ├── 9-3-1-6.html │ └── cfg_default.txt ├── accesscases.txt ├── acctest.cmd ├── alltest.cmd ├── alltest1.cmd ├── alltest2.bat ├── alltestc.bat ├── cmp.sh ├── html5 │ ├── README.html5.txt │ ├── article.org.html │ ├── aside.org.html │ ├── atemplate.org.html │ ├── bdi.org.html │ ├── cleanup.bat │ ├── datalist.org.html │ ├── datalist2.org.html │ ├── datalist3.org.html │ ├── details.org.html │ ├── dialog.org.html │ ├── figure.org.html │ ├── footer.org.html │ ├── formselect.org.html │ ├── formselect2.org.html │ ├── header.org.html │ ├── html4 │ │ ├── README.html4.txt │ │ ├── acronym4.html │ │ ├── acronym5.html │ │ ├── align5.html │ │ ├── applet4.html │ │ ├── applet5.html │ │ ├── basefont4.html │ │ ├── basefont5.html │ │ ├── big4.html │ │ ├── big5.html │ │ ├── blink5.html │ │ ├── bodyatts5.html │ │ ├── center25.html │ │ ├── center4.html │ │ ├── center5.html │ │ ├── cleanup.bat │ │ ├── dir4.html │ │ ├── dir5.html │ │ ├── font4.html │ │ ├── font5.html │ │ ├── frame_a.htm │ │ ├── frame_b.htm │ │ ├── frame_c.htm │ │ ├── frameset4.html │ │ ├── frameset5.html │ │ ├── index2.html │ │ ├── marquee5.html │ │ ├── obsolete.txt │ │ ├── setexe.bat │ │ ├── strike4.html │ │ ├── strike5.html │ │ ├── testacro.bat │ │ ├── testbig.bat │ │ ├── testbody.bat │ │ ├── testcent.bat │ │ ├── testcent2.bat │ │ ├── testdir.bat │ │ ├── testfont.bat │ │ ├── testhtml4.cmd │ │ ├── testi2.bat │ │ ├── testmarq.bat │ │ ├── testone.bat │ │ ├── teststrike.bat │ │ ├── testtt.bat │ │ ├── tt4.html │ │ └── tt5.html │ ├── keygen.org.html │ ├── main.org.html │ ├── mark.org.html │ ├── mav.org.html │ ├── menuitem.org.html │ ├── meter.org.html │ ├── min.org.html │ ├── output.org.html │ ├── progress.org.html │ ├── removed.org.html │ ├── rp.org.html │ ├── section.org.html │ ├── select2.org.html │ ├── summary.org.html │ ├── testhtml5.cmd │ ├── testhtml5.sh │ ├── testone.cmd │ ├── time.org.html │ ├── video.org.html │ └── wbr.org.html ├── input │ ├── cfg_1003994.txt │ ├── cfg_1004008.txt │ ├── cfg_1004512.txt │ ├── cfg_1030944.txt │ ├── cfg_1055398.txt │ ├── cfg_1067112.txt │ ├── cfg_1068087.txt │ ├── cfg_1078345.txt │ ├── cfg_1207443.txt │ ├── cfg_1210752.txt │ ├── cfg_1241723.txt │ ├── cfg_1266647.txt │ ├── cfg_1286278.txt │ ├── cfg_1359292.txt │ ├── cfg_1365706.txt │ ├── cfg_1407266.txt │ ├── cfg_1408034.txt │ ├── cfg_1410061-1.txt │ ├── cfg_1410061-2.txt │ ├── cfg_1410061.txt │ ├── cfg_1423252.txt │ ├── cfg_1448730.txt │ ├── cfg_1452744.txt │ ├── cfg_1510101.txt │ ├── cfg_1573338.txt │ ├── cfg_1590220-1.txt │ ├── cfg_1590220-2.txt │ ├── cfg_1642186-1.txt │ ├── cfg_1642186.txt │ ├── cfg_1652223.txt │ ├── cfg_1720953.txt │ ├── cfg_1986717-1.txt │ ├── cfg_1986717-2.txt │ ├── cfg_1986717-3.txt │ ├── cfg_2046048.txt │ ├── cfg_2085175.txt │ ├── cfg_2705873-1.txt │ ├── cfg_2705873-2.txt │ ├── cfg_2709860.txt │ ├── cfg_427812.txt │ ├── cfg_427821.txt │ ├── cfg_427825.txt │ ├── cfg_427826.txt │ ├── cfg_427835.txt │ ├── cfg_427837.txt │ ├── cfg_427839.txt │ ├── cfg_427845.txt │ ├── cfg_431716.txt │ ├── cfg_431721.txt │ ├── cfg_431736.txt │ ├── cfg_431889.txt │ ├── cfg_431895.txt │ ├── cfg_431956.txt │ ├── cfg_431958.txt │ ├── cfg_432677.txt │ ├── cfg_433012.txt │ ├── cfg_433604.txt │ ├── cfg_433607.txt │ ├── cfg_433670.txt │ ├── cfg_433856.txt │ ├── cfg_434100.txt │ ├── cfg_434940.txt │ ├── cfg_438954.txt │ ├── cfg_443576.txt │ ├── cfg_444394.txt │ ├── cfg_449348.txt │ ├── cfg_463066.txt │ ├── cfg_470663.txt │ ├── cfg_473490.txt │ ├── cfg_480406.txt │ ├── cfg_480701.txt │ ├── cfg_480843.txt │ ├── cfg_500236.txt │ ├── cfg_503436.txt │ ├── cfg_508936.txt │ ├── cfg_511243.txt │ ├── cfg_514348.txt │ ├── cfg_517550.txt │ ├── cfg_531964.txt │ ├── cfg_532535.txt │ ├── cfg_533233.txt │ ├── cfg_537604.txt │ ├── cfg_540045.txt │ ├── cfg_540571.txt │ ├── cfg_542029.txt │ ├── cfg_543262.txt │ ├── cfg_545772.txt │ ├── cfg_570027.txt │ ├── cfg_578216.txt │ ├── cfg_586555.txt │ ├── cfg_590716.txt │ ├── cfg_616744.txt │ ├── cfg_634889.txt │ ├── cfg_640473.txt │ ├── cfg_640474.txt │ ├── cfg_646946.txt │ ├── cfg_647255.txt │ ├── cfg_647900.txt │ ├── cfg_649812.txt │ ├── cfg_656889.txt │ ├── cfg_658230.txt │ ├── cfg_660397.txt │ ├── cfg_661606.txt │ ├── cfg_676156.txt │ ├── cfg_678268.txt │ ├── cfg_688746.txt │ ├── cfg_695408.txt │ ├── cfg_795643-1.txt │ ├── cfg_795643-2.txt │ ├── cfg_default.txt │ ├── in_1002509.html │ ├── in_1003361.html │ ├── in_1003994.xml │ ├── in_1004008.xml │ ├── in_1004051.html │ ├── in_1004512.html │ ├── in_1014993.html │ ├── in_1015959.html │ ├── in_1027888.html │ ├── in_1030944.xml │ ├── in_1050673.html │ ├── in_1052758.html │ ├── in_1053626.html │ ├── in_1055304.html │ ├── in_1055398.html │ ├── in_1056023.html │ ├── in_1056910.html │ ├── in_1062345.html │ ├── in_1062511.html │ ├── in_1062661.html │ ├── in_1063256.html │ ├── in_1067112.html │ ├── in_1068087.html │ ├── in_1069549.html │ ├── in_1069553.html │ ├── in_1072528.html │ ├── in_1078345.html │ ├── in_1079820.html │ ├── in_1086083.html │ ├── in_1090318.html │ ├── in_1098012.html │ ├── in_1107622.html │ ├── in_1115094.html │ ├── in_1117013.html │ ├── in_1145571.html │ ├── in_1145572.html │ ├── in_1168193.html │ ├── in_1183751.html │ ├── in_1198501.html │ ├── in_1207443.html │ ├── in_1210752.html │ ├── in_1231279.html │ ├── in_1235296.html │ ├── in_1241723.html │ ├── in_1263391.html │ ├── in_1266647.html │ ├── in_1282835.html │ ├── in_1286029.html │ ├── in_1286278.html │ ├── in_1316258.html │ ├── in_1316307-2.html │ ├── in_1316307.html │ ├── in_1326520.html │ ├── in_1331849.html │ ├── in_1333579.html │ ├── in_1359292.html │ ├── in_1365706.xml │ ├── in_1398397.html │ ├── in_1407266.html │ ├── in_1408034.html │ ├── in_1410061-1.html │ ├── in_1410061-2.html │ ├── in_1410061.html │ ├── in_1415137.html │ ├── in_1423252.html │ ├── in_1426419.html │ ├── in_1436578.html │ ├── in_1445570.html │ ├── in_1448730.xml │ ├── in_1452744.html │ ├── in_1503897.html │ ├── in_1510101.xml │ ├── in_1573338.xml │ ├── in_1586158.html │ ├── in_1590220-1.html │ ├── in_1590220-2.html │ ├── in_1603538-1.html │ ├── in_1603538-2.html │ ├── in_1610888-1.html │ ├── in_1610888-2.html │ ├── in_1632218.html │ ├── in_1632470.html │ ├── in_1638062.html │ ├── in_1642186-1.html │ ├── in_1642186.html │ ├── in_1652223.html │ ├── in_1674502.html │ ├── in_1707836.html │ ├── in_1715153.html │ ├── in_1720953.html │ ├── in_1773932.html │ ├── in_1986717-1.html │ ├── in_1986717-2.html │ ├── in_1986717-3.html │ ├── in_2046048.html │ ├── in_2085175.html │ ├── in_2359929.html │ ├── in_2705873-1.html │ ├── in_2705873-2.html │ ├── in_2709860.html │ ├── in_426885.html │ ├── in_427633.html │ ├── in_427662.html │ ├── in_427664.html │ ├── in_427671.html │ ├── in_427672.html │ ├── in_427675.html │ ├── in_427676.html │ ├── in_427677.html │ ├── in_427810.html │ ├── in_427811.html │ ├── in_427812.xhtml │ ├── in_427813.html │ ├── in_427816.html │ ├── in_427818.html │ ├── in_427819.html │ ├── in_427820.html │ ├── in_427821.html │ ├── in_427822.html │ ├── in_427823.html │ ├── in_427825.html │ ├── in_427826.html │ ├── in_427827.html │ ├── in_427830.html │ ├── in_427833.html │ ├── in_427834.html │ ├── in_427835.html │ ├── in_427836.html │ ├── in_427837.xml │ ├── in_427838.html │ ├── in_427839.html │ ├── in_427840.html │ ├── in_427841.html │ ├── in_427844.html │ ├── in_427845.html │ ├── in_427846.html │ ├── in_431716.html │ ├── in_431719.html │ ├── in_431721.html │ ├── in_431731.html │ ├── in_431736.html │ ├── in_431739.html │ ├── in_431874.html │ ├── in_431883.html │ ├── in_431889.html │ ├── in_431895.html │ ├── in_431898.html │ ├── in_431956.xml │ ├── in_431958.html │ ├── in_431964.html │ ├── in_431965.xhtml │ ├── in_432677.html │ ├── in_433012.html │ ├── in_433021.html │ ├── in_433040.html │ ├── in_433359.html │ ├── in_433360.html │ ├── in_433604.xml │ ├── in_433607.xml │ ├── in_433656.html │ ├── in_433666.html │ ├── in_433670.xml │ ├── in_433672.html │ ├── in_433856.html │ ├── in_434047.html │ ├── in_434100.html │ ├── in_434940.html │ ├── in_435903.html │ ├── in_435909.html │ ├── in_435917.html │ ├── in_435919.html │ ├── in_435920.html │ ├── in_435922.html │ ├── in_435923.html │ ├── in_437468.html │ ├── in_438650.html │ ├── in_438658.html │ ├── in_438954.html │ ├── in_438956.html │ ├── in_441508.html │ ├── in_441568.html │ ├── in_441740.xhtml │ ├── in_443362.html │ ├── in_443381.xhtml │ ├── in_443576.html │ ├── in_443678.html │ ├── in_444394.html │ ├── in_445074.html │ ├── in_445394.html │ ├── in_445557.html │ ├── in_446019.xhtml │ ├── in_449348.html │ ├── in_450389.html │ ├── in_456596.html │ ├── in_463066.html │ ├── in_467863.html │ ├── in_467865.html │ ├── in_470663.html │ ├── in_470688.html │ ├── in_471264.html │ ├── in_473490.html │ ├── in_480406.xml │ ├── in_480701.xml │ ├── in_480843.xhtml │ ├── in_487204.html │ ├── in_487283.html │ ├── in_500236.xml │ ├── in_501230.xhtml │ ├── in_501669.html │ ├── in_503436.xml │ ├── in_504206.html │ ├── in_505770.html │ ├── in_508936.html │ ├── in_511243.xhtml │ ├── in_511679.html │ ├── in_514348.html │ ├── in_514893.html │ ├── in_516370.xhtml │ ├── in_517550.xhtml │ ├── in_525081.html │ ├── in_531964.xhtml │ ├── in_532535.html │ ├── in_533105.html │ ├── in_533233.html │ ├── in_537604.xml │ ├── in_539369.html │ ├── in_539369a.html │ ├── in_540045.xhtml │ ├── in_540296.html │ ├── in_540555.html │ ├── in_540571.html │ ├── in_542029.html │ ├── in_543262.html │ ├── in_545067.html │ ├── in_545772.html │ ├── in_552861.html │ ├── in_553468.xhtml │ ├── in_566542.html │ ├── in_570027.html │ ├── in_578216.html │ ├── in_586555.html │ ├── in_586562.html │ ├── in_588061.html │ ├── in_590716.html │ ├── in_593705.html │ ├── in_598860.html │ ├── in_603128.html │ ├── in_609058.html │ ├── in_616744.xml │ ├── in_620531.html │ ├── in_629885.html │ ├── in_634889.html │ ├── in_640473.html │ ├── in_640474.xml │ ├── in_646946.xml │ ├── in_647255.html │ ├── in_647900.html │ ├── in_649812.html │ ├── in_655338.html │ ├── in_656889.html │ ├── in_658230.html │ ├── in_660397.html │ ├── in_661606.html │ ├── in_663548.html │ ├── in_671087.html │ ├── in_676156.html │ ├── in_676205.xhtml │ ├── in_678268.html │ ├── in_679135.html │ ├── in_680664.xhtml │ ├── in_688746.html │ ├── in_695408.html │ ├── in_696799.html │ ├── in_706260.html │ ├── in_765852.html │ ├── in_795643-1.html │ ├── in_795643-2.html │ ├── in_836462-2.html │ ├── in_836462-3.html │ ├── in_836462.html │ ├── in_837023.html │ ├── in_978947.html │ └── in_996484.html ├── onetest.cmd ├── onetest2.bat ├── onetesta.cmd ├── report-5.1.8.txt ├── t1.bat ├── t1.sh ├── testaccess.sh ├── testaccessone.sh ├── testall.sh ├── testbase │ ├── msg_1002509.txt │ ├── msg_1003361.txt │ ├── msg_1004051.txt │ ├── msg_1004512.txt │ ├── msg_1014993.txt │ ├── msg_1015959.txt │ ├── msg_1027888.txt │ ├── msg_1050673.txt │ ├── msg_1052758.txt │ ├── msg_1053626.txt │ ├── msg_1055304.txt │ ├── msg_1055398.txt │ ├── msg_1056023.txt │ ├── msg_1056910.txt │ ├── msg_1062345.txt │ ├── msg_1062511.txt │ ├── msg_1062661.txt │ ├── msg_1063256.txt │ ├── msg_1067112.txt │ ├── msg_1068087.txt │ ├── msg_1069549.txt │ ├── msg_1069553.txt │ ├── msg_1072528.txt │ ├── msg_1078345.txt │ ├── msg_1079820.txt │ ├── msg_1086083.txt │ ├── msg_1090318.txt │ ├── msg_1098012.txt │ ├── msg_1107622.txt │ ├── msg_1115094.txt │ ├── msg_1117013.txt │ ├── msg_1145571.txt │ ├── msg_1145572.txt │ ├── msg_1168193.txt │ ├── msg_1183751.txt │ ├── msg_1198501.txt │ ├── msg_1207443.txt │ ├── msg_1210752.txt │ ├── msg_1231279.txt │ ├── msg_1235296.txt │ ├── msg_1241723.txt │ ├── msg_1263391.txt │ ├── msg_1266647.txt │ ├── msg_1282835.txt │ ├── msg_1286029.txt │ ├── msg_1286278.txt │ ├── msg_1316258.txt │ ├── msg_1316307-2.txt │ ├── msg_1316307.txt │ ├── msg_1326520.txt │ ├── msg_1331849.txt │ ├── msg_1333579.txt │ ├── msg_1359292.txt │ ├── msg_1398397.txt │ ├── msg_1407266.txt │ ├── msg_1408034.txt │ ├── msg_1410061-1.txt │ ├── msg_1410061-2.txt │ ├── msg_1410061.txt │ ├── msg_1415137.txt │ ├── msg_1423252.txt │ ├── msg_1426419.txt │ ├── msg_1436578.txt │ ├── msg_1445570.txt │ ├── msg_1452744.txt │ ├── msg_1503897.txt │ ├── msg_1586158.txt │ ├── msg_1590220-1.txt │ ├── msg_1590220-2.txt │ ├── msg_1603538-1.txt │ ├── msg_1603538-2.txt │ ├── msg_1610888-1.txt │ ├── msg_1610888-2.txt │ ├── msg_1632218.txt │ ├── msg_1632470.txt │ ├── msg_1638062.txt │ ├── msg_1642186-1.txt │ ├── msg_1674502.txt │ ├── msg_1707836.txt │ ├── msg_1715153.txt │ ├── msg_1720953.txt │ ├── msg_1773932.txt │ ├── msg_1986717-1.txt │ ├── msg_1986717-2.txt │ ├── msg_1986717-3.txt │ ├── msg_2046048.txt │ ├── msg_2085175.txt │ ├── msg_2359929.txt │ ├── msg_2705873-1.txt │ ├── msg_2705873-2.txt │ ├── msg_2709860.txt │ ├── msg_426885.txt │ ├── msg_427633.txt │ ├── msg_427662.txt │ ├── msg_427664.txt │ ├── msg_427671.txt │ ├── msg_427672.txt │ ├── msg_427675.txt │ ├── msg_427676.txt │ ├── msg_427677.txt │ ├── msg_427810.txt │ ├── msg_427811.txt │ ├── msg_427813.txt │ ├── msg_427816.txt │ ├── msg_427818.txt │ ├── msg_427819.txt │ ├── msg_427820.txt │ ├── msg_427821.txt │ ├── msg_427822.txt │ ├── msg_427823.txt │ ├── msg_427825.txt │ ├── msg_427826.txt │ ├── msg_427827.txt │ ├── msg_427830.txt │ ├── msg_427833.txt │ ├── msg_427834.txt │ ├── msg_427835.txt │ ├── msg_427836.txt │ ├── msg_427837.txt │ ├── msg_427838.txt │ ├── msg_427839.txt │ ├── msg_427840.txt │ ├── msg_427841.txt │ ├── msg_427845.txt │ ├── msg_427846.txt │ ├── msg_431716.txt │ ├── msg_431721.txt │ ├── msg_431731.txt │ ├── msg_431736.txt │ ├── msg_431739.txt │ ├── msg_431874.txt │ ├── msg_431889.txt │ ├── msg_431895.txt │ ├── msg_431898.txt │ ├── msg_431958.txt │ ├── msg_431964.txt │ ├── msg_432677.txt │ ├── msg_433012.txt │ ├── msg_433021.txt │ ├── msg_433040.txt │ ├── msg_433359.txt │ ├── msg_433360.txt │ ├── msg_433604.txt │ ├── msg_433607.txt │ ├── msg_433656.txt │ ├── msg_433666.txt │ ├── msg_433672.txt │ ├── msg_433856.txt │ ├── msg_434047.txt │ ├── msg_434100.txt │ ├── msg_434940.txt │ ├── msg_435903.txt │ ├── msg_435917.txt │ ├── msg_435919.txt │ ├── msg_435920.txt │ ├── msg_435922.txt │ ├── msg_435923.txt │ ├── msg_437468.txt │ ├── msg_438650.txt │ ├── msg_438658.txt │ ├── msg_438954.txt │ ├── msg_438956.txt │ ├── msg_441508.txt │ ├── msg_441568.txt │ ├── msg_443362.txt │ ├── msg_443576.txt │ ├── msg_443678.txt │ ├── msg_445074.txt │ ├── msg_445394.txt │ ├── msg_445557.txt │ ├── msg_449348.txt │ ├── msg_470663.txt │ ├── msg_473490.txt │ ├── msg_480406.txt │ ├── msg_480701.txt │ ├── msg_487204.txt │ ├── msg_487283.txt │ ├── msg_500236.txt │ ├── msg_501669.txt │ ├── msg_503436.txt │ ├── msg_504206.txt │ ├── msg_505770.txt │ ├── msg_511243.txt │ ├── msg_511679.txt │ ├── msg_533233.txt │ ├── msg_540571.txt │ ├── msg_543262.txt │ ├── msg_545772.txt │ ├── msg_553468.txt │ ├── msg_566542.txt │ ├── msg_586555.txt │ ├── msg_586562.txt │ ├── msg_588061.txt │ ├── msg_590716.txt │ ├── msg_593705.txt │ ├── msg_609058.txt │ ├── msg_616744.txt │ ├── msg_620531.txt │ ├── msg_629885.txt │ ├── msg_634889.txt │ ├── msg_640473.txt │ ├── msg_640474.txt │ ├── msg_646946.txt │ ├── msg_647255.txt │ ├── msg_647900.txt │ ├── msg_649812.txt │ ├── msg_655338.txt │ ├── msg_656889.txt │ ├── msg_658230.txt │ ├── msg_660397.txt │ ├── msg_661606.txt │ ├── msg_671087.txt │ ├── msg_676156.txt │ ├── msg_676205.txt │ ├── msg_678268.txt │ ├── msg_688746.txt │ ├── msg_695408.txt │ ├── msg_696799.txt │ ├── msg_706260.txt │ ├── msg_765852.txt │ ├── msg_795643-1.txt │ ├── msg_795643-2.txt │ ├── msg_836462-2.txt │ ├── msg_836462-3.txt │ ├── msg_836462.txt │ ├── msg_837023.txt │ ├── msg_978947.txt │ ├── msg_996484.txt │ ├── out_1003361.html │ ├── out_1004051.html │ ├── out_1004512.html │ ├── out_1014993.html │ ├── out_1015959.html │ ├── out_1027888.html │ ├── out_1050673.html │ ├── out_1052758.html │ ├── out_1053626.html │ ├── out_1055304.html │ ├── out_1055398.html │ ├── out_1056023.html │ ├── out_1056910.html │ ├── out_1062345.html │ ├── out_1062511.html │ ├── out_1062661.html │ ├── out_1067112.html │ ├── out_1068087.html │ ├── out_1069549.html │ ├── out_1069553.html │ ├── out_1072528.html │ ├── out_1078345.html │ ├── out_1079820.html │ ├── out_1086083.html │ ├── out_1090318.html │ ├── out_1098012.html │ ├── out_1107622.html │ ├── out_1115094.html │ ├── out_1117013.html │ ├── out_1145571.html │ ├── out_1145572.html │ ├── out_1168193.html │ ├── out_1183751.html │ ├── out_1198501.html │ ├── out_1207443.html │ ├── out_1210752.html │ ├── out_1231279.html │ ├── out_1235296.html │ ├── out_1241723.html │ ├── out_1263391.html │ ├── out_1266647.html │ ├── out_1282835.html │ ├── out_1286029.html │ ├── out_1286278.html │ ├── out_1316258.html │ ├── out_1316307-2.html │ ├── out_1316307.html │ ├── out_1326520.html │ ├── out_1331849.html │ ├── out_1333579.html │ ├── out_1359292.html │ ├── out_1398397.html │ ├── out_1407266.html │ ├── out_1408034.html │ ├── out_1410061-1.html │ ├── out_1410061-2.html │ ├── out_1410061.html │ ├── out_1415137.html │ ├── out_1423252.html │ ├── out_1426419.html │ ├── out_1436578.html │ ├── out_1445570.html │ ├── out_1452744.html │ ├── out_1503897.html │ ├── out_1586158.html │ ├── out_1590220-1.html │ ├── out_1590220-2.html │ ├── out_1603538-1.html │ ├── out_1603538-2.html │ ├── out_1610888-1.html │ ├── out_1610888-2.html │ ├── out_1632218.html │ ├── out_1632470.html │ ├── out_1638062.html │ ├── out_1642186-1.html │ ├── out_1674502.html │ ├── out_1707836.html │ ├── out_1715153.html │ ├── out_1720953.html │ ├── out_1773932.html │ ├── out_1986717-1.html │ ├── out_1986717-2.html │ ├── out_1986717-3.html │ ├── out_2085175.html │ ├── out_2359929.html │ ├── out_2705873-1.html │ ├── out_2705873-2.html │ ├── out_2709860.html │ ├── out_426885.html │ ├── out_427633.html │ ├── out_427662.html │ ├── out_427664.html │ ├── out_427671.html │ ├── out_427672.html │ ├── out_427675.html │ ├── out_427677.html │ ├── out_427810.html │ ├── out_427811.html │ ├── out_427813.html │ ├── out_427816.html │ ├── out_427818.html │ ├── out_427819.html │ ├── out_427820.html │ ├── out_427821.html │ ├── out_427822.html │ ├── out_427823.html │ ├── out_427825.html │ ├── out_427826.html │ ├── out_427827.html │ ├── out_427830.html │ ├── out_427833.html │ ├── out_427834.html │ ├── out_427835.html │ ├── out_427836.html │ ├── out_427837.html │ ├── out_427838.html │ ├── out_427839.html │ ├── out_427840.html │ ├── out_427841.html │ ├── out_427845.html │ ├── out_427846.html │ ├── out_431716.html │ ├── out_431721.html │ ├── out_431731.html │ ├── out_431736.html │ ├── out_431739.html │ ├── out_431874.html │ ├── out_431889.html │ ├── out_431898.html │ ├── out_431964.html │ ├── out_432677.html │ ├── out_433012.html │ ├── out_433021.html │ ├── out_433040.html │ ├── out_433359.html │ ├── out_433360.html │ ├── out_433604.html │ ├── out_433607.html │ ├── out_433656.html │ ├── out_433666.html │ ├── out_433672.html │ ├── out_433856.html │ ├── out_434047.html │ ├── out_434940.html │ ├── out_435903.html │ ├── out_435917.html │ ├── out_435919.html │ ├── out_435920.html │ ├── out_435922.html │ ├── out_435923.html │ ├── out_437468.html │ ├── out_438650.html │ ├── out_438658.html │ ├── out_438954.html │ ├── out_438956.html │ ├── out_441508.html │ ├── out_441568.html │ ├── out_443362.html │ ├── out_443576.html │ ├── out_443678.html │ ├── out_445074.html │ ├── out_445394.html │ ├── out_445557.html │ ├── out_449348.html │ ├── out_470663.html │ ├── out_473490.html │ ├── out_480406.html │ ├── out_480701.html │ ├── out_487204.html │ ├── out_487283.html │ ├── out_500236.html │ ├── out_501669.html │ ├── out_503436.html │ ├── out_504206.html │ ├── out_505770.html │ ├── out_511243.html │ ├── out_511679.html │ ├── out_533233.html │ ├── out_540571.html │ ├── out_543262.html │ ├── out_545772.html │ ├── out_553468.html │ ├── out_566542.html │ ├── out_586555.html │ ├── out_586562.html │ ├── out_588061.html │ ├── out_590716.html │ ├── out_593705.html │ ├── out_609058.html │ ├── out_616744.html │ ├── out_620531.html │ ├── out_629885.html │ ├── out_634889.html │ ├── out_640473.html │ ├── out_640474.html │ ├── out_646946.html │ ├── out_647255.html │ ├── out_647900.html │ ├── out_649812.html │ ├── out_655338.html │ ├── out_656889.html │ ├── out_658230.html │ ├── out_660397.html │ ├── out_661606.html │ ├── out_671087.html │ ├── out_676156.html │ ├── out_676205.html │ ├── out_678268.html │ ├── out_688746.html │ ├── out_695408.html │ ├── out_696799.html │ ├── out_706260.html │ ├── out_765852.html │ ├── out_795643-1.html │ ├── out_795643-2.html │ ├── out_836462-2.html │ ├── out_836462-3.html │ ├── out_836462.html │ ├── out_837023.html │ ├── out_978947.html │ └── out_996484.html ├── testcases.txt ├── testinfo.txt ├── testone.sh ├── testxml.sh ├── xmlcases.txt └── xmltest.cmd └── version.txt /README.md: -------------------------------------------------------------------------------- 1 | # HTML Tidy with HTML5 support 2 | 3 | All READMEs and related materials have been relocated into [README/][1]. 4 | 5 | For build instructions please see [README/README.md][2]. 6 | 7 | [1]: https://github.com/htacg/tidy-html5/tree/master/README 8 | [2]:https://github.com/htacg/tidy-html5/blob/master/README/README.md 9 | -------------------------------------------------------------------------------- /build/cmake/build-bins.bat: -------------------------------------------------------------------------------- 1 | @setlocal 2 | 3 | cmake --build . --config Release --target PACKAGE 4 | -------------------------------------------------------------------------------- /build/win64/.gitignore: -------------------------------------------------------------------------------- 1 | *.vcxproj 2 | *.filters 3 | CMakeCache.txt 4 | CMakeFiles/* 5 | Debug/* 6 | Release/* 7 | bldlog-1.txt 8 | cmake_install.cmake 9 | *.dir/* 10 | *.sln 11 | x64/* 12 | ipch/* 13 | *.opensdf 14 | CPackConfig.cmake 15 | CPackSourceConfig.cmake 16 | *.wixobj 17 | install_manifest.txt 18 | *.zip 19 | *.exe 20 | *.msi 21 | _CPack_Packages/* 22 | dir 23 | -------------------------------------------------------------------------------- /build/win64/build-bins.bat: -------------------------------------------------------------------------------- 1 | @setlocal 2 | 3 | cmake --build . --config Release --target PACKAGE 4 | -------------------------------------------------------------------------------- /build/win64/cmake-clean.txt: -------------------------------------------------------------------------------- 1 | bldlog-1.txt 2 | CPackConfig.cmake 3 | CPackSourceConfig.cmake 4 | directories.wixobj 5 | features.wixobj 6 | files.wixobj 7 | install_manifest.txt 8 | main.wixobj 9 | Tidy5-4.9.23-Source.zip 10 | Tidy5-4.9.23-win64.exe 11 | Tidy5-4.9.23-win64.msi 12 | Tidy5-4.9.23-win64.zip 13 | _CPack_Packages 14 | -------------------------------------------------------------------------------- /documentation/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | # file created during build_docs 3 | # = tidy5 -h > tidy5.cmd.txt 4 | examples/tidy5.*.txt 5 | 6 | # The license file needs to copies to examples for \include 7 | examples/LICENSE.md 8 | 9 | # file generates from xsl 10 | examples/quickref_include.html 11 | 12 | # not sure what these are 13 | html/* 14 | latex/* 15 | 16 | # api document zips 17 | tidylib_api*.zip 18 | 19 | 20 | -------------------------------------------------------------------------------- /documentation/README.md: -------------------------------------------------------------------------------- 1 | Documentation 2 | ============= 3 | 4 | This directory does _not_ contain documentation for HTML Tidy. It consists of 5 | files used for generating documentation for HTML Tidy. 6 | 7 | Please consult the main README file for more information. 8 | -------------------------------------------------------------------------------- /documentation/pages/page_license.dox: -------------------------------------------------------------------------------- 1 | /*! 2 | 3 | 4 | \page license License 5 | 6 | License and Legal 7 | 8 |
 9 | \htmlinclude LICENSE.md
10 | 
11 | 12 | 13 | 14 | */ -------------------------------------------------------------------------------- /documentation/pages/page_quickref.dox: -------------------------------------------------------------------------------- 1 | /*! 2 | 3 | \page quick_ref Quick Reference 4 | 5 | HTML Tidy Configuration Options 6 | 7 | 8 | 9 | \htmlinclude quickref_include.html 10 | 11 | 12 | */ 13 | -------------------------------------------------------------------------------- /documentation/pages/page_tidy.dox: -------------------------------------------------------------------------------- 1 | /*! 2 | 3 | Running the tidy command 4 | 5 | \page tidy_cmd tidy command 6 | 7 | - \subpage tidy_quickstart 8 | - \subpage tidy_config 9 | - \subpage featured_options 10 | - \subpage tidy_scripting 11 | 12 |
13 | \htmlinclude tidy5.help.txt
14 | 
15 | 16 | 17 | 18 | */ -------------------------------------------------------------------------------- /documentation/pages/page_todo.dox: -------------------------------------------------------------------------------- 1 | /*! 2 | 3 | 4 | \page todo Todo List 5 | 6 | The todo list. 7 | 8 | \note If this page is empty, then there are no todo items flagged in source. 9 | 10 | \xrefitem todo "Todo" "Todo List" 11 | 12 | 13 | 14 | */ -------------------------------------------------------------------------------- /localize/.gitignore: -------------------------------------------------------------------------------- 1 | # Ignore user-generated files: 2 | Gemfile.lock 3 | *.pot 4 | *.po 5 | *.h 6 | translations/*.* 7 | !translations/tidy.pot 8 | !translations/*.po 9 | -------------------------------------------------------------------------------- /localize/Gemfile: -------------------------------------------------------------------------------- 1 | source 'https://rubygems.org' 2 | 3 | gem 'thor' 4 | gem 'i18n' 5 | -------------------------------------------------------------------------------- /src/iconvtc.h: -------------------------------------------------------------------------------- 1 | #ifndef __ICONVTC_H__ 2 | #define __ICONVTC_H__ 3 | #ifdef TIDY_ICONV_SUPPORT 4 | 5 | /* iconvtc.h -- Interface to iconv transcoding routines 6 | 7 | (c) 1998-2003 (W3C) MIT, ERCIM, Keio University 8 | See tidy.h for the copyright notice. 9 | 10 | */ 11 | 12 | 13 | #endif /* TIDY_ICONV_SUPPORT */ 14 | #endif /* __ICONVTC_H__ */ 15 | -------------------------------------------------------------------------------- /src/mappedio.h: -------------------------------------------------------------------------------- 1 | #ifndef __TIDY_MAPPED_IO_H__ 2 | #define __TIDY_MAPPED_IO_H__ 3 | 4 | /* Interface to mmap style I/O 5 | 6 | (c) 2006 (W3C) MIT, ERCIM, Keio University 7 | See tidy.h for the copyright notice. 8 | 9 | */ 10 | 11 | #if defined(_WIN32) 12 | int TY_(DocParseFileWithMappedFile)( TidyDocImpl* doc, ctmbstr filnam ); 13 | #endif 14 | 15 | #endif /* __TIDY_MAPPED_IO_H__ */ 16 | -------------------------------------------------------------------------------- /test/.gitignore: -------------------------------------------------------------------------------- 1 | temp* 2 | *.old 3 | *.bak 4 | -------------------------------------------------------------------------------- /test/accessTest/1-1-1-1.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | aert1.0/1.1.1 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/accessTest/1-1-1-2.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | aert1.0/1.1.1 5 | 6 | 7 | gifimage.gif 8 | 9 | 10 | -------------------------------------------------------------------------------- /test/accessTest/1-1-1-3.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | aert1.0/1.1.1 5 | 6 | 7 | 34K bytes 8 | 9 | 10 | -------------------------------------------------------------------------------- /test/accessTest/1-1-1-4.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | aert1.0/1.1.1 5 | 6 | 7 | {short description of image} 8 | 9 | 10 | -------------------------------------------------------------------------------- /test/accessTest/1-1-10-1.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | aert1.0/1.1.10 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /test/accessTest/1-1-2-1.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | aert1.0/1.1.2 5 | 6 | 7 | Pie chart of federal expenditures 8 | 9 | 10 | -------------------------------------------------------------------------------- /test/accessTest/1-1-2-2.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | bobby/g13 5 | 6 | 7 | Pie chart of federal expenditures 8 | 9 | 10 | -------------------------------------------------------------------------------- /test/accessTest/1-1-2-3.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | aert1.0/1.1.2 5 | 6 | 7 | Pie chart of federal expenditures 8 | D 9 | 10 | 11 | -------------------------------------------------------------------------------- /test/accessTest/1-1-3-1.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | aert1.0/1.1.3 5 | 6 | 7 |
8 | 9 |
10 | 11 | 12 | -------------------------------------------------------------------------------- /test/accessTest/1-1-4-1.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | aert1.0/1.1.4 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /test/accessTest/1-1-5-1.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | aert1.0/1.1.5 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /test/accessTest/1-1-6-1.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | aert1.0/1.1.6 5 | 6 | 7 | The sound of one hand clapping (wav) 8 | 9 | 10 | -------------------------------------------------------------------------------- /test/accessTest/1-1-6-2.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | aert1.0/1.1.6 5 | 6 | 7 | The sound of one hand clapping (au) 8 | 9 | 10 | -------------------------------------------------------------------------------- /test/accessTest/1-1-6-3.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | aert1.0/1.1.6 5 | 6 | 7 | The sound of one hand clapping (aiff) 8 | 9 | 10 | -------------------------------------------------------------------------------- /test/accessTest/1-1-6-4.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | aert1.0/1.1.6 5 | 6 | 7 | The sound of one hand clapping (snd) 8 | 9 | 10 | -------------------------------------------------------------------------------- /test/accessTest/1-1-6-5.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | aert1.0/1.1.6 5 | 6 | 7 | The sound of one hand clapping (ra) 8 | 9 | 10 | -------------------------------------------------------------------------------- /test/accessTest/1-1-6-6.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | aert1.0/1.1.6 5 | 6 | 7 | The sound of one hand clapping (rm) 8 | 9 | 10 | -------------------------------------------------------------------------------- /test/accessTest/1-2-1-1.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | aert1.0/1.2.1 5 | 6 | 7 | 8 | server-side imagemap 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /test/accessTest/1-4-1-1.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | aert1.0/1.4.1 5 | 6 | 7 | Baby Walking 8 | 9 | 10 | -------------------------------------------------------------------------------- /test/accessTest/10-1-1-1.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | aert1.0/10.1.1 5 | 6 | 7 | Opens in new window. 8 | 9 | 10 | -------------------------------------------------------------------------------- /test/accessTest/10-1-1-2.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | aert1.0/10.1.1 5 | 6 | 7 | Opens in new window. 8 | 9 | 10 | -------------------------------------------------------------------------------- /test/accessTest/11-2-1-1.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | aert1.0/11.2.1 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /test/accessTest/11-2-1-10.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | aert1.0/11.2.1 5 | 6 | 7 | 8 | x 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /test/accessTest/11-2-1-2.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | aert1.0/11.2.1 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /test/accessTest/11-2-1-3.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | aert1.0/11.2.1 5 | 6 | 7 | 8 |
Hello
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /test/accessTest/11-2-1-4.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | aert1.0/11.2.1 5 | 6 | 7 | 8 | Hello 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /test/accessTest/11-2-1-5.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | aert1.0/11.2.1 5 | 6 | 7 | Hello 8 | 9 | 10 | -------------------------------------------------------------------------------- /test/accessTest/11-2-1-6.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | aert1.0/11.2.1 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /test/accessTest/11-2-1-7.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | aert1.0/11.2.1 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /test/accessTest/11-2-1-8.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | aert1.0/11.2.1 5 | 6 | 7 | x 8 | 9 | 10 | -------------------------------------------------------------------------------- /test/accessTest/11-2-1-9.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | aert1.0/11.2.1 5 | 6 | 7 | x 8 | 9 | 10 | -------------------------------------------------------------------------------- /test/accessTest/12-1-1-1.html: -------------------------------------------------------------------------------- 1 | 3 | 4 | 5 | aert1.0/12.1.1 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /test/accessTest/12-1-1-2.html: -------------------------------------------------------------------------------- 1 | 3 | 4 | 5 | aert1.0/12.1.1 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /test/accessTest/12-1-1-3.html: -------------------------------------------------------------------------------- 1 | 3 | 4 | 5 | aert1.0/12.1.1 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /test/accessTest/12-4-1-1.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | aert1.0/12.4.1 5 | 6 | 7 |
8 | 9 | 10 |
11 | 12 | 13 | -------------------------------------------------------------------------------- /test/accessTest/12-4-1-2.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | aert1.0/12.4.1 5 | 6 | 7 |
8 | 9 | 10 |
11 | 12 | 13 | -------------------------------------------------------------------------------- /test/accessTest/12-4-1-3.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | aert1.0/12.4.1 5 | 6 | 7 |
8 | 9 | 10 |
11 | 12 | 13 | -------------------------------------------------------------------------------- /test/accessTest/13-1-1-1.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | aert1.0/13.1.1 5 | 6 | 7 | cats 8 | some text 9 | cats 10 | 11 | 12 | -------------------------------------------------------------------------------- /test/accessTest/13-1-1-2.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | aert1.0/13.1.1 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /test/accessTest/13-1-1-3.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | aert1.0/13.1.1 5 | 6 | 7 | Want to find out more about small furry animals? 8 | Then click here and this link will take you there. 9 | 10 | 11 | -------------------------------------------------------------------------------- /test/accessTest/13-1-1-4.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | aert1.0/13.1.1 5 | 6 | 7 | click here 8 | 9 | 10 | -------------------------------------------------------------------------------- /test/accessTest/13-2-1-1.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /test/accessTest/13-2-1-3.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | aert1.0/13.2.1 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /test/accessTest/2-1-1-1.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | aert1.0/2.1.1 5 | 6 | 7 | big cat 8 | 9 | 10 | -------------------------------------------------------------------------------- /test/accessTest/2-1-1-2.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | aert1.0/2.1.1 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /test/accessTest/2-1-1-3.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | aert1.0/2.1.1 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /test/accessTest/2-1-1-4.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | aert1.0/2.1.1 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /test/accessTest/2-1-1-5.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | aert1.0/2.1.1 5 | 6 | 7 |
8 | 9 |
10 | 11 | 12 | -------------------------------------------------------------------------------- /test/accessTest/2-2-1-1.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Foreground and background color do not contrast sufficiently 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/accessTest/2-2-1-2.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Foreground and background color do not contrast sufficiently 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/accessTest/2-2-1-3.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Foreground and background color do not contrast sufficiently 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/accessTest/2-2-1-4.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Foreground and background color do not contrast sufficiently 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/accessTest/3-2-1-1.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Document missing doctype 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/accessTest/3-3-1-1.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | aert1.0/3.3.1 5 | 6 | 7 | Does not use stylesheets. 8 | 9 | 10 | -------------------------------------------------------------------------------- /test/accessTest/3-5-1-1.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | aert1.0/3.5.1 5 | 6 | 7 |

First Heading

8 |

Next Heading

9 | 10 | 11 | -------------------------------------------------------------------------------- /test/accessTest/3-5-2-1.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | aert1.0/3.5.2 5 | 6 | 7 |

This may be a header.

8 | 9 | 10 | -------------------------------------------------------------------------------- /test/accessTest/3-5-2-2.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | aert1.0/3.5.2 5 | 6 | 7 |

This may be a header.

8 | 9 | 10 | -------------------------------------------------------------------------------- /test/accessTest/3-5-2-3.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | aert1.0/3.5.2 5 | 6 | 7 |

This may be a header.

8 | 9 | 10 | -------------------------------------------------------------------------------- /test/accessTest/3-6-1-1.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | aert1.0/3.6.1 5 | 6 | 7 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /test/accessTest/3-6-1-2.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | aert1.0/3.6.1 5 | 6 | 7 |
    8 | This is only for the indent.
    9 | And this as well. 10 |
      11 | A further indent. 12 |
    13 |
14 | 15 | 16 | -------------------------------------------------------------------------------- /test/accessTest/3-6-1-4.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | aert1.0/3.6.1 5 | 6 | 7 |
  • Just an li by itself
  • 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /test/accessTest/4-1-1-1.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | aert1.0/4.1.1 5 | 6 | 7 | 8 |

    In Luis Bunuel's 1967 film, "Belle de Jour", the stunning Catherine Deneuve 9 | portrays a woman leading a double life.

    10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /test/accessTest/4-3-1-1.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | aert1.0/4.3.1 - The HTML element does not contain a lang attribute 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /test/accessTest/4-3-1-2.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | aert1.0/4.3.1 - The HTML element does not contain a valid lang attribute 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/accessTest/5-5-1-1.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | aert1.0/5.5.1 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 |
    This table has no summary
    12
    34
    14 | 15 | 16 | -------------------------------------------------------------------------------- /test/accessTest/5-5-2-1.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | aert1.0/5.5.2 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 |
    12
    34
    14 | 15 | -------------------------------------------------------------------------------- /test/accessTest/6-1-1-1.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | aert1.0/6.1.1 - This page uses a stylesheet 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /test/accessTest/6-1-1-2.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | aert1.0/6.1.1 5 | 6 | 7 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /test/accessTest/6-1-1-3.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | aert1.0/6.1.1 5 | 6 | 7 | 8 |

    hello

    9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /test/accessTest/6-2-1-1.html: -------------------------------------------------------------------------------- 1 | 3 | 4 | 5 | aert1.0/6.2.1 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /test/accessTest/6-2-2-1.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | aert1.0/6.2.2 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /test/accessTest/6-2-2-2.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | aert1.0/6.2.2 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /test/accessTest/6-2-2-3.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | aert1.0/6.2.2 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /test/accessTest/6-3-1-1.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | aert1.0/6.3.1 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /test/accessTest/6-3-1-2.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | aert1.0/6.3.1 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /test/accessTest/6-3-1-3.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | aert1.0/6.3.1 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /test/accessTest/6-3-1-4.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | aert1.0/6.3.1 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /test/accessTest/6-5-1-1.html: -------------------------------------------------------------------------------- 1 | 3 | 4 | 5 | aert1.0/6.5.1 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /test/accessTest/6-5-1-2.html: -------------------------------------------------------------------------------- 1 | 3 | 4 | 5 | aert1.0/6.5.1 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /test/accessTest/6-5-1-3.html: -------------------------------------------------------------------------------- 1 | 3 | 4 | 5 | aert1.0/6.5.1 6 | 7 | 8 | 9 | <p>Upgrade your browser to one that supports frames!</p> 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /test/accessTest/6-5-1-4.html: -------------------------------------------------------------------------------- 1 | 3 | 4 | 5 | aert1.0/6.5.1 6 | 7 | 8 | hello 9 | 10 | <p>content within noframes</p> 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /test/accessTest/7-1-1-1.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | aert1.0/7.1.1 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /test/accessTest/7-1-1-2.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | aert1.0/7.1.1 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /test/accessTest/7-1-1-3.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | aert1.0/7.1.1 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /test/accessTest/7-1-1-4.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | aert1.0/7.1.1 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /test/accessTest/7-1-1-5.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | aert1.0/7.1.1 5 | 6 | 7 | 8 | flicker 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /test/accessTest/7-2-1-1.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | aert1.0/7.2.1 5 | 6 | 7 |

    Here is a word of blinking text.

    8 | 9 | 10 | -------------------------------------------------------------------------------- /test/accessTest/7-4-1-1.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Test 7.4.1 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /test/accessTest/7-5-1-1.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Test 7.5.1 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /test/accessTest/8-1-1-1.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | aert1.0/8.1.1 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /test/accessTest/8-1-1-2.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | aert1.0/8.1.1 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /test/accessTest/8-1-1-3.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | aert1.0/8.1.1 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /test/accessTest/8-1-1-4.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | aert1.0/8.1.1 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /test/accessTest/9-1-1-1.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | aert1.0/9.1.1 5 | 6 | 7 | 8 | main front page navigation 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /test/accessTest/9-3-1-1.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | aert1.0/9.3.1 5 | 6 | 7 |

    8 | 9 | 10 | -------------------------------------------------------------------------------- /test/accessTest/9-3-1-2.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | aert1.0/9.3.1 5 | 6 | 7 |

    8 | 9 | 10 | -------------------------------------------------------------------------------- /test/accessTest/9-3-1-3.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | aert1.0/9.3.1 5 | 6 | 7 |

    8 | 9 | 10 | -------------------------------------------------------------------------------- /test/accessTest/9-3-1-4.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | aert1.0/9.3.1 5 | 6 | 7 |

    8 | 9 | 10 | -------------------------------------------------------------------------------- /test/accessTest/9-3-1-5.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | aert1.0/9.3.1 5 | 6 | 7 |

    8 | 9 | 10 | -------------------------------------------------------------------------------- /test/accessTest/9-3-1-6.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | aert1.0/9.3.1 5 | 6 | 7 |

    8 | 9 | 10 | -------------------------------------------------------------------------------- /test/accessTest/cfg_default.txt: -------------------------------------------------------------------------------- 1 | char-encoding: latin1 2 | 3 | -------------------------------------------------------------------------------- /test/html5/article.org.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | HTML5 article tag 6 | 7 | 8 | 9 |
    10 |

    Google Chrome

    11 |

    Google Chrome is a free, open-source web browser developed by Google, released in 2008.

    12 |
    13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /test/html5/aside.org.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Minimum HTML5 document 5 | 6 | 7 | 8 | 9 |

    My family and I visited The Epcot center this summer.

    10 | 11 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /test/html5/footer.org.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | HTML5 footer tag 6 | 7 | 8 | 9 | 10 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /test/html5/html4/acronym4.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | acronym 6 | 7 | 8 | 9 |

    An acronym for the World Wide Web is 10 | WWW 11 |

    12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /test/html5/html4/applet4.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | applet 6 | 7 | 8 | 9 |

    An applet tag not supported in HTML5

    10 | 11 | 12 | Java applet that draws animated bubbles. 13 | 14 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /test/html5/html4/applet5.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | applet 7 | 8 | 9 | 10 |

    An applet tag is not supported in HTML5

    11 | 12 | 13 | Java applet that draws animated bubbles. 14 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /test/html5/html4/big4.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | big tag 6 | 7 | 8 | 9 |

    Normal text Bigger text

    10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /test/html5/html4/big5.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | big tag 7 | 8 | 11 | 12 | 13 |

    Normal text, then some <big> bigger text

    14 |

    Similar text, using span bigger text

    15 | 16 | 17 | -------------------------------------------------------------------------------- /test/html5/html4/blink5.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | blink tag 7 | 8 | 11 | 12 | 13 |

    Normal text, then some blink

    14 |

    Similar text, using span blink

    15 | 16 | 17 | -------------------------------------------------------------------------------- /test/html5/html4/center4.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | center tag 6 | 7 | 8 | 9 |
    10 |

    This text will be center-aligned.

    11 |
    12 |

    Nomal left text

    13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /test/html5/html4/dir4.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | dir tag 6 | 7 | 8 | 9 |

    dir tag for a list...

    10 | 11 |
  • html
  • 12 |
  • xhtml
  • 13 |
  • css
  • 14 |
    15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /test/html5/html4/dir5.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | dir tag 7 | 8 | 9 | 10 |

    dir tag for a list...

    11 | 12 |
  • html
  • 13 |
  • xhtml
  • 14 |
  • css
  • 15 |
    16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /test/html5/html4/frame_a.htm: -------------------------------------------------------------------------------- 1 | 2 | 3 |

    Frame A

    4 |

    Note: The frameset, frame, and noframes elements are not supported in HTML5.

    5 | 6 | 7 | -------------------------------------------------------------------------------- /test/html5/html4/frame_b.htm: -------------------------------------------------------------------------------- 1 | 2 | 3 |

    Frame B

    4 | 5 | 6 | -------------------------------------------------------------------------------- /test/html5/html4/frame_c.htm: -------------------------------------------------------------------------------- 1 | 2 | 3 |

    Frame C

    4 | 5 | 6 | -------------------------------------------------------------------------------- /test/html5/html4/frameset5.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | frameset, frame, noframes tags 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | <p>frameset, frame not supported</p> 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /test/html5/html4/marquee5.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | marquee 7 | 8 | 9 | 10 | Marquee scrolling text across the page 11 | 12 |

    A marquee tag is not supported in HTML5

    13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /test/html5/html4/strike4.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | strike tag 5 | 6 | 7 | 8 |

    Version 2.0 is not yet available! now available!

    9 | 10 |

    The strike element is not supported in HTML5. Use CSS instead.

    11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /test/html5/html4/testacro.bat: -------------------------------------------------------------------------------- 1 | @setlocal 2 | @call setexe 3 | @set TMPFIL=acronym5.html 4 | @if NOT EXIST %TMPFIL% ( 5 | @echo Unable to locate FILE %TMPFIL% 6 | @exit /b 1 7 | ) 8 | 9 | @REM %TMPEXE% -c -i --doctype html5 -o temptidy5.html --tidy-mark no --show-info no %TMPFIL% 10 | 11 | @call testone 12 | 13 | @echo See %TMPINFO% 14 | -------------------------------------------------------------------------------- /test/html5/html4/testbig.bat: -------------------------------------------------------------------------------- 1 | @setlocal 2 | @call setexe 3 | @set TMPFIL=big5.html 4 | @if NOT EXIST %TMPFIL% ( 5 | @echo Unable to locate FILE %TMPFIL% 6 | @exit /b 1 7 | ) 8 | 9 | @REM %TMPEXE% -c -i --doctype html5 -o temptidy5.html --tidy-mark no --show-info no %TMPFIL% 10 | 11 | @call testone 12 | 13 | @echo See %TMPINFO% 14 | 15 | -------------------------------------------------------------------------------- /test/html5/html4/testbody.bat: -------------------------------------------------------------------------------- 1 | @setlocal 2 | @call setexe 3 | @set TMPFIL=bodyatts5.html 4 | @if NOT EXIST %TMPEXE% ( 5 | @echo Unable to locate EXE %TMPEXE% 6 | @exit /b 1 7 | ) 8 | @if NOT EXIST %TMPFIL% ( 9 | @echo Can NOT locate %TMPFIL%! *** FIX ME *** 10 | @exit /b 1 11 | ) 12 | 13 | @call testone 14 | 15 | @echo see %TMPINFO% 16 | 17 | -------------------------------------------------------------------------------- /test/html5/html4/testcent.bat: -------------------------------------------------------------------------------- 1 | @setlocal 2 | @call setexe 3 | @set TMPFIL=center5.html 4 | @if NOT EXIST %TMPFIL% ( 5 | @echo Unable to locate FILE %TMPFIL% 6 | @exit /b 1 7 | ) 8 | 9 | @REM %TMPEXE% -i --doctype html5 -o temptidy5.html --tidy-mark no --show-info no %TMPFIL% 10 | 11 | @call testone 12 | 13 | @echo See %TMPINFO% 14 | 15 | -------------------------------------------------------------------------------- /test/html5/html4/testcent2.bat: -------------------------------------------------------------------------------- 1 | @setlocal 2 | @call setexe 3 | @set TMPFIL=center25.html 4 | @if NOT EXIST %TMPFIL% ( 5 | @echo Unable to locate FILE %TMPFIL% 6 | @exit /b 1 7 | ) 8 | 9 | @REM %TMPEXE% -i --doctype html5 -o temptidy5.html --tidy-mark no --show-info no %TMPFIL% 10 | 11 | @call testone 12 | 13 | @echo See %TMPINFO% 14 | 15 | -------------------------------------------------------------------------------- /test/html5/html4/testdir.bat: -------------------------------------------------------------------------------- 1 | @setlocal 2 | @call setexe 3 | @set TMPFIL=dir5.html 4 | @if NOT EXIST %TMPFIL% ( 5 | @echo Unable to locate FILE %TMPFIL% 6 | @exit /b 1 7 | ) 8 | 9 | @REM %TMPEXE% -c -i --doctype html5 -o temptidy5.html --tidy-mark no --show-info no %TMPFIL% 10 | @REM %TMPEXE% -i --doctype html5 -o temptidy5.html --tidy-mark no --show-info no %TMPFIL% 11 | 12 | @call testone 13 | 14 | @echo See %TMPINFO% 15 | -------------------------------------------------------------------------------- /test/html5/html4/testfont.bat: -------------------------------------------------------------------------------- 1 | @setlocal 2 | @call setexe 3 | @set TMPFIL=font5.html 4 | @if NOT EXIST %TMPFIL% ( 5 | @echo Unable to locate FILE %TMPFIL% 6 | @exit /b 1 7 | ) 8 | 9 | @call testone 10 | 11 | @echo See %TMPINFO% 12 | 13 | -------------------------------------------------------------------------------- /test/html5/html4/testi2.bat: -------------------------------------------------------------------------------- 1 | @setlocal 2 | @call setexe 3 | @set TMPFIL=index2.html 4 | 5 | @call testone 6 | 7 | @REM tidy5 -c -i --doctype html5 -o temptidy5.html --tidy-mark no index2.html 8 | 9 | -------------------------------------------------------------------------------- /test/html5/html4/testmarq.bat: -------------------------------------------------------------------------------- 1 | @setlocal 2 | @call setexe 3 | @set TMPFIL=marquee5.html 4 | @if NOT EXIST %TMPFIL% ( 5 | @echo Unable to locate FILE %TMPFIL% 6 | @exit /b 1 7 | ) 8 | 9 | @call testone 10 | 11 | @echo See %TMPINFO% 12 | 13 | -------------------------------------------------------------------------------- /test/html5/html4/teststrike.bat: -------------------------------------------------------------------------------- 1 | @setlocal 2 | @call setexe 3 | @set TMPFIL=strike5.html 4 | @if NOT EXIST %TMPFIL% ( 5 | @echo Unable to locate FILE %TMPFIL% 6 | @exit /b 1 7 | ) 8 | 9 | @call testone 10 | @REM %TMPEXE% -c -i --doctype html5 -o tempclean.html --tidy-mark no --show-info no %TMPFIL% 11 | @REM %TMPEXE% -i --doctype html5 -o tempnoclean.html --tidy-mark no --show-info no %TMPFIL% 12 | 13 | @echo See %TMPINFO% 14 | -------------------------------------------------------------------------------- /test/html5/html4/testtt.bat: -------------------------------------------------------------------------------- 1 | @setlocal 2 | @call setexe 3 | @set TMPFIL=tt5.html 4 | @if NOT EXIST %TMPFIL% ( 5 | @echo Unable to locate FILE %TMPFIL% 6 | @exit /b 1 7 | ) 8 | 9 | @call testone 10 | @REM %TMPEXE% -c -i --doctype html5 -o tempclean.html --tidy-mark no --show-info no %TMPFIL% 11 | @REM %TMPEXE% -i --doctype html5 -o tempnoclean.html --tidy-mark no --show-info no %TMPFIL% 12 | 13 | @echo See %TMPINFO% 14 | -------------------------------------------------------------------------------- /test/html5/mark.org.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | HTML5 mark tag 6 | 7 | 8 | 9 |

    Do not forget to buy milk today.

    10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /test/html5/mav.org.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | HTML5 nav tag 7 | 8 | 9 | 10 | 11 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /test/html5/min.org.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Minimum HTML5 document 6 | 7 | 8 | Content of the document...... 9 | 10 | 11 | -------------------------------------------------------------------------------- /test/html5/progress.org.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | HTML5 progress tag 7 | 8 | 9 | 10 | 11 | Downloading progress: 12 | 13 | 14 | 15 |

    Note: The progress tag is not supported in Internet Explorer 9 and earlier versions.

    16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /test/html5/rp.org.html: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | HTML5 ruby rt rp tags 7 | 8 | 9 | 10 | 11 | 12 | 漢 (ㄏㄢˋ) 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /test/html5/video.org.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | video tag 5 | 6 | 7 | 8 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /test/input/cfg_1003994.txt: -------------------------------------------------------------------------------- 1 | input-xml: yes 2 | -------------------------------------------------------------------------------- /test/input/cfg_1004008.txt: -------------------------------------------------------------------------------- 1 | input-xml: yes 2 | -------------------------------------------------------------------------------- /test/input/cfg_1004512.txt: -------------------------------------------------------------------------------- 1 | indent: auto 2 | char-encoding: latin1 3 | tidy-mark: no 4 | clean: yes 5 | drop-font-tags: no 6 | logical-emphasis: yes 7 | indent-attributes: yes 8 | 9 | -------------------------------------------------------------------------------- /test/input/cfg_1030944.txt: -------------------------------------------------------------------------------- 1 | // add-xml-decl: yes 2 | input-xml: yes 3 | output-xml: yes 4 | char-encoding: latin1 5 | -------------------------------------------------------------------------------- /test/input/cfg_1055398.txt: -------------------------------------------------------------------------------- 1 | clean: yes 2 | drop-font-tags: no 3 | -------------------------------------------------------------------------------- /test/input/cfg_1068087.txt: -------------------------------------------------------------------------------- 1 | indent: auto 2 | char-encoding: latin1 3 | tidy-mark: no 4 | clean: yes 5 | drop-font-tags: no 6 | logical-emphasis: yes 7 | indent-attributes: yes 8 | -------------------------------------------------------------------------------- /test/input/cfg_1078345.txt: -------------------------------------------------------------------------------- 1 | // Tidy configuration file for bug #540045 2 | enclose-block-text: yes 3 | -------------------------------------------------------------------------------- /test/input/cfg_1207443.txt: -------------------------------------------------------------------------------- 1 | output-xhtml: yes 2 | tidy-mark: no 3 | -------------------------------------------------------------------------------- /test/input/cfg_1210752.txt: -------------------------------------------------------------------------------- 1 | output-encoding: raw 2 | output-xhtml: yes 3 | -------------------------------------------------------------------------------- /test/input/cfg_1241723.txt: -------------------------------------------------------------------------------- 1 | indent: auto 2 | char-encoding: latin1 3 | tidy-mark: no 4 | clean: yes 5 | indent-attributes: yes 6 | 7 | -------------------------------------------------------------------------------- /test/input/cfg_1266647.txt: -------------------------------------------------------------------------------- 1 | char-encoding: utf8 2 | tidy-mark: no 3 | 4 | -------------------------------------------------------------------------------- /test/input/cfg_1286278.txt: -------------------------------------------------------------------------------- 1 | tidy-mark: no 2 | drop-empty-paras: no 3 | 4 | -------------------------------------------------------------------------------- /test/input/cfg_1365706.txt: -------------------------------------------------------------------------------- 1 | input-xml: yes 2 | output-xml: yes 3 | indent: auto 4 | wrap: 0 5 | -------------------------------------------------------------------------------- /test/input/cfg_1407266.txt: -------------------------------------------------------------------------------- 1 | #Ÿ 2 | -------------------------------------------------------------------------------- /test/input/cfg_1408034.txt: -------------------------------------------------------------------------------- 1 | tab-size:0 2 | -------------------------------------------------------------------------------- /test/input/cfg_1410061-1.txt: -------------------------------------------------------------------------------- 1 | decorate-inferred-ul: yes 2 | clean: yes 3 | -------------------------------------------------------------------------------- /test/input/cfg_1410061-2.txt: -------------------------------------------------------------------------------- 1 | clean: yes 2 | -------------------------------------------------------------------------------- /test/input/cfg_1410061.txt: -------------------------------------------------------------------------------- 1 | decorate-inferred-ul: yes 2 | clean: yes -------------------------------------------------------------------------------- /test/input/cfg_1423252.txt: -------------------------------------------------------------------------------- 1 | tidy-mark: no 2 | -------------------------------------------------------------------------------- /test/input/cfg_1448730.txt: -------------------------------------------------------------------------------- 1 | input-xml: yes 2 | output-xml: yes 3 | -------------------------------------------------------------------------------- /test/input/cfg_1452744.txt: -------------------------------------------------------------------------------- 1 | accessibility-check: 3 2 | doctype: strict 3 | -------------------------------------------------------------------------------- /test/input/cfg_1510101.txt: -------------------------------------------------------------------------------- 1 | input-xml: yes 2 | output-xml: yes 3 | indent: auto 4 | wrap: 0 5 | -------------------------------------------------------------------------------- /test/input/cfg_1573338.txt: -------------------------------------------------------------------------------- 1 | input-xml: yes 2 | output-xml: yes 3 | indent: auto 4 | literal-attributes: yes 5 | indent-attributes: yes 6 | wrap: 78 7 | -------------------------------------------------------------------------------- /test/input/cfg_1590220-1.txt: -------------------------------------------------------------------------------- 1 | tidy-mark: no 2 | -------------------------------------------------------------------------------- /test/input/cfg_1590220-2.txt: -------------------------------------------------------------------------------- 1 | tidy-mark: no 2 | -------------------------------------------------------------------------------- /test/input/cfg_1642186-1.txt: -------------------------------------------------------------------------------- 1 | // not really required since this is defaul 2 | skip-nested: yes 3 | indent: auto 4 | tidy-mark: no 5 | clean: yes 6 | logical-emphasis: yes 7 | indent-attributes: yes 8 | show-info: no 9 | -------------------------------------------------------------------------------- /test/input/cfg_1642186.txt: -------------------------------------------------------------------------------- 1 | skip-quotes: yes 2 | -------------------------------------------------------------------------------- /test/input/cfg_1652223.txt: -------------------------------------------------------------------------------- 1 | show-warnings: no 2 | 3 | -------------------------------------------------------------------------------- /test/input/cfg_1720953.txt: -------------------------------------------------------------------------------- 1 | sort-attributes: alpha 2 | -------------------------------------------------------------------------------- /test/input/cfg_1986717-1.txt: -------------------------------------------------------------------------------- 1 | tidy-mark: no 2 | anchor-as-name: no 3 | -------------------------------------------------------------------------------- /test/input/cfg_1986717-2.txt: -------------------------------------------------------------------------------- 1 | tidy-mark: no 2 | anchor-as-name: yes 3 | -------------------------------------------------------------------------------- /test/input/cfg_1986717-3.txt: -------------------------------------------------------------------------------- 1 | tidy-mark: no 2 | anchor-as-name: no 3 | -------------------------------------------------------------------------------- /test/input/cfg_2046048.txt: -------------------------------------------------------------------------------- 1 | accessibility-check: 2 2 | -------------------------------------------------------------------------------- /test/input/cfg_2085175.txt: -------------------------------------------------------------------------------- 1 | // Oct.2008 HTML Tidy configuration file for test 2085175 2 | indent: auto 3 | tidy-mark: no 4 | clean: yes 5 | bare: yes 6 | word-2000: yes 7 | -------------------------------------------------------------------------------- /test/input/cfg_2705873-1.txt: -------------------------------------------------------------------------------- 1 | accessibility-check: 2 2 | -------------------------------------------------------------------------------- /test/input/cfg_2705873-2.txt: -------------------------------------------------------------------------------- 1 | accessibility-check: 2 2 | -------------------------------------------------------------------------------- /test/input/cfg_2709860.txt: -------------------------------------------------------------------------------- 1 | accessibility-check: 1 2 | -------------------------------------------------------------------------------- /test/input/cfg_427812.txt: -------------------------------------------------------------------------------- 1 | // Tidy configuration file for bug #427812 2 | output-xhtml: yes 3 | -------------------------------------------------------------------------------- /test/input/cfg_427821.txt: -------------------------------------------------------------------------------- 1 | // Tidy configuration file for bug #427821 2 | output-xhtml: yes 3 | -------------------------------------------------------------------------------- /test/input/cfg_427825.txt: -------------------------------------------------------------------------------- 1 | // Tidy configuration file for bug #427825 2 | new-inline-tags: lm:xcode 3 | 4 | -------------------------------------------------------------------------------- /test/input/cfg_427826.txt: -------------------------------------------------------------------------------- 1 | // Tidy configuration file for bug #427826 2 | indent: auto 3 | char-encoding: latin1 4 | tidy-mark: no 5 | clean: yes 6 | drop-font-tags: yes 7 | logical-emphasis: yes 8 | indent-attributes: yes 9 | output-xhtml: yes 10 | 11 | -------------------------------------------------------------------------------- /test/input/cfg_427835.txt: -------------------------------------------------------------------------------- 1 | // Tidy configuration file for bug #427835 2 | output-xhtml: yes 3 | -------------------------------------------------------------------------------- /test/input/cfg_427837.txt: -------------------------------------------------------------------------------- 1 | // Tidy configuration file for bug #427837 2 | // add-xml-decl: yes 3 | input-xml: yes 4 | output-xml: yes 5 | char-encoding: latin1 6 | -------------------------------------------------------------------------------- /test/input/cfg_427839.txt: -------------------------------------------------------------------------------- 1 | // Tidy configuration file for bug #427839 2 | output-xhtml: yes 3 | doctype: omit -------------------------------------------------------------------------------- /test/input/cfg_427845.txt: -------------------------------------------------------------------------------- 1 | // Tidy configuration file for bug #427845 2 | wrap: 60 -------------------------------------------------------------------------------- /test/input/cfg_431716.txt: -------------------------------------------------------------------------------- 1 | // Tidy configuration file for bug #431716 2 | split: yes -------------------------------------------------------------------------------- /test/input/cfg_431721.txt: -------------------------------------------------------------------------------- 1 | // Tidy configuration file for bug #431721 2 | indent: auto 3 | new-inline-tags: o:p 4 | char-encoding: latin1 5 | tidy-mark: no 6 | clean: yes 7 | drop-font-tags: yes 8 | logical-emphasis: yes 9 | word-2000: yes 10 | indent-attributes: yes 11 | 12 | -------------------------------------------------------------------------------- /test/input/cfg_431736.txt: -------------------------------------------------------------------------------- 1 | // Tidy configuration file for bug #431736 2 | output-xhtml: yes 3 | -------------------------------------------------------------------------------- /test/input/cfg_431889.txt: -------------------------------------------------------------------------------- 1 | // Config file for bug [ #431889 ] Config file options w/"param" don't work 2 | doctype: "-//ACME//DTD HTML 3.14159//EN" 3 | alt-text: "Alternate" -------------------------------------------------------------------------------- /test/input/cfg_431895.txt: -------------------------------------------------------------------------------- 1 | // Tidy configuration file for bug #431895 2 | quiet: yes 3 | markup: no 4 | gnu-emacs: yes -------------------------------------------------------------------------------- /test/input/cfg_431956.txt: -------------------------------------------------------------------------------- 1 | // Tidy configuration file for bug #431956 2 | input-xml: yes 3 | output-xml: yes 4 | -------------------------------------------------------------------------------- /test/input/cfg_431958.txt: -------------------------------------------------------------------------------- 1 | // Tidy configuration file for bug #431958 2 | // Warning - this will modify the INPUT file (each time it is run) 3 | indent: auto 4 | write-back: yes -------------------------------------------------------------------------------- /test/input/cfg_432677.txt: -------------------------------------------------------------------------------- 1 | // Tidy configuration file for bug #432677 2 | output-xml: yes 3 | -------------------------------------------------------------------------------- /test/input/cfg_433012.txt: -------------------------------------------------------------------------------- 1 | indent: auto 2 | indent-attributes: yes 3 | tidy-mark: no 4 | clean: yes 5 | -------------------------------------------------------------------------------- /test/input/cfg_433604.txt: -------------------------------------------------------------------------------- 1 | // Tidy configuration file for bug #433604 2 | input-xml: yes 3 | -------------------------------------------------------------------------------- /test/input/cfg_433607.txt: -------------------------------------------------------------------------------- 1 | // Tidy configuration file for bug #433607 2 | input-xml: yes 3 | -------------------------------------------------------------------------------- /test/input/cfg_433670.txt: -------------------------------------------------------------------------------- 1 | // Tidy configuration file for bug #433670 2 | input-xml: yes 3 | -------------------------------------------------------------------------------- /test/input/cfg_433856.txt: -------------------------------------------------------------------------------- 1 | // Tidy configuration file for bug #433856 2 | drop-font-tags: yes -------------------------------------------------------------------------------- /test/input/cfg_434100.txt: -------------------------------------------------------------------------------- 1 | // Tidy configuration file for bug #434100 2 | input-xml: yes -------------------------------------------------------------------------------- /test/input/cfg_434940.txt: -------------------------------------------------------------------------------- 1 | // Tidy configuration file for bug #434940 2 | show-body-only: yes -------------------------------------------------------------------------------- /test/input/cfg_438954.txt: -------------------------------------------------------------------------------- 1 | // Tidy configuration file for bug #438954 2 | hide-endtags: yes -------------------------------------------------------------------------------- /test/input/cfg_443576.txt: -------------------------------------------------------------------------------- 1 | // now that skip-nested defaults to 'on', need it off for this test 2 | skip-nested: no 3 | // plus default HTML Tidy configuration - 20150219 4 | indent: auto 5 | char-encoding: latin1 6 | tidy-mark: no 7 | clean: yes 8 | logical-emphasis: yes 9 | indent-attributes: yes 10 | -------------------------------------------------------------------------------- /test/input/cfg_444394.txt: -------------------------------------------------------------------------------- 1 | // Tidy configuration file for bug #444394 2 | indent: auto 3 | new-inline-tags: o:p 4 | char-encoding: latin1 5 | tidy-mark: no 6 | clean: yes 7 | drop-font-tags: yes 8 | logical-emphasis: yes 9 | word-2000: yes 10 | indent-attributes: yes 11 | 12 | -------------------------------------------------------------------------------- /test/input/cfg_449348.txt: -------------------------------------------------------------------------------- 1 | output-xhtml: yes 2 | -------------------------------------------------------------------------------- /test/input/cfg_463066.txt: -------------------------------------------------------------------------------- 1 | // Tidy configuration file for bug #463066 2 | word-2000: yes 3 | 4 | -------------------------------------------------------------------------------- /test/input/cfg_470663.txt: -------------------------------------------------------------------------------- 1 | // Tidy configuration file for bug #470663 2 | word-2000: yes 3 | 4 | -------------------------------------------------------------------------------- /test/input/cfg_473490.txt: -------------------------------------------------------------------------------- 1 | // Tidy configuration file for bug #473490 2 | tidy-mark: no 3 | wrap: 0 4 | output-xhtml: yes 5 | doctype: auto 6 | quote-nbsp: yes 7 | uppercase-tags: yes 8 | quote-ampersand: yes 9 | add-xml-space: no 10 | show-warnings:no 11 | quiet: yes 12 | -------------------------------------------------------------------------------- /test/input/cfg_480406.txt: -------------------------------------------------------------------------------- 1 | // Tidy configuration file for bug #480406 2 | input-xml: yes 3 | output-xml: yes 4 | -------------------------------------------------------------------------------- /test/input/cfg_480701.txt: -------------------------------------------------------------------------------- 1 | // Tidy configuration file for bug #480701 2 | input-xml: yes 3 | output-xhtml: yes 4 | -------------------------------------------------------------------------------- /test/input/cfg_480843.txt: -------------------------------------------------------------------------------- 1 | // Tidy configuration file for bug #480843 2 | output-xhtml: yes 3 | -------------------------------------------------------------------------------- /test/input/cfg_500236.txt: -------------------------------------------------------------------------------- 1 | // Tidy configuration file for bug #500236 2 | word-2000: yes 3 | input-xml: yes 4 | output-xml: yes 5 | 6 | -------------------------------------------------------------------------------- /test/input/cfg_503436.txt: -------------------------------------------------------------------------------- 1 | // Tidy configuration file for bug #503436 2 | input-xml: yes 3 | -------------------------------------------------------------------------------- /test/input/cfg_511243.txt: -------------------------------------------------------------------------------- 1 | // Tidy configuration file for bug #511243 2 | char-encoding: utf8 3 | -------------------------------------------------------------------------------- /test/input/cfg_514348.txt: -------------------------------------------------------------------------------- 1 | // Tidy configuration file for bug #514348 2 | uppercase-tags: true 3 | indent: auto 4 | indent-spaces: 2 -------------------------------------------------------------------------------- /test/input/cfg_517550.txt: -------------------------------------------------------------------------------- 1 | // Tidy configuration file for bug #517550 2 | output-xhtml: yes 3 | -------------------------------------------------------------------------------- /test/input/cfg_531964.txt: -------------------------------------------------------------------------------- 1 | // Tidy configuration file for bug 531964 2 | output-xhtml: yes 3 | -------------------------------------------------------------------------------- /test/input/cfg_532535.txt: -------------------------------------------------------------------------------- 1 | // Tidy configuration file for bug #532535 2 | word-2000: yes 3 | -------------------------------------------------------------------------------- /test/input/cfg_533233.txt: -------------------------------------------------------------------------------- 1 | output-xhtml: yes 2 | indent: auto 3 | -------------------------------------------------------------------------------- /test/input/cfg_537604.txt: -------------------------------------------------------------------------------- 1 | // Tidy configuration file for bug #537604 2 | input-xml: yes 3 | clean: no 4 | -------------------------------------------------------------------------------- /test/input/cfg_540045.txt: -------------------------------------------------------------------------------- 1 | // Tidy configuration file for bug #540045 2 | wrap: 64 3 | indent: no 4 | indent-spaces: 4 5 | add-xml-decl: yes 6 | #output-xhtml: yes 7 | break-before-br: yes 8 | clean: yes 9 | logical-emphasis: yes 10 | enclose-text: yes 11 | enclose-block-text: yes 12 | -------------------------------------------------------------------------------- /test/input/cfg_540571.txt: -------------------------------------------------------------------------------- 1 | // Config for bug #540571 Inconsistent behaviour with span inline element 2 | output-xhtml: yes 3 | wrap: 255 4 | clean: no 5 | indent: auto 6 | -------------------------------------------------------------------------------- /test/input/cfg_542029.txt: -------------------------------------------------------------------------------- 1 | // Tidy configuration file for bug #542029 2 | add-xml-decl: yes 3 | output-xml: yes 4 | -------------------------------------------------------------------------------- /test/input/cfg_543262.txt: -------------------------------------------------------------------------------- 1 | doctype: omit 2 | output-xhtml: yes 3 | char-encoding: latin1 4 | numeric-entities: yes 5 | quiet: yes 6 | -------------------------------------------------------------------------------- /test/input/cfg_545772.txt: -------------------------------------------------------------------------------- 1 | // Tidy configuration file for bug #547057 2 | output-xhtml: yes 3 | -------------------------------------------------------------------------------- /test/input/cfg_570027.txt: -------------------------------------------------------------------------------- 1 | // Tidy configuration file for bug 570027 2 | clean: yes 3 | word-2000: yes 4 | 5 | -------------------------------------------------------------------------------- /test/input/cfg_578216.txt: -------------------------------------------------------------------------------- 1 | // Tidy configuration file for bug 578216 2 | indent: yes 3 | -------------------------------------------------------------------------------- /test/input/cfg_590716.txt: -------------------------------------------------------------------------------- 1 | preserve-entities: yes 2 | tidy-mark: no 3 | -------------------------------------------------------------------------------- /test/input/cfg_616744.txt: -------------------------------------------------------------------------------- 1 | input-xml: yes 2 | new-pre-tags: programlisting 3 | new-inline-tags: literal 4 | indent: no 5 | indent-spaces: 0 6 | wrap: 999999 7 | -------------------------------------------------------------------------------- /test/input/cfg_634889.txt: -------------------------------------------------------------------------------- 1 | tidy-mark: no 2 | output-xml: yes 3 | drop-proprietary-attributes: no 4 | new-inline-tags: o:lock, o:p, v-f, v-formula, v-formulas, 5 | v-imagedata, v-path, v-shape, v-shapetype, v-stroke 6 | new-empty-tags: 7 | new-blocklevel-tags: 8 | new-pre-tags: 9 | wrap-sections: no 10 | drop-empty-paras: no 11 | -------------------------------------------------------------------------------- /test/input/cfg_640473.txt: -------------------------------------------------------------------------------- 1 | # [640743] same as default config ... 2 | indent: auto 3 | char-encoding: latin1 4 | tidy-mark: no 5 | clean: yes 6 | drop-font-tags: yes 7 | logical-emphasis: yes 8 | indent-attributes: yes 9 | 10 | # + declared tags 11 | new-blocklevel-tags: foo 12 | new-inline-tags: bar 13 | new-empty-tags: zippo 14 | new-pre-tags: baz 15 | -------------------------------------------------------------------------------- /test/input/cfg_640474.txt: -------------------------------------------------------------------------------- 1 | // Tidy configuration file for bug #640474 2 | // add-xml-decl: yes 3 | input-xml: yes 4 | output-xml: yes 5 | char-encoding: latin1 6 | -------------------------------------------------------------------------------- /test/input/cfg_646946.txt: -------------------------------------------------------------------------------- 1 | // Tidy configuration file for bug #640474 2 | // add-xml-decl: yes 3 | input-xml: yes 4 | output-xml: yes 5 | -------------------------------------------------------------------------------- /test/input/cfg_647255.txt: -------------------------------------------------------------------------------- 1 | char-encoding: utf16le 2 | newline: LF 3 | output-xhtml: yes 4 | indent: auto 5 | indent-attributes: yes 6 | -------------------------------------------------------------------------------- /test/input/cfg_647900.txt: -------------------------------------------------------------------------------- 1 | // HTML Tidy configuration file created by TidyGUI 2 | indent: auto 3 | tidy-mark: no 4 | clean: yes 5 | drop-font-tags: yes 6 | logical-emphasis: yes 7 | indent-attributes: yes 8 | force-output: yes 9 | 10 | -------------------------------------------------------------------------------- /test/input/cfg_649812.txt: -------------------------------------------------------------------------------- 1 | char-encoding: utf16le 2 | newline: CR 3 | output-xhtml: yes 4 | indent: auto 5 | indent-attributes: yes 6 | -------------------------------------------------------------------------------- /test/input/cfg_656889.txt: -------------------------------------------------------------------------------- 1 | indent: auto 2 | wrap: 55555 3 | alt-text: pic 4 | tidy-mark: no 5 | clean: yes 6 | -------------------------------------------------------------------------------- /test/input/cfg_658230.txt: -------------------------------------------------------------------------------- 1 | char-encoding: big5 2 | doctype: strict 3 | tidy-mark: no 4 | -------------------------------------------------------------------------------- /test/input/cfg_660397.txt: -------------------------------------------------------------------------------- 1 | char-encoding: ibm858 2 | indent: auto 3 | tidy-mark: no 4 | output-xhtml: yes 5 | -------------------------------------------------------------------------------- /test/input/cfg_661606.txt: -------------------------------------------------------------------------------- 1 | char-encoding: shiftjis 2 | ncr: yes 3 | tidy-mark: no 4 | output-xhtml: yes 5 | clean: yes 6 | indent: auto 7 | logical-emphasis: yes 8 | -------------------------------------------------------------------------------- /test/input/cfg_676156.txt: -------------------------------------------------------------------------------- 1 | char-encoding: utf8 2 | -------------------------------------------------------------------------------- /test/input/cfg_678268.txt: -------------------------------------------------------------------------------- 1 | indent: auto 2 | char-encoding: latin1 3 | tidy-mark: no 4 | clean: yes 5 | drop-font-tags: yes 6 | logical-emphasis: yes 7 | indent-attributes: yes 8 | output-xhtml: yes 9 | 10 | -------------------------------------------------------------------------------- /test/input/cfg_688746.txt: -------------------------------------------------------------------------------- 1 | char-encoding: utf8 2 | -------------------------------------------------------------------------------- /test/input/cfg_695408.txt: -------------------------------------------------------------------------------- 1 | indent: auto 2 | indent-attributes: yes 3 | tidy-mark: no 4 | clean: yes 5 | drop-font-tags: yes 6 | drop-proprietary-attributes: no 7 | 8 | -------------------------------------------------------------------------------- /test/input/cfg_795643-1.txt: -------------------------------------------------------------------------------- 1 | show-body-only: auto 2 | -------------------------------------------------------------------------------- /test/input/cfg_795643-2.txt: -------------------------------------------------------------------------------- 1 | show-body-only: auto 2 | -------------------------------------------------------------------------------- /test/input/cfg_default.txt: -------------------------------------------------------------------------------- 1 | // HTML Tidy configuration - 20150219 2 | // remove this drop-font-tags: yes 3 | indent: auto 4 | char-encoding: latin1 5 | tidy-mark: no 6 | clean: yes 7 | logical-emphasis: yes 8 | indent-attributes: yes 9 | // output-xhtml: yes 10 | 11 | -------------------------------------------------------------------------------- /test/input/in_1003361.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 1003361 4 | 5 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /test/input/in_1003994.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /test/input/in_1004008.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | " 4 | -------------------------------------------------------------------------------- /test/input/in_1004051.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | font 5 | 6 | 7 | yy 8 | 9 | 10 | -------------------------------------------------------------------------------- /test/input/in_1004512.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | font tag with -clean 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /test/input/in_1014993.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | php-like tag 5 | 6 | 7 | 8 | 9 | 10 |
    11 | 12 | 13 | -------------------------------------------------------------------------------- /test/input/in_1015959.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | [ #1015959 ] inline propagation 5 | 6 | 7 | 8 |

    1

    9 |

    2

    10 |
    11 | 12 | 13 | -------------------------------------------------------------------------------- /test/input/in_1030944.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /test/input/in_1050673.html: -------------------------------------------------------------------------------- 1 | 2 |