Just discovered a cool Chrome extension so that you can get proper syntax highlighting when pasting code into your email. It turns plain-old code into something nice to read:
*Plain:* (defn truthy? "Returns true if arg is logical true (neither nil nor false); otherwise returns false." [arg] (if arg true false) ) (s/fdef truthy? :args ::s/any :ret boolean?) *Nice:* (defn truthy? "Returns true if arg is logical true (neither nil nor false); otherwise returns false." [arg] (if arg true false) ) (s/fdef truthy? :args ::s/any :ret boolean?) Find it in the Google Chrome web store: https://chrome.google.com/webstore/detail/gmail-syntax-highlighting/pcipmnfalbiopheelcmpllcjciifkaeh Alan -- Note that posts from new members are moderated - please be patient with your first post. --- You received this message because you are subscribed to the Google Groups "ClojureScript" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at https://groups.google.com/group/clojurescript.
