Skip to content

Commit 65035d3

Browse files
committed
@linkcode and @linkplain are inline tags
1 parent 08d6dc2 commit 65035d3

File tree

2 files changed

+8
-10
lines changed

2 files changed

+8
-10
lines changed

lib/parse.js

-2
Original file line numberDiff line numberDiff line change
@@ -96,8 +96,6 @@ var flatteners = {
9696
},
9797
'lends': flattenDescription,
9898
'license': flattenDescription,
99-
'linkcode': synonym('link'),
100-
'linkplain': synonym('link'),
10199
'listens': todo,
102100
'member': flattenTypedName,
103101
'memberof': flattenDescription,

test/lib/parse.js

+8-8
Original file line numberDiff line numberDiff line change
@@ -345,14 +345,6 @@ test('parse - @license', function (t) {
345345
t.end();
346346
});
347347

348-
test('parse - @linkcode', function (t) {
349-
t.end();
350-
});
351-
352-
test('parse - @linkplain', function (t) {
353-
t.end();
354-
});
355-
356348
test('parse - @listens', function (t) {
357349
t.end();
358350
});
@@ -765,6 +757,14 @@ test('parse - {@link}', function (t) {
765757
t.done();
766758
});
767759

760+
test('parse - {@linkcode}', function (t) {
761+
t.end();
762+
});
763+
764+
test('parse - {@linkplain}', function (t) {
765+
t.end();
766+
});
767+
768768
test('parse - {@tutorial}', function (t) {
769769
t.deepEqual(removePosition(evaluate(function () {
770770
/** {@tutorial id} */

0 commit comments

Comments
 (0)