From Newsletter 43:
You can mark up a phone number as an anchor link. It involves using a protocol, like http:, only it's tel:. So...
<a href="tel:555-555-5555">555-555-5555</a>
What I don't fully understand is what the perfect way to use this.
It seems like the best practice would then be like (pseudo code):
IF (android && actually_a_phone)
OR (desktop && actually_set_up_to_do_calls) {
// inject tel: links
} ELSE {
// leave phone numbers alone
}