Prevent rendering issue caused by a missing ul-tag (#6897)

Merge pull request 6897
This commit is contained in:
Stefan Dellmuth 2018-04-03 19:43:13 +02:00 committed by jekyllbot
parent d3418738ad
commit 2eee8128b0
1 changed files with 5 additions and 3 deletions

View File

@ -396,9 +396,11 @@ In addition to inserting items from the YAML data file into your list, you also
</style>
<div class="highlight result">
<li class=""><a href="#">Introduction</a></li>
<li class=""><a href="#">Configuration</a></li>
<li class="active"><a href="#">Deployment</a></li>
<ul>
<li class=""><a href="#">Introduction</a></li>
<li class=""><a href="#">Configuration</a></li>
<li class="active"><a href="#">Deployment</a></li>
</ul>
</div>
In this case, assume `Deployment` is the current page.