Skip to content

Instantly share code, notes, and snippets.

@getnashty
Last active December 27, 2015 04:49
Show Gist options
  • Save getnashty/7269465 to your computer and use it in GitHub Desktop.
Save getnashty/7269465 to your computer and use it in GitHub Desktop.
change this:
<blockquote class="tr_bq">
<div style="text-align: left;">
<span style="font-size: large;">Crockpot Caramel Apple Butter</span></div>
<div style="text-align: left;">
<br /></div>
<div style="text-align: left;">
<div style="text-align: left;">
1/2 cup white sugar</div>
<div style="text-align: left;">
2 tablespoons corn syrup</div>
<div style="text-align: left;">
1/4 cup butter</div>
3 1/2 pounds peeled and sliced apples (5 1/2 pounds before I peeled and sliced them, probably about 7 or 8 cups of chopped apples)</div>
<div style="text-align: left;">
2 teaspoons vanilla&nbsp;</div>
<div style="text-align: left;">
1 teaspoon cinnamon</div>
<div style="text-align: left;">
1/4 cup dark brown sugar</div>
</blockquote>
to this:
<h2>Crockpot Caramel Apple Butter</h2>
<ul class="ingredients">
<li>1/2 cup white sugar</li>
<li>2 tablespoons corn syrup</li>
<li>1/4 cup butter</li>
<li>3 1/2 pounds peeled and sliced apples (5 1/2 pounds before I peeled and sliced them, probably about 7 or 8 cups of chopped apples)</li>
<li>2 teaspoons vanilla</li>
<li>1 teaspoon cinnamon</li>
<li>1/4 cup dark brown sugar</li>
</ul>
h2 = secondary header text
ul = unordered list
li = list item
adding the class="ingredients" is helpful in terms of styling, and identification
hope this helps!
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment