/angular-capitalize-filter

AngularJS filter to capitalize sentences and specially team names.

Primary LanguageJavaScriptGNU General Public License v2.0GPL-2.0

angular-capitalize-filter

AngularJS filter to capitalize sentences and specially team names.

Installation

You can install the filter using Bower:

$ bower install angular-capitalize-filter

Then you have to include it in your HTML:

<script src="bower_components/angular-capitalize-filter/capitalize.js"></script>

And inject the module customFilters in your application:

angular.module('webApp', ['customFilters']);

Usage

You can use it like any other AngularJS filter:

<p>{{ input | capitalize:format }}</p>

Available formats:

All

It capitalizes all the words of a given sentence. As it's the default format you can omit the parameter.

<p>{{ sentence | capitalize:'all' }}</p>

First

It capitalizes just the first letter of the given sentence.

<p>{{ sentence | capitalize:'first' }}</p>

Team

Specially adapted for team names, with uppercase abbreviation.

<p>{{ teamName | capitalize:'team' }}</p>

It formats the team name as CD Logroñés, FC Barcelona or Valencia CF.

Testing

To run the tests:

$ npm install && bower install
$ grunt test