JSFiddle - React, Tailwind, and code Playground

by abernier

HTML

<script type="text/x-template" id="foo">
        <article class="pattern {{title}}">
            <style scoped contenteditable>
            .pattern.{{ title }} {{{{code}}}}
            </style>
            <div class="in">
                <header>
                    <h1 class="title">{{title}}</h1><span class="size">0</span>
                    {{#author}}
                    <p class="author">By <a href="{{url}}">{{name}}</a></p>
                    {{/author}}
                </header>
            </div>
        </article>
        </script>
<script>
    $('body').append($('#foo').text());
</script>