summaryrefslogtreecommitdiffstats
path: root/htdocs/scripts/prefill.js
diff options
context:
space:
mode:
authorot <ot@localhost>2007-04-10 02:59:56 +0000
committerot <ot@localhost>2007-04-10 02:59:56 +0000
commitc18868a9db1850b228d733274e212a5f94c849e4 (patch)
tree1a18dfc6ead485b5b8759153fd66f72d09fe4dd2 /htdocs/scripts/prefill.js
parent9e72819ee25cab62a866344563750aaa117926b7 (diff)
downloadmarkup-validator-c18868a9db1850b228d733274e212a5f94c849e4.zip
markup-validator-c18868a9db1850b228d733274e212a5f94c849e4.tar.gz
markup-validator-c18868a9db1850b228d733274e212a5f94c849e4.tar.bz2
XHTML-izing the XHTML sample
Diffstat (limited to 'htdocs/scripts/prefill.js')
-rw-r--r--htdocs/scripts/prefill.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/htdocs/scripts/prefill.js b/htdocs/scripts/prefill.js
index 7f9636a..f763c13 100644
--- a/htdocs/scripts/prefill.js
+++ b/htdocs/scripts/prefill.js
@@ -1,7 +1,7 @@
// prefill validator "direct input" form with basic document structure
-var text_xhtml1 = '<?xml version="1.0" encoding="utf-8"?>\n<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"\n "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">\n <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">\n <head>\n <title>I AM YOUR DOCUMENT TITLE REPLACE ME</title>\n <meta http-equiv="content-type" content="text/html;charset=utf-8" />\n <meta http-equiv="Content-Style-Type" content="text/css" />\n </head>\n <body>\n <p>… Your HTML content here …</p>\n</body>\n </html>';
+var text_xhtml1 = '<?xml version="1.0" encoding="utf-8"?>\n<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"\n "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">\n <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">\n <head>\n <title>I AM YOUR DOCUMENT TITLE REPLACE ME</title>\n <meta http-equiv="content-type" content="application/xhtml+xml;charset=utf-8" />\n <meta http-equiv="content-style-type" content="text/css" />\n </head>\n <body>\n <p>… Your HTML content here …</p>\n</body>\n </html>';
var text_html401 = '<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"\n "http://www.w3.org/TR/html4/strict.dtd">\n<html>\n<head>\n <title>I AM YOUR DOCUMENT TITLE REPLACE ME</title>\n <meta http-equiv="content-type" content="text/html;charset=utf-8">\n <meta http-equiv="Content-Style-Type" content="text/css">\n</head>\n<body>\n <p>… Your HTML content here …</p>\n</body>\n</html>';