Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

VS Code 1.3 Re-Enabling Markdown Preview

In version 1.3 of Visual Studio Code, looks like they removed the native markdown preview support and refactored it to be a VS Code extension. The release notes mentions this, but doesn't recommend what plug-in(s) we should install to get this functionality back into the editor.

Does anyone know what plug-in we should be using to re-enable the Markdown Preview?

From the Release notes: https://code.visualstudio.com/updates/June_2016

Extract Markdown into an extension The Markdown language support has been refactored to be a regular VS Code extension. It uses the Markdown TextMate grammar for syntax highlighting source and renders the Markdown as HTML using the markdown-it library which implements the CommonMark Spec.

like image 851
Zaffiro Avatar asked Jul 09 '16 22:07

Zaffiro


People also ask

How do you get the Markdown preview in VS Code?

Markdown preview# To switch between views, press Ctrl+Shift+V in the editor. You can view the preview side-by-side (Ctrl+K V) with the file you are editing and see changes reflected in real-time as you edit.

How do I open Markdown preview enhanced?

Commands. You can press cmd-shift-p in atom editor to toggle Command Palette . The cmd key for Windows is ctrl . Toggle Markdown file preview.

How do you display Markdown?

The file should have an .md or .markdown extension. Open the Markdown file in a Markdown application. Use the Markdown application to convert the Markdown file to an HTML document. View the HTML file in a web browser or use the Markdown application to convert it to another file format, like PDF.


1 Answers

  • Markdown Preview is enabled in VS Code 1.3. What the release notes said is that feature has been moved to an preinstalled extension. You can check that in the sub-directory "extensions" of a VSCode installation. It contains a sub-folder "markdown". That's the markdown extension.

  • Markdown Preview is moved into the context menu of a tab for some reasons. Check the issue on https://github.com/Microsoft/vscode/issues/8996

enter image description here

like image 174
Yuan Avatar answered Sep 27 '22 23:09

Yuan