What I would like to do is take the value of the href
and assign it to the email property. Right now, I have something like this
<a href="mailto:jane-doe@xyz.edu" itemprop="email">email</a>
The result is email="email"
The schema.org documentation has an example that uses the following syntax
<a href="mailto:jane-doe@xyz.edu" itemprop="email">jane-doe@xyz.edu</a>
The result is email=jane-doe@xyz.edu
Do I have to spell out my email address in order to mark it up using microdata?
I know that some properties such as URL actually grab the href
value instead of the text surrounded by the HTML tag. Is this possible to configure for the email property?