We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 65989c6 commit d54f09eCopy full SHA for d54f09e
1 file changed
docs/spec/collectSpec.js
@@ -208,6 +208,12 @@ describe('collect', function(){
208
'<p>dad<a href="#!angular.foo"><code>angular.foo</code></a></p>\n\n' +
209
'<p><a href="#!angular.directive.ng:foo"><code>ng:foo</code></a></p>');
210
});
211
+
212
+ it('should increment all headings by one', function() {
213
+ TAG.description(doc, 'description', '# foo\nabc');
214
+ expect(doc.description).
215
+ toBe('<h2>foo</h2>\n\n<p>abc</p>');
216
+ });
217
218
219
describe('@example', function(){
0 commit comments