WordPress is sending me an object that I need to work with.
The main issue at hand: the font styles of WordPress posts in my app are all inconsistent. How can I go about styling these fonts uniformly?
Take a look at this Plunkr if you'd like to experiment. Click on any post title to navigate to another view and see the font inconsistency.
This particular view is where I am struggling to style the fonts.
<script id="tab-post-detail.html" type="text/ng-template">
<div>
<h3>{{:: post.title}}</h3>
<p ng-bind-html=" post.content"></p>
</div>
</div>
</script>
Check out the Object here