This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2020-12-17
Channels
- # adventofcode (56)
- # announcements (1)
- # aws (6)
- # beginners (127)
- # bristol-clojurians (1)
- # calva (29)
- # cider (7)
- # clj-kondo (37)
- # cljdoc (20)
- # cljsrn (7)
- # clojure (159)
- # clojure-europe (67)
- # clojure-italy (23)
- # clojure-nl (4)
- # clojure-provo (3)
- # clojure-uk (18)
- # clojurescript (19)
- # code-reviews (59)
- # community-development (105)
- # conjure (6)
- # core-async (16)
- # core-logic (1)
- # cursive (21)
- # datomic (19)
- # defnpodcast (1)
- # emacs (8)
- # events (2)
- # fulcro (71)
- # graalvm (23)
- # jobs-discuss (1)
- # kaocha (5)
- # luminus (5)
- # meander (16)
- # nrepl (32)
- # off-topic (6)
- # pathom (159)
- # pedestal (3)
- # reagent (14)
- # reitit (8)
- # reveal (12)
- # rewrite-clj (9)
- # shadow-cljs (169)
- # spacemacs (16)
- # specter (2)
- # sql (19)
- # tools-deps (36)
- # vim (6)
@martinklepsch that would be great, for linking to issues pages, Slack page links etc from the sidebar
Yeah, makes perfect sense. Do you want to open an issue or maybe even a PR? If you’re generally down I’m happy to provide some pointers
I don’t have the bandwidth to do this now, unfortunately, but here’s an issue placeholder
another Q for y’all - is there any facility now for rendering LaTeX in cljdocs?
Unfortunately not. Maybe we could support it via some Asciidoc extension though… :thinking_face: cc @U09LZR36F
one official one: https://github.com/asciidoctor/asciidoctor-latex
and this looks less official, but another option: https://github.com/cirosantilli/asciidoctor-katex-2
but more peppy: > Besides those however, it the extension is already working pretty well, and if those points were implemented, we would have, I believe, the best HTML ath typesetting system created so far, opening the way to destroy LaTeX and world domination.
https://www.javacodemonk.com/how-to-enable-asciimath-formula-using-mathjax-in-asciidoctorj-c3411510
looks like there’s an asciimath extension
though that just handles emitting properly escaped \$…
yeah, it is more just about adding a flag to embed mathjax on the cljdoc page
<script>
window.MathJax = {
loader: {load: ['[tex]/physics']},
tex: {
tags: 'ams',
processEscapes: true,
inlineMath: {'[+]': [['$', '$']]},
packages: {'[+]': ['physics']}
}
};
</script>
<script type="text/javascript" id="MathJax-script" async
src="">
</script>
something like this
made an issue in case this is an attractive idea!