This file contains hidden or 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
| (ns testing.core | |
| (:require-macros [cljs.core.async.macros :refer [go alt!]]) | |
| (:require [cljs.core.async :refer [<! take! chan close! put! go-loop >!] :as async]) | |
| (:require ["child_process" :refer [spawn]])) | |
| (defn done-message? [message] | |
| (and | |
| (vector? message) | |
| (= (message 0) :done))) |
This file contains hidden or 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 bash | |
| # md2pb - Convert markdown to rich text format for Slack/Discord/etc | |
| # | |
| # DESCRIPTION: | |
| # Converts markdown to both plain text and HTML formats, then places both on the | |
| # macOS clipboard. This allows pasting rich formatted text into apps like Slack, | |
| # Discord, or any app that accepts HTML clipboard data. | |
| # | |
| # USAGE: |
OlderNewer