This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2016-08-15
Channels
- # admin-announcements (3)
- # architecture (2)
- # beginners (54)
- # boot (85)
- # braveandtrue (8)
- # cider (21)
- # cljs-dev (56)
- # cljs-site (5)
- # cljsjs (15)
- # cljsrn (9)
- # clojars (4)
- # clojure (99)
- # clojure-austin (1)
- # clojure-russia (36)
- # clojure-spec (53)
- # clojure-uk (29)
- # clojurescript (161)
- # datomic (8)
- # hoplon (3)
- # immutant (48)
- # jobs (1)
- # jobs-rus (1)
- # leiningen (10)
- # om (23)
- # om-next (1)
- # onyx (22)
- # parinfer (3)
- # planck (13)
- # protorepl (8)
- # re-frame (46)
- # reagent (2)
- # remote-jobs (1)
- # respo (1)
- # specter (5)
- # testing (12)
- # untangled (50)
- # yada (13)
I just finished reading the manual from top to bottom. Writing such comprehensive documentation is hard work, so I just wanted to say, thank you for your attention to detail, and I'm eager for the parts that are yet to be filled in.
@malcolmsparks: unrelated to yada - but the new docs look great and I familiar with Asciidoc and wouldlike to use similar format for unrelated project - are there open source stylesheets, workflow suggestions etc.
@tbrooke: we've mostly gone with the defaults and stylesheets here: https://github.com/asciidoctor/asciidoctorj
there are lots of open-source themes and options available
it really was quite straightforward to generate the book. Here's the code I used:
served of course with a yada resource:
The :state value of the yada ctx here isn't yada, I'm injecting in using a custom interceptor
In our website we keep all our application state in a tree which can be deref'd - it's just like Om's app-state or Reagent's ratom, but contains the entire state of the observeable universe (at least as far as our server is concerned) - we deref it on every request - means that for the lifetime of the request/response, the universe is frozen and consistent.
but anyway, AsciiDoc is very easy. Here's the book.adoc file
With asciidoc, includes are built in. Cross-references are super easy too, plus tables, code snippets, etc.
It is so much more consistent and powerful than markdown, imho
much better suited to writing a pile of technical documentation
@malcolmsparks: Wow Thanks and of course the html has to be served as a resource