Sample angular app

HTML

<link rel="stylesheet" href="http://angularjs.org/css/bootstrap.min.css">
<script src="http://code.angularjs.org/angular-1.0.0rc12.js"></script>
<tag>rahul</tag>

JavaScript

var testapp = angular.module('testapp', [])

testapp.directive('tag', function() {
  return {
    template: '<h3><a href="{{value}}" ng-transclude></a></h3>',
    restrict: 'E',
    transclude: true
  }
});