-
-
Notifications
You must be signed in to change notification settings - Fork 10.3k
Closed
Labels
Description
I have a post:
---
layout: post
status: publish
published: true
title: This blog is now on Jekyll
date: '2016-01-31 00:00:00 +0200'
tags: []
excerpt: Some excerpt
---
This is not yet highlighted
{% highlight php linenos %}
test
{% endhighlight %}
This should not be highlighted, right? Actual HTML:
<p>This is not yet highlighted</p>
<div class="highlight"><pre><code class="language-php" data-lang="php">
<table style="border-spacing: 0">
<tbody>
<tr>
<td class="gutter gl" style="text-align: right">
<pre class="lineno">1</pre>
</td>
<td class="code"><pre>test<span class="w"></span></pre>
</td>
</tr>
</tbody>
</table>
This should not be highlighted, right?
</code></pre>
</div>
<hr>
My config (relevant part):
permalink: /:title/
markdown: kramdown
highlighter: rouge
sass:
sass_dir: _sass
style: compressed
gems:
- jekyll-sitemap
kramdown:
auto_ids: true
footnote_nr: 1
entity_output: as_char
toc_levels: 1..6
enable_coderay: false
syntax_highlighter: rouge
line_numbers: true
Could this be theme issue? And if so, how could I debug it? It seems to me like a problem in parsing the closing endhighlight tag...
gdcmarinho
