friendly icon indicating copy to clipboard operation
friendly copied to clipboard

HTML and XML parser for Elixir aiming at friendly API

Results 1 friendly issues
Sort by recently updated
recently updated
newest added

``` url = "http://ftp1.nluug.nl/mediaplayer/xbmc/addons/krypton/addons.xml" case HTTPoison.get(url,[], [connect_timeout: 1000000, recv_timeout: 1000000, timeout: 1000000]) do {:ok, %HTTPoison.Response{status_code: 200, body: body, headers: headers}} -> addons = body |> XmlParser.parse_string end ``` ``` def...