bootleg icon indicating copy to clipboard operation
bootleg copied to clipboard

Simple template processing command line tool to help build static websites

Results 12 bootleg issues
Sort by recently updated
recently updated
newest added

This ```sh echo "[how to deal with promises](https://gist.github.com/roman01la/b939e4f2341fc2f931e34a941aba4e15#repl--asynchrony)" > bootleg-md-dash-omit.md bootleg -e '(markdown "bootleg-md-dash-omit.md")' ``` breaks the link by omitting one of the dashes ```html how to deal with promises...

Hi there! Thanks for putting together this great library, and for making it available to Babashka users as a pod. I'm trying to get it set up in Docker for...

Hi! It would be awesome if bootleg also supported AsciiDoctor as the source format. I find it far superior to Markdown for technical writing, and use it successfully for my...

``` (require '[babashka.pods :as pods]) (pods/load-pod 'retrogradeorbit/bootleg "0.1.9") (require '[pod.retrogradeorbit.bootleg.enlive :as e]) (require '[pod.retrogradeorbit.net.cgrand.enlive-html :as eh]) (->> "hello" eh/html-snippet (eh/select [(eh/attr? "data-x")])) ``` Run with bb, get: ``` Cannot read...

Would be nice to have html minification powers built into bootleg. Appraise any existing clojure projects. Then add them or implement something fresh.

enhancement

`enlive/at*` is a bit easier to use when programmatically passing selectors and transformations as collection. I'm not sure if this is the right way of doing it, let me know...

``` $ bootleg -e '(-> [:div {:class nil}] (convert-to :html))' bootleg: script error at line , column : Illegal argument: Vector arg to map conj must be a pair ```...

bug

A great project, thank you. Would bootleg be suitable for generating multi-page websites, such as those I create for the Practicalli series of books, e.g. https://practicalli.github.io/clojure-webapps/ This website is currently...

Hi @retrogradeorbit Thanks for writing this package. I love the appeal of a small bash tool that spits html. It does what it claims to do really well. However most...

ideas

I'm using bootleg both via babashka v1.2.174 and running the jar file (java 11.0.13) on Windows 10 Home Single Language here is a reproducible example via babashka ```clojure (ns user)...