Results 154 comments of John Gabriele

Since djot already supports `` $`a+b=c` `` for inline LaTeX math, and `` $$`d=ef` `` for display math, maybe %`this for an inline comment` and ~~~ %%`This for a multi-line...

@levitanong , descriptions are in each individual project's project.janet file. I wrote a quick script to go grab project.janet files and from that generate a directory page from it ([gen-janet-pkg-listing-page](https://github.com/uvtc/gen-janet-pkg-listing-page)),...

@levitanong , yeah, mine is just a rough script that is not smart about updates. Not sure what the PBJ (Powered-by-Janet) site does.

Ok. I cloned this repo onto my local machine. I checked that I had /usr/local/include/janet/janet.h present, then went into main.c and changed the include line to `#include "/usr/local/include/janet/janet.h"` Then, as...

I did: ~~~ $ cd ~/temp $ git clone --recursive https://github.com/janet-lang/janetui.git $ su - # cd ~john/temp/janetui # jpm install {... snip ...} [100%] Linking C shared module libjanetui.so [100%]...

@cody271 , thanks. When I change that one line to a relative import, the app runs!

@sogaiu , thanks. The `--recursive` option to `git` pulled in libui. It looks like, when originally trying jpm install https://github.com/janet-lang/janetui maybe it did not recursively pull in libui? Where does...

Didn't know about that `--syntax-definition` option. Thanks! I'd assumed that, if the xml syntax file is in that KDE repo, then it's by default included in skylighting. That is, that...

Hare has an official [spec](https://harelang.org/specification/), has solid [reference docs](https://docs.harelang.org/), and my impression is that it's all about being conservatively-developed and a ["boring systems language"](https://harelang.org/blog/2022-11-27-hare-is-boring/) that'll stay stable after v1.0. That...