Get links from rss feed

set(#Html,$read file("https://news.google.com/news?cf=all&hl=en&ned=us&q=KEYWORD&output=rss"),"Global")
set(#Html,$replace(#Html,"&lt;","<"),"Global")
set(#Html,$replace(#Html,"&gt;",">"),"Global")
set(#Html,$replace(#Html,"&quot;","\""),"Global")
set(#Html,$replace(#Html,"&#39;","\'"),"Global")
set(#Html,$replace(#Html,"&apos;","\'"),"Global")
loop(10) {
    set(#Html,$replace(#Html,"&amp;","&"),"Global")
}
load html(#Html)
wait(2)
add list to list(%Links,$find regular expression(#Html,"(?<=&url=).*?(?=(</link>|\"))"),"Delete","Global")
load html("
{$replace(%Links,"
","<br>")}")