Replace escape <,> with <, >

for i in *.html.docuwiki; do perl -pi -e "s/&gt;/>/g" $i; done
for i in *.html.docuwiki; do perl -pi -e "s/&lt;/</g" $i; done
This commit is contained in:
2021-03-11 23:50:37 +00:00
parent 11889ecf9e
commit c81979dcbf
63 changed files with 573 additions and 573 deletions
+51 -51
View File
@@ -2,8 +2,8 @@
\\
&lt;head&gt;
&lt;style type="text/css"&gt;
<head>
<style type="text/css">
.title{
background-color:#ffffff;
font-size:30px;
@@ -92,65 +92,65 @@
-moz-border-radius: ;
padding: 5;
}
&lt;/style&gt;
&lt;/head&gt;
</style>
</head>
&lt;h1 class="title"&gt;Here is a test for the title format.&lt;/h1&gt;
<h1 class="title">Here is a test for the title format.</h1>
&lt;h3 class="header"&gt;Here is a test for the header format.&lt;/h3&gt;
<h3 class="header">Here is a test for the header format.</h3>
&lt;p class="body"&gt;Here is a test for the tutorial body format.&lt;/p&gt;
<p class="body">Here is a test for the tutorial body format.</p>
&lt;p class="note"&gt;&lt;br&gt;Here is a test for a note/warning/tip.&lt;/p&gt;
<p class="note"><br>Here is a test for a note/warning/tip.</p>
&lt;p class="code"&gt;&lt;br&gt;Here is a test for the code format.&lt;/p&gt;
<p class="code"><br>Here is a test for the code format.</p>
&lt;p class="reference"&gt;&lt;br&gt;Here is a test for the reference format.&lt;/p&gt;
<p class="reference"><br>Here is a test for the reference format.</p>
&lt;table class="table"&gt;
&lt;tr&gt;&lt;th&gt; &lt;/th&gt;
&lt;th&gt;Table Header 1&lt;/th&gt;
&lt;th&gt;Table Header 2&lt;/th&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;th&gt;Table Header 3&lt;/th&gt;
&lt;td&gt;TABLE DATA&lt;/td&gt;
&lt;td&gt;TABLE DATA&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;th&gt;Table Header 4&lt;/th&gt;
&lt;td&gt;TABLE DATA&lt;/td&gt;
&lt;td&gt;TABLE DATA&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;th&gt;Table Header 5&lt;/th&gt;
&lt;td&gt;TABLE DATA&lt;/td&gt;
&lt;td&gt;TABLE DATA&lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;
<table class="table">
<tr><th> </th>
<th>Table Header 1</th>
<th>Table Header 2</th>
</tr>
<tr>
<th>Table Header 3</th>
<td>TABLE DATA</td>
<td>TABLE DATA</td>
</tr>
<tr>
<th>Table Header 4</th>
<td>TABLE DATA</td>
<td>TABLE DATA</td>
</tr>
<tr>
<th>Table Header 5</th>
<td>TABLE DATA</td>
<td>TABLE DATA</td>
</tr>
</table>
&lt;dl&gt;
&lt;dt&gt;Section 1&lt;/dt&gt;
&lt;dd&gt;Section 1.1&lt;/dd&gt;
&lt;dd&gt;Section 1.2&lt;/dd&gt;
&lt;dd&gt;Section 1.3&lt;/dd&gt;
&lt;dt&gt;Section 2&lt;/dt&gt;
&lt;dd&gt;Section 2.1&lt;/dd&gt;
&lt;dt&gt;Section 3&lt;/dt&gt;
&lt;dd&gt;Section 3.1&lt;/dd&gt;
&lt;dd&gt;Section 3.2&lt;/dd&gt;
&lt;dt&gt;Section 4&lt;/dt&gt;
&lt;dd&gt;Section 4.1&lt;/dd&gt;
&lt;dd&gt;Section 4.2&lt;/dd&gt;
&lt;/dl&gt;
<dl>
<dt>Section 1</dt>
<dd>Section 1.1</dd>
<dd>Section 1.2</dd>
<dd>Section 1.3</dd>
<dt>Section 2</dt>
<dd>Section 2.1</dd>
<dt>Section 3</dt>
<dd>Section 3.1</dd>
<dd>Section 3.2</dd>
<dt>Section 4</dt>
<dd>Section 4.1</dd>
<dd>Section 4.2</dd>
</dl>
&lt;a class="link" href="http://www.example.com"&gt;Example link&lt;/a&gt;
<a class="link" href="http://www.example.com">Example link</a>
&lt;br&gt;
&lt;img src="http://sdf.org/tutorials/images/example.png" alt="Example" height="128" width="128"/&gt;&lt;br&gt;
<br>
<img src="http://sdf.org/tutorials/images/example.png" alt="Example" height="128" width="128"/><br>
&lt;br&gt;
&lt;pre class="reference"&gt;
<br>
<pre class="reference">
Book:
Author's last name, first initial. (Publication date). Book title. Additional information. City of publication: Publishing company.
@@ -165,6 +165,6 @@
Online document:
Author's name. (Date of publication). Title of work. Retrieved month day, year, from full URL
&lt;/pre&gt;
</pre>
$Id$