1
0
mirror of synced 2025-02-01 21:11:48 +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'] . '}';
}
}