Home | History | Annotate | Download | only in markdown

Lines Matching refs:mailto

369         are known not to (i.e.: mailto links). Script urls do not contain a
390 locless_schemes = ['', 'mailto', 'news']
491 Return a mailto link Element given an automail link (`<foo@example.com>`).
496 if email.startswith("mailto:"):
497 email = email[len("mailto:"):]
510 mailto = "mailto:" + email
511 mailto = "".join([util.AMP_SUBSTITUTE + '#%d;' %
512 ord(letter) for letter in mailto])
513 el.set('href', mailto)