Skip to content

Commit

Permalink
(docs) add HAML markup option
Browse files Browse the repository at this point in the history
  • Loading branch information
dustinspecker committed Aug 10, 2014
1 parent bfd74f5 commit 7ba14b7
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,9 @@ Available generators:

Languages and Features supported:
* Markup
- Jade
- HAML
- HTML
- Jade
* Application scripting languages
- JavaScript
* Testing scripting languages
Expand Down Expand Up @@ -112,11 +113,11 @@ root/
│ ├── home/
│ │ ├── home.js
│ │ ├── home.{less,scss,styl}
│ │ ├── home.tpl.{html,jade}
│ │ ├── home.tpl.{haml,html,jade}
│ │ ├── home-controller.js
│ │ └── home-controller_test.{coffee,js}
│ ├── app.js
│ └── index.{html,jade}
│ └── index.{haml,html,jade}
├── bower_components/
├── e2e/
│ └── home/
Expand Down Expand Up @@ -303,7 +304,7 @@ describe('fancyButton', function () {

});
```
**The directive's template (HTML or Jade) is converted to a temporary module automatically for testing.**
**The directive's template (HAML, HTML, or Jade) is converted to a temporary module automatically for testing.**

### Factory
Generates a factory and its test.
Expand Down Expand Up @@ -884,7 +885,7 @@ Each generator is able to take the following arguments. For example, `yo ng-poly

| Option | Possible Values|
| ------ | -------------- |
| markup | html, jade|
| markup | haml, html, jade|
| style | less, scss, styl|
| test-dir | src, test|
| test-script | coffee, js|
Expand Down

0 comments on commit 7ba14b7

Please sign in to comment.