>
> This is the config.php structure:
>
> if ($format=='pdf') Markup('cite', 'inline', ...);
>
> ...
>
> Markup('cite', 'inline', ...);
>
> ...
>
> if ($format=='pdf') Markup('bibliocite', '<cite', ...);

To get this to work, I had to change the last statement to:

if ($format=='pdf')
{  DisableMarkup('cite'); Markup('bibliocite', 'inline', ...);  }

Don't know why the disable is needed.
-- 
John Rankin


_______________________________________________
pmwiki-devel mailing list
pmwiki-devel@pmichaud.com
http://www.pmichaud.com/mailman/listinfo/pmwiki-devel

Reply via email to