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

9 lines
167 B
PHP

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