warn not to use simple parser

Simple parser was only intended for quick test and not for beeing used in production.  
So add a warning not to use it.
pull/146/head
seebye 3 years ago committed by GitHub
parent 761f134d22
commit 3078a19f6d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -58,9 +58,14 @@ Commands are separated with a line break.
### Command formats
- json: Command as json object
- simple: Key-value pairs seperated by a tab,
pairs are also seperated by a tab
- bash: dump of an associative array (`declare -p variable_name`)
- simple:
Key-value pairs seperated by a tab,
pairs are also seperated by a tab
**:warning: ONLY FOR TESTING!**
Simple was never intended for the usage in production!
It doesn't support paths containing tabs or line breaks
which makes it error prone.
- bash: dump of an associative array (`declare -p variable_name`)
### Actions

Loading…
Cancel
Save