archieml-ruby
archieml-ruby copied to clipboard
Ruby parser for the Archie Markup Language (ArchieML)
This proposes an additional example, structurally identical to the first except updated to use Google Drive V3 API since Google no longer maintains documentation on how to authenticate legacy versions...
fixes https://github.com/newsdev/archieml-ruby/issues/1 I got bitten by this too. I think URLs are compelling enough to treat this as a special case. I also think that the `START_KEY` regex is complex...
Currently, ``` noturls: value urls: http://foo.com http://bar.com :end ``` is parsed as ``` { "noturls": "value", "urls": "", "http": "//bar.com" } ``` Desired result is: ``` { "noturls": "value", "urls":...