fix markdown in descriptions
[mdref/mdref] / views / mdref.phtml
1 <?= $html ?>
2
3 <?php if (isset($sublisting) && count($sublisting)) : ?>
4 <h2>Functions:</h2>
5 <ul>
6 <?php foreach($sublisting as $entry) : ?>
7 <li>
8 <h3><a href="<?=$entry->formatUrl()?>"><?=$entry->formatLink(true)?></a></h3>
9 <p><?=$html->quick($entry->readDescription())?></p>
10 <p><?=$view->esc($entry->readTitle())?></p>
11 </li>
12 <?php endforeach; ?>
13 </ul>
14 <?php endif; ?>