13
9

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

VSCode拡張機能のMarkdown PDFが生成するPDFファイルからヘッダーを取り除く

Last updated at Posted at 2018-05-10

Markdown PDFはMarkdownで記述されたファイルをPDFファイルに変換する、Visual Studio Code向けの素晴らしい拡張機能です。

Markdown PDFにはmarkdown-pdf.displayHeaderFooterというオプションがあり、これをfalseに設定することでヘッダーとフッターの両方を非表示にすることができます。しかし、フッターを残したままヘッダーを削除するオプションはありません。

これを実現するには、markdown-pdf.headerTemplateオプションを次のように編集し、ヘッダーを非表示にします。

{
    "markdown-pdf.headerTemplate": "<span class='title' style='display: none;'></span>"
}
13
9
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
13
9

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?