Commit fa618e5b0aa0ced79a507ba5a7acd6abf14493eb

Lea Verou 2013-04-05T13:47:52

Merge pull request #60 from davidl/patch-1 Add link to API at end of "Basic usage" section

1
2
3
4
5
6
7
8
9
10
11
12
13
diff --git a/index.html b/index.html
index b2a08e2..12662c9 100644
--- a/index.html
+++ b/index.html
@@ -131,7 +131,7 @@
 	<pre><code>&lt;pre>&lt;code class="language-css">p { color: red }&lt;/code>&lt;/pre></code></pre>
 	<p>If you use that pattern, the <code>&lt;pre></code> will automatically get the <code>language-xxxx</code> class (if it doesn’t already have it) and will be styled as a code block.</p>
 	
-	<p>If you want to prevent any elements from being automatically highlighted, you can use the attribute <code>data-manual</code> on the <code>&lt;script></code> element you used for prism.
+	<p>If you want to prevent any elements from being automatically highlighted, you can use the attribute <code>data-manual</code> on the <code>&lt;script></code> element you used for prism and use the <a href="extending.html#api">API</a>.
 	Example:</p>
 	<pre><code>&lt;script src="prism.js" data-manual>&lt;/script></code></pre>
 </p>