I just realized that when I write space after a link with label, e.g.
[[page#label |text]], I get a "_" after the label in the XHTML.

I searched for the cause. It seems that the line 467 of the
markups.php file, in the BOLTMlinks function:

$link = str_replace(' ', '_', BOLTutf8_strip($link));

needs this change to remove spaces:

$link = str_replace(' ', '_', BOLTutf8_strip(trim($link)));

I didn't investigate deeper. Maybe there's a simpler solution.

Cheers,
Marcos

--
http://alinome.net
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"BoltWire" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/boltwire?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to