JSFiddle - React, Tailwind, and code Playground

HTML

<ul></ul>

JavaScript

$.getJSON('http://pipes.yahoo.com/pipes/pipe.run?_id=14756b1d828eae9693f6ef235de879cc&_render=json', function(json) {
    $.each(json.value.items, function(i, item) {
        var item_html = '<li><a href="'+item.link+'">'+item.title+'</a>'+item['content:encoded']+'</li>';
        $('body ul').append(item_html);
    });
});