Pydataman / vscode-markdown-style

Markdown styles for vscode

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

vscode-markdown-style

Themes are based on VSCode's markdown default styles

C:\Program Files\Microsoft VS Code\resources\app\extensions\markdown-language-features\media\markdown.css

Themes

  • Preview Theme

  • Extension Theme

    • pandoc-github.html : for vscode-pandoc extension
    • markdown-pdf.css : for MarkdownPDF extension

Usage

  • Copy css files to root of your current workspace.
  • Edit Settings.json (File > Preferences > Settings) like below :

Github style:

// Preview Settings
// Github style for all VSCode theme
"markdown.styles": [
    "github.css"
]

Light, Dark style:

// Light/Dark style for Light/Dark VSCode theme
"markdown.styles": [
    "light-default.css",
    "dark-material.css"
]

MarkdownPDF style:

// Extension - MarkdownPDF
"markdown-pdf.styles": [
    "[YOUR_PATH]/markdown-pdf.css"
]

Pandoc style:

// Extension - vscode-pandoc
"pandoc.htmlOptString": "-s -f markdown_github -t html5 -H [YOUR_PATH]/pandoc-github.html",

License

Licensed under the MIT License.

About

Markdown styles for vscode

License:MIT License


Languages

Language:CSS 51.0%Language:HTML 49.0%