-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
38 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
normalize | ||
========= | ||
|
||
Turn ugly | ||
``` | ||
<p> | ||
<b> | ||
hi | ||
</b> | ||
<i> | ||
<b> | ||
yay! | ||
</b> | ||
</i> | ||
</p> | ||
``` | ||
into beautiful | ||
``` | ||
<p> | ||
<b> | ||
hi | ||
<i> | ||
yay! | ||
</i> | ||
</b> | ||
</p> | ||
``` | ||
With just a touch of | ||
``` | ||
normalize(element, config); | ||
``` | ||
Where config is optional, having pleasant defaults, but extendable for your amusement. | ||
|
||
##API | ||
Docs coming soon! Peruse the source for now, it is decently tiny, and the built in config explains most of it. | ||
Depends upon the delightful jQuery. | ||
|
||
Crafted with love by Mark Nadal, whom is not responsible for any liabilities from the use of this code. |