Parses the render options that would be used to follow the given link, but does not render.
Given a link with some [up-...]
attributes:
<a href="/foo" up-target=".content" up-layer="new">...</a>
We can parse the link's render options like this:
let link = document.querySelector('a[href="/foo"]')
let options = up.link.followOptions(link)
// => { url: '/foo', method: 'GET', target: '.content', layer: 'new', ... }
Additional options for following the link.
Values from these options will override any attributes set on the given link element.