Last active
August 29, 2015 14:23
-
-
Save ryanirilli/f0243ba10bd39d17741b to your computer and use it in GitHub Desktop.
Allowable HTML on Terms/Conditions/Descriptions
This file contains hidden or 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
Available HTML | |
<p></p> | |
<a href="http://someurl.com"></a> | |
<ul></ul> | |
<ol></ol> | |
<li></li> | |
<span></span> | |
Available classes | |
text--success //usually green, signifies positive things | |
text--error //usually red, signifies negative things | |
text--attention //usually yellow, signifies warning | |
text--heavy-weight //for bold text | |
Examples | |
<p>The quick brown fox <span class="text--attention">jumped</span> over the fence</p> | |
<ul> | |
<li>this is a summary item</li> | |
<li class="text--error">Something bad happened</li> | |
</ul> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment