This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2018-02-13
Channels
- # beginners (50)
- # boot (27)
- # bristol-clojurians (7)
- # cider (30)
- # clara (1)
- # cljs-dev (130)
- # cljsrn (14)
- # clojure (179)
- # clojure-austin (6)
- # clojure-greece (2)
- # clojure-italy (4)
- # clojure-spec (19)
- # clojure-uk (54)
- # clojurescript (64)
- # core-async (3)
- # data-science (1)
- # datomic (66)
- # duct (11)
- # emacs (5)
- # figwheel (1)
- # fulcro (26)
- # funcool (7)
- # jobs (1)
- # jvm (6)
- # keechma (5)
- # lein-figwheel (5)
- # luminus (5)
- # lumo (1)
- # off-topic (93)
- # parinfer (37)
- # pedestal (15)
- # protorepl (10)
- # re-frame (42)
- # reagent (12)
- # shadow-cljs (71)
- # spacemacs (3)
- # specter (7)
- # vim (8)
- # yada (9)
@gganley Since TaskPaper seems to use only plain text files and understands only a very simple syntax, you could definitively use a "RegExp replace" or a write a short Macro to convert your org-mode file syntax into TaskPaper.
@gganley if you write something yourself, you might find this useful https://github.com/gfredericks/org-editor
@gganley - I also wonder if TaskPaper might convert to/from any format that pandoc understands. http://pandoc.org/ It already understands org-mode syntax.
If I remember from my haskell days pandoc uses attoparsec so “all i need to do” is write a TaskPaper parser and bam, free money
Can I change the default template that is generated for test files?
Not sure whose responsibility (cider, projectile, ???) it is but when I create a new test file it will automatically generate a skeleton with matching namespace aliased as sut
+ clojure.test
namespace aliased as t
. I'd like to change (at least) the clojure.test
part to :refer :all