diff --git a/readme.txt b/readme.txt index 0f08121..ae88055 100644 --- a/readme.txt +++ b/readme.txt @@ -132,27 +132,25 @@ Once the settings are configured, you can enable syntax highlighting for any cod * Wrap multi-line code with pre & code tags: <pre><code>...</code></pre> * Wrap single-line code with code tags: <code>...</code> (Prism.js only) -With the proper markup in place, you can indicate a specific language by adding a class of language-*** or lang-*** to the <code> tag (where *** is the language identifier). - -For example, to indicate PHP as the language for a single-line code snippet (Prism.js only): +With the proper markup in place, you can indicate a specific language by adding a class of language-*** or lang-*** to the <code> tag (where *** is the language identifier). For example, to indicate PHP as the language for a single-line code snippet (Prism.js only): <code class="language-php"><?php echo 'Hello world'; ?></code> Likewise, to indicate HTML as the language for a multi-line code snippet: -

-		
-			
-				
-				
-				
-			
-				
-				
-				
-			
-		
NameSideRole
DarthDarkSith
-
+<pre><code class="language-html"> + <table> + <tr> + <th>Name</th> + <th>Side</th> + <th>Role</th> + <tr> + <td>Darth</td> + <td>Dark</td> + <td>Sith</td> + </tr> + </table> +</code></pre> So the prefix of the class names are the same for Prism.js and Highlight.js. The difference is the language identifier used to specify each language. Check out the following "About Prism.js" and "About Highlight.js" sections for more information.