# Paste Markdown for Sublime Text Paste a web selection copied from Chrome as Markdown instead of plain text. ## Usage 1. Select content on a page in Chrome and copy it with `Cmd+C`. 2. Switch to Sublime Text. 3. Open the Command Palette and run `Paste Markdown: Paste HTML as Markdown`. The command converts common HTML elements including headings, paragraphs, emphasis, links, images, lists, blockquotes, code blocks, and tables. If the clipboard does not contain HTML, it pastes plain text by default. ### Keyboard shortcut Package Control packages should not claim shortcuts by default. To use `Cmd+Ctrl+V`, open `Preferences > Package Settings > Paste Markdown > Key Bindings`. Copy the example binding into your user keymap. ```json [ { "keys": ["super+ctrl+v"], "command": "paste_markdown" } ] ``` ## Installation Install `Paste Markdown` with Package Control. For development, open Sublime Text's `Preferences > Browse Packages...`, then place or symlink this directory there as `Paste Markdown`: ```sh ln -s /Users/wuvist/code/subl_paste_md \ "$HOME/Library/Application Support/Sublime Text/Packages/Paste Markdown" ``` Sublime Text reloads the plugin automatically. ## Settings Open `Preferences > Package Settings > Paste Markdown` after installing, or override these keys in `Packages/User/Paste Markdown.sublime-settings`: ```json { "fallback_to_plain_text": true, "show_status_message": true } ``` ## Development The converter uses only Python's standard library. Run its tests with: ```sh python3 -m unittest -v ``` The rich clipboard integration currently targets macOS.