0.0.2 • Published 10 years ago

hexo-simplecode v0.0.2

Weekly downloads
2
License
MIT
Repository
github
Last release
10 years ago

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
0.0.2

10 years ago

0.0.1

10 years ago