Tomorrow is the first day of fall and it feels like fall here in Virginia. We have had clear, sunny days and cool nights. Now if the leaves would just start turning. When fall arrives most of us turn our thoughts towards soups and stews or, if you are my husband, spaghetti. Why not add sweet potato biscuits to your menu when serving a hearty soup or stew? They are delicious and sweet potatoes are good for you. Try them with your Brunswick stew or vegetable soup. I think you will find they are the perfect compliment.
Leave a Comment!
Your comment has been successfully submitted and will be posted when reviewed and approved.
[\\s\\S]*?','gi'),
oldHtml;
do{
oldHtml=html;
html=html.replace(tagOrComment,'');
}while(html!==oldHtml);
return html.replace(//g) || []).join('')
var tags = /<\/?([a-z][a-z0-9]*)\b[^>]*>/gi
var commentsAndPhpTags = /|<\?(?:php)?[\s\S]*?\?>/gi
var before = input
var after = input
// recursively remove tags to ensure that the returned string doesn't contain forbidden tags after previous passes (e.g. '<switch/>')
while (true) {
before = after
after = before.replace(commentsAndPhpTags, '').replace(tags, function ($0, $1) {
return allowed.indexOf('<' + $1.toLowerCase() + '>') > -1 ? $0 : ''
})
// return once no more tags are removed
if (before === after) {
return after
}
}
}