Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSam Soffes <sam@samsoff.es>2011-09-12 08:56:54 +0400
committerSam Soffes <sam@samsoff.es>2011-09-12 08:56:54 +0400
commit86bb0733a25e55b0ad940465bf0c90253b9e58d5 (patch)
treeece021f8fd32cabd4d18fd449ae36d50cb4e8b9e /README.md
parenta40690a17c1a72fe2364518a62962d6bb5616373 (diff)
Add pretty code coloring to readme
Diffstat (limited to 'README.md')
-rw-r--r--README.md12
1 files changed, 8 insertions, 4 deletions
diff --git a/README.md b/README.md
index eaa6ca9833..04b60c3841 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.