Viktor Persson

Results 18 comments of Viktor Persson

@fprotimaru I created a pretty printer with `timestamp prefix [...msg]`. **Code** ```go package term import ( "fmt" "time" "github.com/fatih/color" ) const DELIMITER = " " var white = color.New(color.FgWhite).SprintFunc() type...

An update of the documentation is indeed needed! Some thoughts: * ezQuake docs is using GitHub Pages (Jekyll). * Jekyll can read ["data" files](https://jekyllrb.com/docs/datafiles/) (JSON, CSV etc) eg. `ezQuake/ezquake.github.io/_data/foo.json` Hence...

When using GitHub Pages (which the [ezquake.github.io repo](https://github.com/ezQuake/ezquake.github.io) has enabled), a workflow is added behind the scenes to the repository. A job with `on commit` trigger will checkout the repository,...

I got it working! :) * [`main` (ezquake source) workflow](https://github.com/vikpe/ezquake-source/blob/master/.github/workflows/notify-ezquake-docs.yml) * [`docs` workflow](https://github.com/vikpe/ezquake.github.io/blob/master/.github/workflows/on-ezquake-update.yml)

Example variable listing based on JSON file: https://vikpe.org/ezquake.github.io/docs/vars/demos/

> The major-group and group properties are used to organize vars in the output - nice. It looks like you're excluding the Obsolete groups, right? Yes they are excluded. >...

Yes I have some ideas. Thinking about using [vitepress](https://vitepress.vuejs.org/), semi automated, from source code and community feedback/pull requests.

Commit 132ad3e (2018-12-06) [removed](https://github.com/sdispater/cleo/commit/132ad3e2d59addbe87ee182d8444d10e58104944#diff-149d70c074edbf71dfb1988c3a0da910L664) `set_default_command()`. --- ### In versions `0.6.8` **Problem** * When no command is given the application runs the first command that is set as `.default()`. * The...

@newmanw I stumbled upon the same issue recently and "solved" it by exposing the schema middleware function and using [lodash.bind()](https://lodash.com/docs/4.17.4#bind) during testing in order to rewrite the `this` context. I...

Ported most of the content from my last suggestion to a default vitepress installation: https://ezquake.quake.se - structuring the doc pages a bit and then add algolia doc search will make...