Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(6780)

Unified Diff: chrome/common/extensions/docs/templates/articles/crx.html

Issue 11035015: Merge 159156 - Extensions Docs Server: Fix headings with no IDs (Closed) Base URL: svn://svn.chromium.org/chrome/branches/1229/src/
Patch Set: Created 8 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/common/extensions/docs/templates/articles/crx.html
===================================================================
--- chrome/common/extensions/docs/templates/articles/crx.html (revision 159603)
+++ chrome/common/extensions/docs/templates/articles/crx.html (working copy)
@@ -6,7 +6,7 @@
extension.
</p>
-<h2>Package header</h2>
+<h2 id="package_header">Package header</h2>
<p>
The header contains the author's public key and the extension's signature.
@@ -63,7 +63,7 @@
</tr>
</table>
-<h2>Extension contents</h2>
+<h2 id="extensions_contents">Extension contents</h2>
<p>
The extension's ZIP file is appended to the <code>*.crx</code> package after the
@@ -71,7 +71,7 @@
was generated from.
</p>
-<h2>Example</h2>
+<h2 id="example">Example</h2>
<p>
The following is an example hex dump from the beginning of a <code>.crx</code>
@@ -100,7 +100,7 @@
<a href="http://github.com/Constellation/crxmake">github: crxmake</a>
</blockquote>
-<h3>Bash</h3>
+<h3 id="bash">Bash</h3>
<pre>
#!/bin/bash -e
#
@@ -144,4 +144,4 @@
cat "$pub" "$sig" "$zip"
) > "$crx"
echo "Wrote $crx"
-</pre>
+</pre>

Powered by Google App Engine
This is Rietveld 408576698