Remove the `<arara>` shorthand
Currently, you can write YAML code such as
command: <arara> @{ return getCommand("ls"); }
For some versions
command: >
@{
return getCommand("ls");
}
is preferred.
It is time to remove the shorthand syntax because it only provides additional complexity to parsing and does not have any serious value.