MCPcopy
hub / github.com/yzhang-gh/vscode-markdown

github.com/yzhang-gh/vscode-markdown @v3.4.0 sqlite

repository ↗ · DeepWiki ↗ · release v3.4.0 ↗
149 symbols 328 edges 25 files 17 documented · 11%
README

Markdown Support for Visual Studio Code

version installs GitHub Workflow Status GitHub stars GitHub Contributors

All you need for Markdown (keyboard shortcuts, table of contents, auto preview and more).

Table of Contents

Features

Keyboard shortcuts

toggle bold gif

(Typo: multiple words)

check task list

See full key binding list in the keyboard shortcuts section

Table of contents

toc

  • Run command "Create Table of Contents" to insert a new table of contents.

  • The TOC is automatically updated on file save by default. To disable, please change the toc.updateOnSave option.

  • The indentation type (tab or spaces) of TOC can be configured per file. Find the setting in the right bottom corner of VS Code's status bar.

Note: Be sure to also check the list.indentationSize option.

  • To make TOC compatible with GitHub or GitLab, set option slugifyMode accordingly

  • Three ways to control which headings are present in the TOC:

Click to expand

  1. Add `` at the end of a heading to ignore it in TOC\ (It can also be placed above a heading)

  2. Use toc.levels setting.

  3. You can also use the toc.omittedFromToc setting to omit some headings (and their subheadings) from TOC:

    js // In your settings.json "markdown.extension.toc.omittedFromToc": { // Use a path relative to your workspace. "README.md": [ "# Introduction", "## Also omitted", ], // Or an absolute path for standalone files. "/home/foo/Documents/todo-list.md": [ "## Shame list (I'll never do these)", ] }

    Note:

    • Setext headings (underlined with === or ---) can also be omitted, just put their # and ## versions in the setting, respectively.
    • When omitting heading, make sure headings within a document are unique. Duplicate headings may lead to unpredictable behavior.
  4. Easily add/update/remove section numbering

section numbers

  • In case you are seeing unexpected TOC recognition, you can add a `` comment above the list.

List editing

on enter key

on tab/backspace key

fix ordered list markers

Note: By default, this extension tries to determine indentation size for different lists according to CommonMark Spec. If you prefer to use a fixed tab size, please change the list.indentationSize setting.

Print Markdown to HTML

  • Commands Markdown: Print current document to HTML and Markdown: Print documents to HTML (batch mode)

  • Compatible with other installed Markdown plugins (e.g. Markdown Footnotes) The exported HTML should look the same as inside VSCode.

  • Use comment `` to specify a title of the exported HTML.

  • Plain links to .md files will be converted to .html.

  • It's recommended to print the exported HTML to PDF with browser (e.g. Chrome) if you want to share your documents with others.

GitHub Flavored Markdown

  • Table formatter

table formatter

Note: The key binding is Ctrl + Shift + I on Linux. See Visual Studio Code Key Bindings.

  • Task lists

Math

math

Please use Markdown+Math for dedicated math support. Be sure to disable math.enabled option of this extension.

Auto completions

Tip: also support the option completion.root

  • Images/Files (respects option search.exclude)

image completions

  • Math functions (including option katex.macros)

math completions

  • Reference links

reference links

Others

  • Paste link on selected text

paste link

  • Override "Open Preview" keybinding with "Toggle Preview", which means you can close preview using the same keybinding (Ctrl + Shift + V or Ctrl + K V).

Available Commands

  • Markdown All in One: Create Table of Contents
  • Markdown All in One: Update Table of Contents
  • Markdown All in One: Add/Update section numbers
  • Markdown All in One: Remove section numbers
  • Markdown All in One: Toggle code span
  • Markdown All in One: Toggle code block
  • Markdown All in One: Print current document to HTML
  • Markdown All in One: Print documents to HTML
  • Markdown All in One: Toggle math environment
  • Markdown All in One: Toggle list
  • It will cycle through list markers (-, *, +, 1. and 1))

Keyboard Shortcuts

Table

