npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

jupyterlab_paste_content_as_markdown_extension

v1.0.5

Published

JupyterLab extension to paste clipboard content (HTML, formatted text) as markdown into text editors and notebook cells

Downloads

321

Readme

jupyterlab_paste_content_as_markdown_extension

GitHub Actions npm version PyPI version Total PyPI downloads JupyterLab 4 Brought To You By KOLOMOLO Donate PayPal

[!TIP] This extension is part of the stellars_jupyterlab_extensions metapackage. Install all Stellars extensions at once: pip install stellars_jupyterlab_extensions

Paste clipboard content as markdown into JupyterLab. Copy formatted text from a web page, email, or Word document, right-click in any editor or notebook cell, and select "Paste as Markdown" - the HTML formatting is converted to clean markdown on the fly.

Full disclosure: This extension adds one context menu item. It reads your clipboard, converts whatever formatting it finds to markdown, and pastes it. That's it. No AI, no blockchain, no cloud sync. Just clipboard-to-markdown, the way nature intended.

Paste as Markdown

Features

  • Paste as Markdown context menu - Right-click in any text editor or notebook cell to find "Paste as Markdown" right next to the regular paste
  • HTML to markdown conversion - Converts formatted HTML content copied from web pages, emails, and documents into clean markdown using ATX headings, fenced code blocks, and standard list markers
  • Rich text support - Handles content copied from Word, Google Docs, Confluence, Notion, and other rich text editors that place HTML on the clipboard
  • Preserves structure - Maintains headings, lists, links, bold, italic, code blocks, tables, and images during conversion
  • Plain text fallback - When no HTML is available on the clipboard, pastes the plain text content as-is
  • Works everywhere in JupyterLab - File editors, markdown cells, code cells, and any editable area

How It Works

Most applications place both plain text and HTML on the clipboard when you copy formatted content. This extension reads the HTML version via the browser Clipboard API, runs it through Turndown to produce markdown, and inserts the result at your cursor position. If no HTML is found, it falls back to plain text.

Requirements

  • JupyterLab >= 4.0.0

[!NOTE] The browser Clipboard API requires a secure context (HTTPS or localhost). If JupyterLab is served over plain HTTP on a remote host, the clipboard read will fail and you will see an error dialog. Use HTTPS or an SSH tunnel in that case.

Install

pip install jupyterlab_paste_content_as_markdown_extension

Usage

  1. Copy formatted content from any source (web page, Word, Google Docs, email)
  2. Right-click in a JupyterLab text editor or notebook cell
  3. Select Paste as Markdown from the context menu

The converted markdown appears at your cursor position.

Uninstall

pip uninstall jupyterlab_paste_content_as_markdown_extension

License

BSD 3-Clause License