You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: tests/dummy/app/pods/docs/quickstart/template.md
+18-8Lines changed: 18 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -10,8 +10,18 @@ marketing/demo page you can use to promote your addon.
10
10
```
11
11
ember install ember-cli-addon-docs
12
12
```
13
+
14
+
2.**Install an API doc plugin.** API docs are autogenerated from comments in your source code. Depending on which style you'll be using ([ESDoc](https://esdoc.org/) or [YUIDoc](http://yui.github.io/yuidoc/)), install the corresponding addon-docs plugin.
13
15
14
-
2.**Add the docs routes.** Open `tests/dummy/app/router.js` and replace the
16
+
```
17
+
# ESDoc
18
+
ember install ember-cli-addon-docs-esdoc
19
+
20
+
# YUIDoc
21
+
ember install ember-cli-addon-docs-yuidoc
22
+
```
23
+
24
+
3.**Add the docs routes.** Open `tests/dummy/app/router.js` and replace the
0 commit comments