From f7ac4fa12ea8df504e4454cf1ebc2edf85194885 Mon Sep 17 00:00:00 2001 From: Rodrigo Cesar Date: Wed, 3 Aug 2022 16:12:37 -0300 Subject: [PATCH] Fix to `see` tag in comment --- converter.js | 1 + 1 file changed, 1 insertion(+) diff --git a/converter.js b/converter.js index 6f5ce15..1cebade 100644 --- a/converter.js +++ b/converter.js @@ -191,6 +191,7 @@ const createConverter = config => { const replaceCommentTags = comment => { return comment .replace(//gi, '{@link $1}') + .replace(/(.+)<\/see>/gi, '{@link $1 | $2}') .replace('', '@inheritDoc'); }