hen 0.16.0

Run protocol-aware API request collections from the command line or through MCP.
Documentation
1
2
3
4
5
6
7
8
9
var               =  { (ASCII_ALPHANUMERIC | "_")+ }
default           =  { (!"]]" ~ ANY)+ }
input             =  { var ~ (whitespace* ~ "=" ~ whitespace* ~ default)? }

whitespace        = _{ "\t" | " " }
var_placeholder   = _{ "{{" ~ whitespace* ~ var ~ whitespace* ~ "}}" }
input_placeholder = _{ "[[" ~ whitespace* ~ input ~ whitespace* ~ "]]" }
word              =  { (!("{{"|"[[") ~ ANY)+ }
text              =  { SOI ~ (var_placeholder | input_placeholder | word)* }