From 2dae2caac9228a54a507035ffee8d8be695bbf75 Mon Sep 17 00:00:00 2001 From: Zane Rockenbaugh Date: Sun, 11 Aug 2024 16:12:09 -0500 Subject: [PATCH] added support for '--clever-links' and '--monospace-links' options --- lib/cli-data.js | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/lib/cli-data.js b/lib/cli-data.js index a942cd56..870a8d0a 100644 --- a/lib/cli-data.js +++ b/lib/cli-data.js @@ -150,6 +150,16 @@ const dmdDefinitions = [ name: 'member-index-format', type: String, description: 'Two options to render member lists: [bold]{list} or [bold]{grouped} (default). The [bold]{list} view is loosely-based on the nodejs docs.' + }, + { + name: 'clever-links', + type: Boolean, + description: 'If true, [bold]{{@link XXX}} tags are rendered in normal text if XXX is a URL and monospace (code) format otherwise.' + }, + { + name: 'monospace-links', + type: Boolean, + description: 'If true, all [bold]{{@link}} tags are rendered in monospace (code) format. This setting is ignored in [bold]{--clever-links} is true.' } ]