From 19c40c1badd0c5b6a547f7868f50046e47ac845f Mon Sep 17 00:00:00 2001 From: Yuki Hattori Date: Sun, 15 Sep 2024 21:11:29 +0900 Subject: [PATCH] Fix Prettier --- src/config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config.ts b/src/config.ts index f29821d8..e4526a23 100644 --- a/src/config.ts +++ b/src/config.ts @@ -181,7 +181,7 @@ export class MarpCLIConfig { const pdfNotes = !!(this.args.pdfNotes || this.conf.pdfNotes) const pdfOutlines = - this.args.pdfOutlines ?? this.conf.pdfOutlines + (this.args.pdfOutlines ?? this.conf.pdfOutlines) ? (() => { const defaultPdfOutlines = { pages: true, headings: true } as const const getConf = (key: keyof typeof defaultPdfOutlines) => {