2.3.0
Changes
-
feat(highlight): support 'tab' & 'mark' when wrap is disabled @curbengh [#225]
- Previously
tab
andmark
options were only availble whenwrap
is enabled, now they are also available even whenwrap
is disabled. - Example:
# _config.yml highlight: tab_replace: ' ' wrap: false
{% codeblock lang:js mark:2,5 %} const input = [ { name: 'lorem', item: 'ipsum' }, { name: 'per', item: 'doming' }, { name: 'dolor', item: 'lorem' }, { name: 'usu', item: 'pericula' } ] {% endcodeblock %}
- Previously
-
docs(spawn): link to upstream docs @curbengh [#223]
spawn()
is a nice wrapper aroundchild_process.spawn()
, so it supports similar options.