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

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

Issue 10993029: Extensions Docs Server: Fix headings with no IDs (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: more descriptive ids 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
diff --git a/chrome/common/extensions/docs/templates/articles/crx.html b/chrome/common/extensions/docs/templates/articles/crx.html
index b761b859f0201398d76b2cf43ec5730749576470..e0c8ce14e32f1cda1d2b728b6b855627c8c44d21 100644
--- a/chrome/common/extensions/docs/templates/articles/crx.html
+++ b/chrome/common/extensions/docs/templates/articles/crx.html
@@ -6,7 +6,7 @@ CRX files are ZIP files with a special header and the <code>.crx</code> file
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 @@ the <code>.crx</code> header in order:
</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 @@ header. This should be the same ZIP file that the signature in the header
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 @@ Members of the community have written the following scripts to package
<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 @@ sig_len_hex=$(byte_swap $(printf '%08x\n' $(ls -l "$sig" | awk '{print $5}')))
cat "$pub" "$sig" "$zip"
) > "$crx"
echo "Wrote $crx"
-</pre>
+</pre>

Powered by Google App Engine
This is Rietveld 408576698