Last active
November 12, 2024 21:00
-
-
Save lynaghk/613465c834a826a5344b99b5b10e7c45 to your computer and use it in GitHub Desktop.
Copy markdown from Emacs, paste formatted content directly into GMail
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(defun formatted-copy (start end) | |
"Export region to HTML, and copy it to the clipboard." | |
(interactive "r") | |
(let* ((region-string (buffer-substring-no-properties start end)) | |
(shell-command "pandoc -f gfm -t html5 | pbcopy_html") | |
(output-buffer (generate-new-buffer "*Shell Command Output*"))) | |
(with-current-buffer output-buffer | |
(erase-buffer) | |
(insert region-string) | |
(shell-command-on-region (point-min) (point-max) shell-command t t)) | |
(kill-buffer output-buffer))) | |
(global-set-key (kbd "C-M-c") 'formatted-copy) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env swift | |
import Cocoa | |
import Darwin | |
let pasteboard = NSPasteboard.general | |
guard let data = try? FileHandle.standardInput.readToEnd() else { | |
exit(1) | |
} | |
pasteboard.clearContents() | |
pasteboard.setData(data, forType: .html) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment