Skip to content

Commit 4fbd861

Browse files
authored
Merge pull request #19 from ThomasRettig/patch-1
Fix Incorrect Markdown Formatting
2 parents 8b33ea0 + 58bfc08 commit 4fbd861

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

readme.markdown

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
#Relevant Dropdown
1+
# Relevant Dropdown
22

3-
##A HTML5 datalist polyfill that depends on jQuery and Modernizr.
3+
## A HTML5 datalist polyfill that depends on jQuery and Modernizr.
44

55
Datalist browser support (Dec 2011) is Firefox 4+, Opera 10.6+, and IE 10. It's reasonable that you'd want WebKit support. So. This.
66

7-
###Example HTML5 Markup
7+
### Example HTML5 Markup
88

99
```html
1010
<input type="search" list="states" placeholder="Find U.S. State">
@@ -16,14 +16,14 @@ Datalist browser support (Dec 2011) is Firefox 4+, Opera 10.6+, and IE 10. It's
1616
</datalist>
1717
```
1818

19-
###Include jQuery and Modernizr in head of document
19+
### Include jQuery and Modernizr in head of document
2020

2121
```html
2222
<script src="js/jquery-1.7.1.js"></script>
2323
<script src="js/modernizr.custom.50983.js"></script>
2424
```
2525

26-
###Run the Modernizr test, and load polyfill stuff if needed
26+
### Run the Modernizr test, and load polyfill stuff if needed
2727

2828
```html
2929
<script>
@@ -50,7 +50,7 @@ $('#name').relevantDropdown({
5050
});
5151
```
5252

53-
###TODO
53+
### TODO
5454

5555
- Better IE styling (drop shadows don't work)
5656
- Remove Modernizr and jQuery dependencies (make totally standalone)

0 commit comments

Comments
 (0)