nobody on Nostr: How do you š«µ quickly escape your JSON string? Trivial but mega useful when needed ...
How do you š«µ quickly escape your JSON string? Trivial but mega useful when needed for lots of things š¤·āāļø
`escapy_json '{"key1":"value1","key2":"value2ā}ā`
```
# python command to escape JSON string (minimal py deps)
escapy_json() {
python -c "import json; print(json.dumps('$1'))"
}
```
`escapy_json '{"key1":"value1","key2":"value2ā}ā`
```
# python command to escape JSON string (minimal py deps)
escapy_json() {
python -c "import json; print(json.dumps('$1'))"
}
```