build(aio): remove unused `@linkDocs` alias for `@link` jsdoc tag (#24000)
PR Close #24000
This commit is contained in:
parent
38a0d1fac5
commit
ccb19fea68
|
@ -14,7 +14,6 @@ var INLINE_LINK = /(\S+)(?:\s+([\s\S]+))?/;
|
|||
module.exports = function linkInlineTagDef(getLinkInfo, createDocMessage, log) {
|
||||
return {
|
||||
name: 'link',
|
||||
aliases: ['linkDocs'],
|
||||
failOnBadLink: false,
|
||||
description:
|
||||
'Process inline link tags (of the form {@link some/uri Some Title}), replacing them with HTML anchors',
|
||||
|
|
|
@ -19,7 +19,6 @@ describe('link inline-tag-def', function() {
|
|||
it('should be available as a service', () => {
|
||||
expect(tag).toBeDefined();
|
||||
expect(tag.name).toEqual('link');
|
||||
expect(tag.aliases).toEqual(['linkDocs']);
|
||||
});
|
||||
|
||||
it('should call getLinkInfo', () => {
|
||||
|
|
Loading…
Reference in New Issue