How to use the ember-cli-addon-docs/utils/computed.unprefixedAddonName function in ember-cli-addon-docs

To help you get started, we’ve selected a few ember-cli-addon-docs examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github ember-learn / ember-cli-addon-docs / addon / components / docs-hero / component.js View on Github external
/**
    The prefix to show, tyipcally of: 'Ember', 'EmberCLI', or 'EmberData'

    @argument prefix
    @type String
  */
  prefix: addonPrefix(projectName),

  /**
    The logo's main heading

    @argument heading
    @type String
  */
  heading: classify(unprefixedAddonName(projectName)),

  /**
    Byline for the logo

    @argument byline
    @type String
  */
  byline: projectDescription,

  /**
    Class to add to the wrapper element

    @argument class
    @type String
  */
  class: null