1
0
mirror of synced 2025-01-19 15:01:40 +03:00
2007-10-17 21:16:49 +00:00

9 lines
167 B
PHP

<?php
class Text_Wiki_Render_Latex_Doclink extends Text_Wiki_Render {
function token($options)
{
return '\ref{' . $options['path'] . '}';
}
}