Angular プロジェクトで ngDoc を使用して動作する基本的な例を取得しようとしています。
以下に例を示します。
/**
* @ngdoc directive
* @name ui.components.uiRepeat
* @description
*
* Place this attribute directive on any element that has an `ng-repeat` on it, and it will add CSS classes
* for the different element states in the repeat set.
*
* @example
<example name="uiRepeat-directive">
<file name="index.html">
<div ng-repeat="item in items" ui-repeat="item">
</div>
</file>
</example>
*/
ドキュメントがコンパイルされると、例のタイトルが表示されますが、埋め込まれた例はありません。
コンパイルされたドキュメントへのリンクは次のとおりです。
http://thinkingmedia.github.io/thinkingmedia-ui/#/api/ui.components.uiRepeat
例がどのように見えるかを示す Angular ドキュメントへのリンクを次に示します。
https://docs.angularjs.org/api/ng/directive/ngClick
ngDoc の何が問題なのですか?