Key Command
Ctrl/Cmd + B Toggle bold
Ctrl/Cmd + I Toggle italic
Ctrl/Cmd + Shift + ] Toggle heading (uplevel)
Ctrl/Cmd + Shift + [ Toggle heading (downlevel)
Ctrl/Cmd + M Toggle math environment
Alt + C Check/Uncheck task list item
Ctrl/Cmd + Shift + V Toggle preview
Ctrl/Cmd + K V Toggle preview to side

Supported Settings

Table

Name Default Description
markdown.extension.completion.respectVscodeSearchExclude true Whether to consider search.exclude option when providing file path completions
markdown.extension.completion.root Root folder when providing file path completions (It takes effect when the path starts with /)
markdown.extension.italic.indicator * Use * or _ to wrap italic text
markdown.extension.katex.macros {} KaTeX macros e.g. { "\\name": "expansion", ... }
markdown.extension.list.indentationSize adaptive Use different indentation size for ordered and unordered list
markdown.extension.orderedList.autoRenumber true Auto fix list markers as you edits
markdown.extension.orderedList.marker ordered Or one: always use 1. as ordered list marker
markdown.extension.preview.autoShowPreviewToSide false Automatically show preview when opening a Markdown file.
markdown.extension.print.absoluteImgPath true Convert image path to absolute path
markdown.extension.print.imgToBase64 false Convert images to base64 when printing to HTML
markdown.extension.print.includeVscodeStylesheets true Whether to include VSCode's default styles
markdown.extension.print.onFileSave false Print to HTML on file save
markdown.extension.print.theme light Theme of the exported HTML
markdown.extension.print.validateUrls true Enable/disable URL validation when printing
markdown.extension.syntax.decorations true Add decorations to ~~strikethrough~~ and code span
markdown.extension.syntax.decorationFileSizeLimit 50000 Don't render syntax decorations if a file is larger than this size (in byte/B)
markdown.extension.syntax.plainTheme false A distraction-free theme
markdown.extension.tableFormatter.enabled true Enable GFM table formatter
markdown.extension.toc.downcaseLink true Force the TOC links to be lowercase
markdown.extension.toc.slugifyMode github Slugify mode for TOC link generation (vscode, github, gitlab or gitea)
markdown.extension.toc.omittedFromToc {} Lists of headings to omit by project file (e.g. { "README.md": ["# Introduction"] })
markdown.extension.toc.levels 1..6 Control the heading levels to show in the table of contents.
markdown.extension.toc.orderedList false Use ordered list in the table of contents.
markdown.extension.toc.plaintext

Extension points exported contracts — how you extend this code

MarkdownContributionProvider (Interface)
(no doc) [2 implementers]
src/markdownExtensions.ts
IMarkdownEngine (Interface)
(no doc) [1 implementers]
src/markdownEngine.ts
IConfig (Interface)
(no doc)
src/localize.ts
MarkdownContribution (Interface)
(no doc)
src/markdownExtensions.ts
ILanguagePack (Interface)
(no doc)
src/localize.ts

Core symbols most depended-on inside this repo

testCommand
called by 111
src/test/suite/testUtils.ts
fixMarker
called by 15
src/listEditing.ts
asNormal
called by 8
src/listEditing.ts
findNextMarkerLineNumber
called by 6
src/listEditing.ts
isMdEditor
called by 6
src/util.ts
mathEnvCheck
called by 5
src/util.ts
styleByWrapping
called by 5
src/formatting.ts
buildToc
called by 4
src/toc.ts

Shape

Function 105
Method 24
Class 14
Interface 5
Enum 1

Languages

TypeScript100%

Modules by API surface

src/formatting.ts21 symbols
src/listEditing.ts20 symbols
src/toc.ts19 symbols
src/print.ts15 symbols
src/markdownExtensions.ts13 symbols
src/markdownEngine.ts13 symbols
src/tableFormatter.ts11 symbols
src/util.ts9 symbols
src/localize.ts8 symbols
src/completion.ts6 symbols
src/extension.ts5 symbols
src/syntaxDecorations.ts3 symbols

Dependencies from manifests, versioned

@neilsustc/markdown-it-katex0.5.0 · 1×
@types/highlight.js9.12.4 · 1×
@types/image-size0.7.0 · 1×
@types/markdown-it10.0.2 · 1×
@types/mocha8.0.3 · 1×
@types/node12.12.58 · 1×
@types/vscode1.38.0 · 1×
entities2.0.3 · 1×
glob7.1.6 · 1×
grapheme-splitter1.0.4 · 1×
highlight.js10.2.0 · 1×
image-size0.7.4 · 1×

For agents

$ claude mcp add vscode-markdown \
  -- python -m otcore.mcp_server <graph>

⬇ download graph artifact