1
0
mirror of synced 2025-01-27 10:31:45 +03:00

9 lines
167 B
PHP

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