forked from pool/python-restview
91 lines
3.7 KiB
Diff
91 lines
3.7 KiB
Diff
|
diff --git a/src/restview/tests.py b/src/restview/tests.py
|
||
|
index 71aeb77..c840cb8 100644
|
||
|
--- a/src/restview/tests.py
|
||
|
+++ b/src/restview/tests.py
|
||
|
@@ -541,10 +541,9 @@ def doctest_RestViewer_rest_to_html():
|
||
|
... ''', settings={'cloak_email_addresses': True}).strip())
|
||
|
... # doctest: +ELLIPSIS,+REPORT_NDIFF
|
||
|
<?xml version="1.0" encoding="utf-8" ?>
|
||
|
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||
|
+ <!DOCTYPE html...>
|
||
|
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
||
|
<head>
|
||
|
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||
|
...
|
||
|
<title>example</title>
|
||
|
<style type="text/css">
|
||
|
@@ -556,7 +555,7 @@ def doctest_RestViewer_rest_to_html():
|
||
|
</style>
|
||
|
</head>
|
||
|
<body>
|
||
|
- <div class="document" id="example">
|
||
|
+ <main id="example">
|
||
|
<h1 class="title">example</h1>
|
||
|
<BLANKLINE>
|
||
|
<p>This is a doctest:</p>
|
||
|
@@ -570,11 +569,9 @@ def doctest_RestViewer_rest_to_html():
|
||
|
<p>This is a reference: <a class="reference external" href="http://example.com/README.rst">README.rst</a></p>
|
||
|
<p>This is an email: <a class="reference external" href="mailto:marius%40gedmin.as">marius<span>@</span>gedmin<span>.</span>as</a></p>
|
||
|
<p>This is a literal block:</p>
|
||
|
- <pre class="literal-block">
|
||
|
- See <a href="CHANGES.rst">CHANGES.rst</a>, mkay?
|
||
|
- </pre>
|
||
|
+ <pre class="literal-block">See <a href="CHANGES.rst">CHANGES.rst</a>, mkay?</pre>
|
||
|
<p>This is an inline literal: <tt class="docutils literal"><a href="README.txt">README.txt</a></tt>.</p>
|
||
|
- </div>
|
||
|
+ </main>
|
||
|
</body>
|
||
|
</html>
|
||
|
|
||
|
@@ -594,10 +591,7 @@ def doctest_RestViewer_rest_to_html_css_url():
|
||
|
... ''').strip())
|
||
|
... # doctest: +ELLIPSIS,+REPORT_NDIFF
|
||
|
<?xml version="1.0" encoding="utf-8" ?>
|
||
|
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||
|
- <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
||
|
- <head>
|
||
|
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||
|
+ <!DOCTYPE html...>
|
||
|
...
|
||
|
<title>...</title>
|
||
|
<link rel="stylesheet" href="http://example.com/my.css" type="text/css" />
|
||
|
@@ -606,11 +600,11 @@ def doctest_RestViewer_rest_to_html_css_url():
|
||
|
</style>
|
||
|
</head>
|
||
|
<body>
|
||
|
- <div class="document">
|
||
|
+ <main>
|
||
|
<BLANKLINE>
|
||
|
<BLANKLINE>
|
||
|
<p>Some text</p>
|
||
|
- </div>
|
||
|
+ </main>
|
||
|
</body>
|
||
|
</html>
|
||
|
|
||
|
@@ -729,21 +723,18 @@ def doctest_RestViewer_rest_to_html_pypi_strict():
|
||
|
... ''').strip().replace(""", '"'))
|
||
|
... # doctest: +ELLIPSIS,+REPORT_NDIFF
|
||
|
<?xml version="1.0" encoding="utf-8" ?>
|
||
|
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||
|
- <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
||
|
- <head>
|
||
|
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||
|
+ <!DOCTYPE html...>
|
||
|
...
|
||
|
<title>Hello</title>
|
||
|
<style type="text/css">
|
||
|
...
|
||
|
</head>
|
||
|
<body>
|
||
|
- <div class="document" id="hello">
|
||
|
+ <main id="hello">
|
||
|
<h1 class="title">Hello</h1>
|
||
|
<BLANKLINE>
|
||
|
<p><a href="http://www.example.com" rel="nofollow">This is fine</a>.</p>
|
||
|
- </div>
|
||
|
+ </main>
|
||
|
</body>
|
||
|
</html>
|
||
|
|