Skip to content
This repository was archived by the owner on Nov 23, 2018. It is now read-only.

Commit 4b93bfb

Browse files
committed
Update readme.md
1 parent 07ae7cc commit 4b93bfb

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed

readme.md

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,15 +68,23 @@ This means that OS X versions prior to 10.6 are no longer supported out of the b
6868
Alternatively, YUI Compressor, which requires Java > 1.4, could be swapped out for Closure Compiler.
6969

7070
## Quick Start
71+
**You must wrap any scripts to concatenate in a pair of specially constructed comments. These look like this:**
7172

72-
You must wrap any scripts to concatenate in a pair of specially constructed comments. These look like this:
73-
73+
*legacy version (pre 1.0)* (https://github.com/h5bp/ant-build-script/wiki/What-version-are-you-running%3F)
7474
```html
7575
<!-- scripts concatenated and minified via build script -->
7676
<script src="js/plugins.js"></script>
7777
<script src="js/main.js"></script>
7878
<!-- end scripts -->
7979
```
80+
81+
*1.0 and greater*
82+
```html
83+
<!-- //-beg- concat_js -->
84+
<script src="js/plugins.js"></script>
85+
<script src="js/main.js"></script>
86+
<!-- //-end- concat_js -->
87+
```
8088
## If you're on Mac or Linux...
8189

8290
You've got all your dependencies pre-installed, likely. You need to install ant-contrib to get the build script working.

0 commit comments

Comments
 (0)