vote up 0 vote down star

Hi all,

I am trying to get some documentation up and running; however, my email address is not coming up as linkable:

<email><ulink url="mailto:SomeUser@someDomain.com"/></email>

Becomes:

<mailto:SomeUser@someDomain.com>

I don't want the mailto: to appear. If I put content in the ulink, it shows the mailto and the content whereas I would just want the content to appear.

Walter

flag

68% accept rate

2 Answers

vote up 1 vote down

Docbook is subspace of XML and does not specify any formatting: these rules are described in XSL or DSSSL scripts that convert the mark-up into a formatted text. I believe you should check these rules out!

link|flag
I have a rule that works for links to web pages, but I'm not having such luck with email addresses. Which way is correct though <email> or <ulink url="mailto: ...">? Walter – Walter White Sep 9 at 22:39
Sorry, i have no experience with DocBook :) I just know it separates model from view, so you sould look there... – o_O Tync Sep 10 at 18:12
vote up 2 vote down

Like Tync said, Docbook itself does not specify formatting. When you write the <email> tag, that merely indicates to the renderer that the enclosed text is an email address. The renderer may then decide that it should be formatted as monospace text, or maybe that your email should be bold and italics!

Likewise, there's a lot of tags that are pretty meaningless as far as formatting goes -- the city tag, for instance. But, that is metadata to the document that might be important to some Docbook parser out there.

The only way to guarantee that your email is a hyperlink to sending you an email is to use the ulink tag as you have shown above, because a renderer must create a hyperlink if the output format supports it.

link|flag
Ok, that makes sense. I just need to figure out how to hide the mailto: stuff from displaying and I will be golden. If you know what attribute that might be under, that will help out a lot. Thanks, Walter – Walter White Sep 10 at 12:33

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.