0.0.2 • Published 10 years ago
hexo-simplecode v0.0.2
hexo-simplecode
I don't need line numbers in code blocks so I write this plugin.
Simplify html structure of code blocks.
From
<figure class="highlight js">
<table>
<tbody>
<tr>
<td class="code">
<pre>...</pre>
</td>
</tr>
</tbody>
</table>
</figure>
to
<div class="highlight">
<pre>
<code>...</code>
</pre>
</div>
Install
npm install hexo-simplecode --save
_config.ml
highlight:
enable: true
line_number: false