Jacob Deichert
Jacob Deichert
Required arguments use the round brackets like `(required_arg)` so optional args can probably use square brackets `[optional_arg]`. ```md ## say [phrase] ~~~sh if [[ $phrase != "" ]]; then echo...
Caching support was announced recently: https://github.blog/changelog/2019-11-04-github-actions-adds-dependency-caching/
Maybe something like `my cmd (files...)`. Not sure what format to inject the environment variable string as though. Perhaps just comma separated? `name1,name2,name3` ```md ## services start (services...) ~~~sh echo...
Code blocks on my website aren't highlighted when I use ``` yaml kramdown: input: GFM highlighter: rouge ``` However, they are highlighted when I use ``` yaml kramdown: input: GFM...
Another solution is to store a dictionary map on the js side and just send ids back and forth. That's better for static text, but dynamic text would still need...
Seems like there's some gotchas when it comes to what parts of Rust you use and how large it can cause your wasm output to be. The current wasm output...
When writing "OPTIONS" right after the description (without an empty line in between), it causes the description to be listed as "OPTIONS". ```md ## bad_desc > this should be the...