aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSam Soffes <[email protected]>2011-09-11 21:56:54 -0700
committerSam Soffes <[email protected]>2011-09-11 21:56:54 -0700
commit86bb0733a25e55b0ad940465bf0c90253b9e58d5 (patch)
treeece021f8fd32cabd4d18fd449ae36d50cb4e8b9e
parenta40690a17c1a72fe2364518a62962d6bb5616373 (diff)
downloadbootstrap-86bb0733a25e55b0ad940465bf0c90253b9e58d5.tar.xz
bootstrap-86bb0733a25e55b0ad940465bf0c90253b9e58d5.zip
Add pretty code coloring to readme
-rw-r--r--README.md12
1 files changed, 8 insertions, 4 deletions
diff --git a/README.md b/README.md
index eaa6ca983..04b60c384 100644
--- a/README.md
+++ b/README.md
@@ -13,12 +13,16 @@ You can use Twitter Bootstrap in one of two ways: just drop the compiled CSS int
Here's what the LESS version looks like:
- <link rel="stylesheet/less" type="text/css" href="lib/bootstrap.less">
- <script src="less.js" type="text/javascript"></script>
+``` html
+<link rel="stylesheet/less" type="text/css" href="lib/bootstrap.less">
+<script src="less.js" type="text/javascript"></script>
+```
Or if you prefer, the standard css way:
- <link rel="stylesheet" type="text/css" href="bootstrap-1.2.0.css">
+``` html
+<link rel="stylesheet" type="text/css" href="bootstrap-1.2.0.css">
+```
For more info, refer to the docs!
@@ -102,4 +106,4 @@ Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
-limitations under the License. \ No newline at end of file
+limitations under the License.