Liking cljdoc? Tell your friends :D

clj-tachyons

A Clojure(Script)? library designed to validate Tachyons configuration and generate Tachyons classes

Usage

(ns my.app
  (:require [clj-tachyons.core :as t]))

;; Using a set
(t/generate-class #{:white :z-0})
;; "white z-0"

;; Using a vector
(t/generate-class [:white :z-0])
;; "white z-0"

;; Invalid classes throw
(t/generate-class [:z-6])
;; Error: Invalid tachyons-class: z-6

License

Copyright © 2017 Marcelo Nomoto

Distributed under the Eclipse Public License either version 1.0 or (at your option) any later version.

Can you improve this documentation?Edit on GitHub

cljdoc is a website building & hosting documentation for Clojure/Script libraries

× close