Compare commits
No commits in common. "nextjournal-markdown" and "master" have entirely different histories.
nextjourna
...
master
6 changed files with 3 additions and 28 deletions
3
deps.edn
3
deps.edn
|
|
@ -52,8 +52,7 @@
|
||||||
org.babashka/cli {:mvn/version "0.8.65"}
|
org.babashka/cli {:mvn/version "0.8.65"}
|
||||||
org.babashka/http-client {:mvn/version "0.4.22"}
|
org.babashka/http-client {:mvn/version "0.4.22"}
|
||||||
org.flatland/ordered {:mvn/version "1.15.12"}
|
org.flatland/ordered {:mvn/version "1.15.12"}
|
||||||
org.jsoup/jsoup {:mvn/version "1.20.1"}
|
org.jsoup/jsoup {:mvn/version "1.20.1"}}
|
||||||
io.github.nextjournal/markdown {:mvn/version "0.6.157"}}
|
|
||||||
:aliases {:babashka/dev
|
:aliases {:babashka/dev
|
||||||
{:main-opts ["-m" "babashka.main"]}
|
{:main-opts ["-m" "babashka.main"]}
|
||||||
:profile
|
:profile
|
||||||
|
|
|
||||||
|
|
@ -37,7 +37,6 @@
|
||||||
[org.babashka/cli "0.8.65"]
|
[org.babashka/cli "0.8.65"]
|
||||||
[org.babashka/http-client "0.4.22"]
|
[org.babashka/http-client "0.4.22"]
|
||||||
[org.jsoup/jsoup "1.20.1"]
|
[org.jsoup/jsoup "1.20.1"]
|
||||||
[io.github.nextjournal/markdown "0.6.157"]
|
|
||||||
[borkdude/graal.locking "0.0.2"]]
|
[borkdude/graal.locking "0.0.2"]]
|
||||||
:plugins [[org.kipz/lein-meta-bom "0.1.1"]]
|
:plugins [[org.kipz/lein-meta-bom "0.1.1"]]
|
||||||
:metabom {:jar-name "metabom.jar"}
|
:metabom {:jar-name "metabom.jar"}
|
||||||
|
|
|
||||||
|
|
@ -52,8 +52,7 @@
|
||||||
org.babashka/cli {:mvn/version "0.8.65"}
|
org.babashka/cli {:mvn/version "0.8.65"}
|
||||||
org.babashka/http-client {:mvn/version "0.4.22"}
|
org.babashka/http-client {:mvn/version "0.4.22"}
|
||||||
org.flatland/ordered {:mvn/version "1.15.12"}
|
org.flatland/ordered {:mvn/version "1.15.12"}
|
||||||
org.jsoup/jsoup {:mvn/version "1.20.1"}
|
org.jsoup/jsoup {:mvn/version "1.20.1"}}
|
||||||
io.github.nextjournal/markdown {:mvn/version "0.6.157"}}
|
|
||||||
:aliases {:babashka/dev
|
:aliases {:babashka/dev
|
||||||
{:main-opts ["-m" "babashka.main"]}
|
{:main-opts ["-m" "babashka.main"]}
|
||||||
:profile
|
:profile
|
||||||
|
|
|
||||||
|
|
@ -15,8 +15,6 @@ Args=-H:+ReportExceptionStackTraces \
|
||||||
--initialize-at-build-time=com.fasterxml.jackson \
|
--initialize-at-build-time=com.fasterxml.jackson \
|
||||||
--initialize-at-build-time=java.sql.SQLException \
|
--initialize-at-build-time=java.sql.SQLException \
|
||||||
--initialize-at-build-time=org.yaml.snakeyaml \
|
--initialize-at-build-time=org.yaml.snakeyaml \
|
||||||
--initialize-at-build-time=org.nibor.autolink \
|
|
||||||
--initialize-at-build-time=org.commonmark \
|
|
||||||
--initialize-at-run-time=org.postgresql.sspi.SSPIClient \
|
--initialize-at-run-time=org.postgresql.sspi.SSPIClient \
|
||||||
--initialize-at-run-time=org.httpkit.client.ClientSslEngineFactory$SSLHolder \
|
--initialize-at-run-time=org.httpkit.client.ClientSslEngineFactory$SSLHolder \
|
||||||
-H:ServiceLoaderFeatureExcludeServices=javax.sound.sampled.spi.AudioFileReader \
|
-H:ServiceLoaderFeatureExcludeServices=javax.sound.sampled.spi.AudioFileReader \
|
||||||
|
|
|
||||||
|
|
@ -1,17 +0,0 @@
|
||||||
(ns babashka.impl.markdown
|
|
||||||
(:require [nextjournal.markdown]
|
|
||||||
[nextjournal.markdown.transform]
|
|
||||||
[nextjournal.markdown.impl :as impl]
|
|
||||||
[sci.core :as sci]))
|
|
||||||
|
|
||||||
@@#'impl/visitChildren-meth
|
|
||||||
|
|
||||||
(def mdns (sci/create-ns 'nextjournal.markdown nil))
|
|
||||||
|
|
||||||
(def markdown-namespace (sci/copy-ns nextjournal.markdown mdns))
|
|
||||||
|
|
||||||
(def mdtns (sci/create-ns 'nextjournal.markdown.transform nil))
|
|
||||||
|
|
||||||
(def markdown-transform-namespace (sci/copy-ns nextjournal.markdown.transform mdtns))
|
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -39,7 +39,6 @@
|
||||||
[babashka.impl.http-client :refer [http-client-namespace
|
[babashka.impl.http-client :refer [http-client-namespace
|
||||||
http-client-websocket-namespace
|
http-client-websocket-namespace
|
||||||
http-client-interceptors-namespace]]
|
http-client-interceptors-namespace]]
|
||||||
[babashka.impl.markdown :as md]
|
|
||||||
[babashka.impl.nrepl-server :refer [nrepl-server-namespace]]
|
[babashka.impl.nrepl-server :refer [nrepl-server-namespace]]
|
||||||
[babashka.impl.pods :as pods]
|
[babashka.impl.pods :as pods]
|
||||||
[babashka.impl.pprint :refer [pprint-namespace]]
|
[babashka.impl.pprint :refer [pprint-namespace]]
|
||||||
|
|
@ -433,9 +432,7 @@ Use bb run --help to show this help output.
|
||||||
'babashka.cli cli/cli-namespace
|
'babashka.cli cli/cli-namespace
|
||||||
'babashka.http-client http-client-namespace
|
'babashka.http-client http-client-namespace
|
||||||
'babashka.http-client.websocket http-client-websocket-namespace
|
'babashka.http-client.websocket http-client-websocket-namespace
|
||||||
'babashka.http-client.interceptors http-client-interceptors-namespace
|
'babashka.http-client.interceptors http-client-interceptors-namespace}
|
||||||
'nextjournal.markdown md/markdown-namespace
|
|
||||||
'nextjournal.markdown.transform md/markdown-transform-namespace}
|
|
||||||
features/xml? (assoc 'clojure.data.xml @(resolve 'babashka.impl.xml/xml-namespace)
|
features/xml? (assoc 'clojure.data.xml @(resolve 'babashka.impl.xml/xml-namespace)
|
||||||
'clojure.data.xml.event @(resolve 'babashka.impl.xml/xml-event-namespace)
|
'clojure.data.xml.event @(resolve 'babashka.impl.xml/xml-event-namespace)
|
||||||
'clojure.data.xml.tree @(resolve 'babashka.impl.xml/xml-tree-namespace))
|
'clojure.data.xml.tree @(resolve 'babashka.impl.xml/xml-tree-namespace))
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue