Results 10 issues of Sergey Toropenko

When I try to install closh via `npm install closh` I get this error: ``` ERROR: Closh requires node version 9, but your version is v12.18.3. Please switch to the...

In clojure `(first nil)` and `(first ())` returns nil. Knapsack throws, which is quite disconcerting. It would be great if this behavior was consistent with how clojure does this.

``` (let [data "abcdef"] (h/as-hiccup (h/parse data))) ``` gives me ``` ([:html {} [:head {}] [:body {} [:root {} [:link {}] "abc" [:link {}] "def"]]]) ``` when i should expect...

- [x] I have read through the quick start and installation sections of the [README](../README.md). ## Info | Info | Value | | --- | --- | | Operating System...

`lein test` allows to filter tests with one of selectors which are defined in `project.clj` in the `:test-selectors` section. Is it possible to do the same trick with `lein doo`?

https://funcool.github.io/struct/latest/ has 404 for its css page, which comes from https://niwi.nz/_assets/asciidoctor-styles/simple-red-titles/stylesheet.css

I frequently find myself utilizing hiccup-style data structures rather than strings/streams. Something like: ``` [:list [:token "defproject"] [:whitespace " "]... ] ``` In the past, I would convert it into...

``` (let [stylesheet (xsl/stylesheet {:version 3.0} (xsl/variable {:name "break1" :select "'
'"}) (xsl/variable {:name "break2"} (xsl/text "\n")) (xsl/template {:match "a"} [:b] [:p (xsl/value-of {:select "$break1"})] [:p (xsl/value-of {:select "$break2"})])) compiled-stylesheet (xslt/compile-sexp...

TURTLE allows RDF* syntax: ```@prefix : . @prefix ex: . @prefix xsd: . ex:Alice ex:knows ex:Bob . > ex:certainty "0.9"^^xsd:float ; ex:source ex:LinkedIn . ``` and Apache Jena has support...