{% extends 'layout.html' %} {% block content %}

Gist your GitHub and Bitbucket repositories

Gistfy is an easy way to create embeddable code snippets from your GitHub and Bitbucket repositories or your GitHub Gist.


Try

* Required

Result

Add this snippet to your page
<script type='text/javascript' src=''></script>
<div id="result"></div>
$.ajax({ type: 'GET', url: '' })
 .done(function (data) {
     $('#result').html(data);
});
<div ng-bind-html="result"></div>
$http({ method: 'GET', url: '' })
.success(function (data, status, headers, config) {
    $scope.result = $sce.trustAsHtml(data);
});
And this will be the result
If you want full working examples, please click here. If you want full working examples, please click here. If you want full working examples, please click here.
{% endblock %}