1
0
mirror of synced 2025-01-19 23:11:41 +03:00

9 lines
167 B
PHP
Raw Normal View History

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