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

Side by Side Diff: pkg/html_import/README.md

Issue 51003002: Update headings to use sentence case. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 1 month 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « pkg/docgen/README.md ('k') | pkg/http_server/README.md » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # HTML Imports polyfill 1 # HTML Imports polyfill
2 2
3 [HTML Imports][1] are a way to include and reuse HTML documents in other HTML 3 [HTML Imports][1] are a way to include and reuse HTML documents in other HTML
4 documents. As `<script>` tags let authors include external Javascript in their 4 documents. As `<script>` tags let authors include external Javascript in their
5 pages, imports let authors load full HTML resources. In particular, imports let 5 pages, imports let authors load full HTML resources. In particular, imports let
6 authors include [Custom Element](https://github.com/Polymer/CustomElements) 6 authors include [Custom Element](https://github.com/Polymer/CustomElements)
7 definitions from external URLs. 7 definitions from external URLs.
8 8
9 9
10 ## Getting Started 10 ## Getting started
11 11
12 Include the `html_import.debug.js` or `html_import.min.js` (minified) file in 12 Include the `html_import.debug.js` or `html_import.min.js` (minified) file in
13 your project. 13 your project.
14 14
15 <script src="packages/html_import/html_import.debug.js"></script> 15 <script src="packages/html_import/html_import.debug.js"></script>
16 16
17 `html_import.debug.js` is the debug loader and uses `document.write` to load 17 `html_import.debug.js` is the debug loader and uses `document.write` to load
18 additional modules. 18 additional modules.
19 19
20 Use the minified version (`html_import.min.js`) if you need to load the file 20 Use the minified version (`html_import.min.js`) if you need to load the file
(...skipping 13 matching lines...) Expand all
34 34
35 ## Getting the source code 35 ## Getting the source code
36 36
37 This package is built from: 37 This package is built from:
38 <https://github.com/Polymer/HTMLImports/tree/master> 38 <https://github.com/Polymer/HTMLImports/tree/master>
39 39
40 You'll need [node.js](http://nodejs.org) to rebuild the JS file. Use 40 You'll need [node.js](http://nodejs.org) to rebuild the JS file. Use
41 `npm install` to get dependencies and `grunt` to build. 41 `npm install` to get dependencies and `grunt` to build.
42 42
43 [1]: https://dvcs.w3.org/hg/webcomponents/raw-file/tip/spec/imports/index.html 43 [1]: https://dvcs.w3.org/hg/webcomponents/raw-file/tip/spec/imports/index.html
OLDNEW
« no previous file with comments | « pkg/docgen/README.md ('k') | pkg/http_server/README.md » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698