aboutsummaryrefslogtreecommitdiffstats
path: root/docs/formatter.template
diff options
context:
space:
mode:
Diffstat (limited to 'docs/formatter.template')
-rw-r--r--docs/formatter.template53
1 files changed, 0 insertions, 53 deletions
diff --git a/docs/formatter.template b/docs/formatter.template
deleted file mode 100644
index 9ccdc811..00000000
--- a/docs/formatter.template
+++ /dev/null
@@ -1,53 +0,0 @@
-<h1>{{name}}</h1>
-
-{{#workInProgress}}
-<fieldset class="workInProgress">
- <legend>Work In Progress</legend>
- This page is currently being revised. It might be incomplete or contain inaccuracies.
- {{{workInProgress.description}}}
-</fieldset>
-{{/workInProgress}}
-
-{{#deprecated}}
-<fieldset class="deprecated">
- <legend>Deprecated API</legend>
- {{deprecated}}
-</fieldset>
-{{/deprecated}}
-
-<h2>Description</h2>
-{{{description}}}
-
-<h2>Usage</h2>
-<h3>In HTML Template Binding</h3>
-<tt>
- &lt;input type="text" ng:format="{{shortName}}"&gt;
-</tt>
-<h3>In JavaScript</h3>
-<tt ng:non-bindable>
-var userInputString = angular.formatter.{{shortName}}.format(modelValue);<br/>
-var modelValue = angular.formatter.{{shortName}}.parse(userInputString);
-</tt>
-
-{{#returns}}
-<h3>Returns</h3>
-<tt>&#123;{{{type}}}&#125;</tt> {{{description}}}
-{{/returns}}
-
-{{#css}}
-<h3>CSS</h3>
-{{{css}}}
-{{/css}}
-
-{{#example}}
-<h2>Example</h2>
-{{{exampleDescription}}}
-<doc:example>
- <doc:source>
-{{/example}}
- {{{example}}}
-{{#example}}
- </doc:source>
- <doc:scenario>{{{scenario}}}</doc:scenario>
-</doc:example>
-{{/example}}