I have a txt file on the web, that is contructed like this:
"key1 value1
key2 value2
key3 value3
..."
Can I using Yahoo! Pipes parse it to JSON? The end format should be like:
{key1 : value1,
key2 : value2,
key3 : value3,
...}
Any hint is welcome :)