fix markdown in descriptions
[mdref/mdref] / views / index.phtml
1 <h1>mdref</h1>
2
3 <?php if (isset($exception)) : ?>
4 <?=\mdref\ExceptionHandler::html($exception, ["h2"], ["p"], ["pre", "style='overflow-x:scroll'"]); ?>
5 <?php else : ?>
6 <?php if (isset($listing) && count($listing)) : ?>
7 <h2>Available References</h2>
8 <?php foreach ($listing as $entry) : ?>
9 <h3><a href="<?=$entry->formatUrl()?>"><?=$entry->formatLink()?></a></h3>
10 <?php $entry->recurse($refs, "/*.md", function($entry, $pattern, callable $recursor) { ?>
11 <ul>
12 <li><p><a href="<?=$entry->formatUrl()?>"><?=$entry->formatLink()?></a></p>
13 <?php
14 if (!isset($html)) {
15 $html = new \mdref\Markdown;
16 }
17 echo $html->quick($entry->readDescription());
18 $recursor($entry, "/[A-Z]*.md");
19 ?>
20 </li>
21 </ul>
22 <?php }); ?>
23 <?php endforeach; ?>
24 <?php endif; ?>
25 <?php endif; ?>