Commit 924784a8eb933ef69ec6a96e6f126c143462a489

Golmote 2017-12-05T21:38:43

Unescaped Markup: Fix ambiguity in documentation by improving examples. Fix #1197

diff --git a/plugins/unescaped-markup/index.html b/plugins/unescaped-markup/index.html
index 6a31536..e2ed7e2 100644
--- a/plugins/unescaped-markup/index.html
+++ b/plugins/unescaped-markup/index.html
@@ -29,11 +29,15 @@
 	<p>This plugin provides several methods of achieving the same thing:</p>
 
 	<ul>
-		<li>Instead of using <code>&lt;pre>&lt;code></code> elements, use <code>&lt;script type="text/plain"></code></li>
+		<li>Instead of using <code>&lt;pre>&lt;code></code> elements, use <code>&lt;script type="text/plain"></code>
+		<pre><code>&lt;script type="text/plain" class="language-markup">
+&lt;p>Example&lt;/p>
+&lt;/script></code></pre>
+		</li>
 		<li>Use a HTML-comment to escape your code
-		<pre><code>&lt;pre>&lt;code>&lt;!--
+		<pre><code>&lt;pre class="language-markup">&lt;code>&lt;!--
 &lt;p>Example&lt;/p>
--->&lt;/pre>&lt;/code></code></pre></li>
+-->&lt;/code>&lt;/pre></code></pre></li>
 	</ul>
 </section>