ember-cli-addon-docs icon indicating copy to clipboard operation
ember-cli-addon-docs copied to clipboard

Easy, beautiful docs for your OSS Ember addons

Results 151 ember-cli-addon-docs issues
Sort by recently updated
recently updated
newest added
trafficstars

It think it would be nice if each section in the main navigation area could be collapsed. This would help with a docs project with many sections and pages, making...

Need to show all available search results instead of restricted to 5, but need to config outside node module files. So that we can provide vertical scroll with some fixed...

Code: ``` {{#docs-demo as |demo|}} {{#demo.example name='important'}} Foo {{/demo.example}} {{demo.snippet 'important'}} {{/docs-demo}} ``` Error: ``` Template Compiler Error (broccoli-persistent-filter:TemplateCompiler) in dummy/templates/docs/components/buttons.hbs Closing tag `Button::Important` (on line 6) without an open...

It appears as though compiled CSS is not including the version path segment in ember-cli-addon-docs deployments that use versioned docs. See https://github.com/Addepar/ember-table/issues/593 for an example. The ember-table demo there is...

I always use Ember's generators, even when creating my Dummy app's routes. Every time that I spun up `ember-cli-addon-docs` I'd translate the _getting started_ instructions to the `ember generate ...`...

I love using `` for callouts in my docs, but it only works in `.md` files, not in `.hbs` files.

I've got an addon that's made for testing & development, so I'm using ember-cli's `isEnabled` hook to [disable the addon](https://ember-cli.com/api/classes/Addon.html#method_isEnabled) in production environments. ```js isEnabled() { return this.app.env !== "production";...

**Steps to reproduce the behavior:** 1. Ember install ember-cli-typescript --save 2. Create a route `docs/button` 3. In `docs/button/controller.ts` ``` // BEGIN-SNIPPET docs-button.ts @action onClick(){ } // END-SNIPPET ``` 4. In...

So, this is a feature request of sorts. Hopefully I'm able to describe what I would like to have from addon-docs. So, auto generation of api documentation using JSDoc or...

Hello, I recently ran through the Quickstart with a newly created addon (Ember 3.8) and received the following error: ![image](https://user-images.githubusercontent.com/727536/53775045-f5335080-3ebe-11e9-9a03-7bdd10a13575.png) The URL in the error is `https://webcomponentlibrary/versions/master//WebComponentLibrary/versions/master/` Any ideas as...