Skip to content

Commit

Permalink
playing with formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
devm33 committed Sep 30, 2015
1 parent f06504a commit f5d957f
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions README.md
@@ -1,7 +1,6 @@
# gulp-ng-template-strings

[![Build Status](https://travis-ci.org/devm33/gulp-ng-template-strings.svg?branch=master)](https://travis-ci.org/devm33/gulp-ng-template-strings)

[![Coverage Status](https://coveralls.io/repos/devm33/gulp-ng-template-strings/badge.svg?branch=master&service=github)](https://coveralls.io/github/devm33/gulp-ng-template-strings?branch=master)

> Inline angular templates into directive definition objects
Expand All @@ -22,9 +21,10 @@ npm install gulp-ng-template-strings
Simply pass the plugin js files containing `templateUrl` properties to have them
replaced with `template` properties.

**gulpfile.js**
*gulpfile.js*

```js
var gulp = require('gulp');
var ngTemplateStrings = require('gulp-ng-template-strings');

gulp.task('default', function() {
Expand All @@ -36,7 +36,7 @@ gulp.task('default', function() {

> Input files
**src/tab.js**
*src/tab.js*

```js
function tabDirective() {
Expand All @@ -46,7 +46,7 @@ function tabDirective() {
}
```

**templates/tab.html**
*templates/tab.html*

```html
<ul>
Expand All @@ -56,7 +56,7 @@ function tabDirective() {

> Output file
**dist/tab.js**
*dist/tab.js*

```js
function tabDirective() {
Expand Down

0 comments on commit f5d957f

Please sign in to comment.