diff options
author | Adelbert Chang <adelbertc@gmail.com> | 2014-01-01 17:22:57 -0800 |
---|---|---|
committer | Adelbert Chang <adelbertc@gmail.com> | 2014-01-01 17:22:57 -0800 |
commit | 22434b5a69b561364e7060e1d651be6e2040fd98 (patch) | |
tree | c414dbc4d13c186fd19d1bbbf29f193c9ccd6e93 /tests/TestSuite.hs | |
parent | 6ba9099225f6325560e5933df974fbc06faa3951 (diff) | |
download | hakyll-22434b5a69b561364e7060e1d651be6e2040fd98.tar.gz |
Fix issue with syntax highlighting + line nums.
Below is the generated HTML for with line numbers and without line numbers, respectively.
```html
<!-- Without line numbers -->
<pre class="sourceCode scala">
<code class="sourceCode scala">
<span class="kw">trait</span>
Monad[M[_]]
</code>
</pre>
<!-- With line numbers -->
<table class="sourceCode scala numberLines">
<tr class="sourceCode">
<td class="lineNumbers">
<pre>1</pre>
</td>
<td class="sourceCode">
<pre>
<code class="sourceCode scala">
<span class="kw">trait</span>
Monad[M[_]]
</code>
</pre>
</td>
</tr>
</table>
```
The markdown used is:
```
~~~~ { .scala }
trait Monad[M[_]]
~~~~
~~~~ { .scala .numberLines}
trait Monad[M[_]]
~~~~
```
Notice that without line numbers the outer `pre` has a `sourceCode` class whereas with line numbers the `sourceCode` class is only put in `code` and table-related tags.
In the original `syntax.css` file synax highlighting was only triggered if the `kw` and friends tags were within a `pre.sourceCode` - that means it did not trigger with line numbers. This change removes the requirement for the `pre` prefix so that highlighting is triggered with or without line numbers, so long as the code is within *some* `.sourceCode` tag.
Diffstat (limited to 'tests/TestSuite.hs')
0 files changed, 0 insertions, 0 deletions