forked from vuejs/vetur
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
138 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,99 @@ | ||
/*--------------------------------------------------------------------------------------------- | ||
* Copyright (c) Microsoft Corporation. All rights reserved. | ||
* Licensed under the MIT License. See License.txt in the project root for license information. | ||
*--------------------------------------------------------------------------------------------*/ | ||
|
||
/* tslint:disable:max-line-length */ | ||
/** | ||
* Adapted from https://github.com/microsoft/vscode/blob/8ba70d8bdc3a10e3143cc4a131f333263bc48eef/extensions/typescript-language-features/src/utils/previewer.ts | ||
*/ | ||
|
||
import * as ts from 'typescript'; | ||
|
||
function replaceLinks(text: string): string { | ||
return ( | ||
text | ||
// Http(s) links | ||
.replace( | ||
/\{@(link|linkplain|linkcode) (https?:\/\/[^ |}]+?)(?:[| ]([^{}\n]+?))?\}/gi, | ||
(_, tag: string, link: string, text?: string) => { | ||
switch (tag) { | ||
case 'linkcode': | ||
return `[\`${text ? text.trim() : link}\`](${link})`; | ||
|
||
default: | ||
return `[${text ? text.trim() : link}](${link})`; | ||
} | ||
} | ||
) | ||
); | ||
} | ||
|
||
function processInlineTags(text: string): string { | ||
return replaceLinks(text); | ||
} | ||
|
||
function getTagBodyText(tag: ts.JSDocTagInfo): string | undefined { | ||
if (!tag.text) { | ||
return undefined; | ||
} | ||
|
||
// Convert to markdown code block if it is not already one | ||
function makeCodeblock(text: string): string { | ||
if (text.match(/^\s*[~`]{3}/g)) { | ||
return text; | ||
} | ||
return '```\n' + text + '\n```'; | ||
} | ||
|
||
switch (tag.name) { | ||
case 'example': | ||
// check for caption tags, fix for #79704 | ||
const captionTagMatches = tag.text.match(/<caption>(.*?)<\/caption>\s*(\r\n|\n)/); | ||
if (captionTagMatches && captionTagMatches.index === 0) { | ||
return captionTagMatches[1] + '\n\n' + makeCodeblock(tag.text.substr(captionTagMatches[0].length)); | ||
} else { | ||
return makeCodeblock(tag.text); | ||
} | ||
case 'author': | ||
// fix obsucated email address, #80898 | ||
const emailMatch = tag.text.match(/(.+)\s<([-.\w]+@[-.\w]+)>/); | ||
|
||
if (emailMatch === null) { | ||
return tag.text; | ||
} else { | ||
return `${emailMatch[1]} ${emailMatch[2]}`; | ||
} | ||
case 'default': | ||
return makeCodeblock(tag.text); | ||
} | ||
|
||
return processInlineTags(tag.text); | ||
} | ||
|
||
export function getTagDocumentation(tag: ts.JSDocTagInfo): string | undefined { | ||
switch (tag.name) { | ||
case 'augments': | ||
case 'extends': | ||
case 'param': | ||
case 'template': | ||
const body = (tag.text || '').split(/^(\S+)\s*-?\s*/); | ||
if (body?.length === 3) { | ||
const param = body[1]; | ||
const doc = body[2]; | ||
const label = `*@${tag.name}* \`${param}\``; | ||
if (!doc) { | ||
return label; | ||
} | ||
return label + (doc.match(/\r\n|\n/g) ? ' \n' + processInlineTags(doc) : ` — ${processInlineTags(doc)}`); | ||
} | ||
} | ||
|
||
// Generic tag | ||
const label = `*@${tag.name}*`; | ||
const text = getTagBodyText(tag); | ||
if (!text) { | ||
return label; | ||
} | ||
return label + (text.match(/\r\n|\n/g) ? ' \n' + text : ` — ${text}`); | ||
} |