1
0
mirror of synced 2024-12-15 15:46:02 +03:00
doctrine2/manual/lib/Text/Wiki/Render/Latex/Doclink.php

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'] . '}';
}
}