]> source.dussan.org Git - jquery.git/commitdiff
Remove bold style from command examples
authorRick Waldron <waldron.rick@gmail.com>
Thu, 7 Jun 2012 15:50:04 +0000 (11:50 -0400)
committerRick Waldron <waldron.rick@gmail.com>
Thu, 7 Jun 2012 15:50:04 +0000 (11:50 -0400)
README.md

index c23908616ad797929244500c46ff8b579a4dab9a..287f421fe55fa36c930e70105ff825489ab8c466 100644 (file)
--- a/README.md
+++ b/README.md
@@ -56,7 +56,7 @@ Make sure you have `grunt` installed by testing:
 
 Then, to get a complete, minified (w/ Uglify.js), linted (w/ JSHint) version of jQuery, type the following:
 
-#### `grunt` ####
+`grunt`
 
 
 The built version of jQuery will be put in the `dist/` subdirectory.
@@ -75,20 +75,20 @@ To create a custom build, use the following special `grunt` commands:
 
 Exclude `dimensions`:
 
-#### `grunt build:*:*:-dimensions` ####
+`grunt build:*:*:-dimensions`
 
 Exclude `effects`:
 
-#### `grunt build:*:*:-effects` ####
+`grunt build:*:*:-effects`
 
 Exclude `offset`:
 
-#### `grunt build:*:*:-offset` ####
+`grunt build:*:*:-offset`
 
 
 Exclude **all** optional modules:
 
-#### `grunt build:*:*:-dimensions:-effects:-offset` ####
+`grunt build:*:*:-dimensions:-effects:-offset`
 
 
 
@@ -99,7 +99,7 @@ Running the Unit Tests
 
 Start grunt to auto-build jQuery as you work:
 
-#### `cd jquery && grunt watch` ####
+`cd jquery && grunt watch`
 
 
 
@@ -118,7 +118,7 @@ Building to a different directory
 
 If you want to build jQuery to a directory that is different from the default location:
 
-#### `grunt && grunt dist:/path/to/special/location/` ####
+`grunt && grunt dist:/path/to/special/location/`
 
 With this example, the output files would be:
 
@@ -148,7 +148,7 @@ Updating Submodules
 
 Update the submodules to what is probably the latest upstream code.
 
-#### `grunt submodules` ####
+`grunt submodules`
 
 
 Note: This task will also be run any time the default `grunt` command is used.