Like this:
<a data-bind="html: name, attr: { href: url }">
You use comma-separated bindings – the attribute is the same as passing an object:
{
html: name,
attr: { href: url }
}
Or, if you’re asking about multiple attr
bindings at once:
<a data-bind="html: name, attr: { href: url, 'data-prop': FullName }">