From 5141814bc9340a4d9c32c0e2aaf14f5c5ca0c7e6 Mon Sep 17 00:00:00 2001 From: Yanlong Wang Date: Wed, 12 Mar 2025 10:47:01 +0800 Subject: [PATCH] docs: mention about discarded --- src/dto/crawler-options.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/dto/crawler-options.ts b/src/dto/crawler-options.ts index a89f3d2..2de8cc1 100644 --- a/src/dto/crawler-options.ts +++ b/src/dto/crawler-options.ts @@ -249,12 +249,12 @@ class Viewport extends AutoCastable { schema: { type: 'string' } }, 'X-Md-Link-Style': { - description: 'Link style of the generated markdown.\n\nThis is an option passed through to [Turndown](https://github.com/mixmark-io/turndown?tab=readme-ov-file#options).\n\nSupported: inlined, referenced', + description: 'Link style of the generated markdown.\n\nThis is an option passed through to [Turndown](https://github.com/mixmark-io/turndown?tab=readme-ov-file#options).\n\nSupported: inlined, referenced, discarded', in: 'header', schema: { type: 'string' } }, 'X-Md-Link-Reference-Style': { - description: 'Link reference style of the generated markdown.\n\nThis is an option passed through to [Turndown](https://github.com/mixmark-io/turndown?tab=readme-ov-file#options).\n\nSupported: full, collapsed, shortcut', + description: 'Link reference style of the generated markdown.\n\nThis is an option passed through to [Turndown](https://github.com/mixmark-io/turndown?tab=readme-ov-file#options).\n\nSupported: full, collapsed, shortcut, discarded', in: 'header', schema: { type: 'string' } },