Results 224 comments of Brian

@j-evins decided to check your suggestions, no luck... that being said making it easier for non technical users to send templates would help with expanding the label template database. ```...

Oh is that so? I wonder why the ubuntu package repository is so old. Maybe I should poke Ubuntu Developers about this. My understanding that at least for ubuntu, that...

Fair enough, looking forward to the official apt package update. That being said. Making it as easy as possible for ordinary office workers to contribute via a "send template suggestion"...

@casey stance on this proposal > Generating a markdown document with all the commands would be super easy, so I wouldn't be opposed to it, but I would want to...

Hmmm... interesting. Generated an example of a jq command to see what an output may look like ```bash just --dump --dump-format=json --unstable | jq -r ' .recipes | ["| Recipe...

Yeah. I think the issue is that the Json format is not quite stable. Also a bit hard for me to interpret how I would format the content. Could you...

> If you're experimenting, you might look into writing a simple Pandoc "reader" in Lua. Here's an [example](https://pandoc.org/custom-readers.html#example-parsing-json-from-an-api). > > Or a more direct approach: Produce JSON-formatted Pandoc AST directly,...

@offby1 attempted to replicate, but had to adjust it a bit as I got no output with your version ```python #!/usr/bin/env python3 # python3 dotgen.py | dot -Tsvg >> justfile.svg...

@offby1 Oh, but it works well with mermaid so that's a plus (tested against just repo's justfile) ```python #!/usr/bin/env python3 # python3 mermaidgen.py | mmdc -i - -o /tmp/output.png ;...

```python #!/usr/bin/env python3 # python3 mermaidgen.py | mmdc -i - -o /tmp/output.png ; xdg-open /tmp/output.png import json import subprocess json_output = subprocess.run( ["just", "--dump", "--dump-format", "json", "--unstable"], check=True, capture_output=True, ).stdout...