Files
vscode-extension-samples/notebook-extend-markdown-renderer-sample
Matt Bierner 2ee6b0b7b9 Update all of our samples to target VSCode 1.100 or newer
This makes sure that if folks get a relatively recent `vscode.d.ts`. It also lets us safely bump up the target to es2024 so you can use all the latest lib additions
2025-08-07 07:57:14 -07:00
..
2024-10-26 17:44:03 -07:00

Notebook Extend Markdown Renderer Sample

Demonstrates a how a custom notebook renderer can extend VS Code's built-in notebook markdown renderer (similar approaches can be used to extend other notebook renderers).

This extension adds :emoji: rendering support to the built-in markdown renderer used for notebooks. Try it out by writing: :cat: or :smile: in a markdown cell.

Running this Sample

  1. cd notebook-extend-markdown-renderer-sample
  2. code-insiders .: Open the folder in VS Code Insiders
  3. Hit F5 to build+debug