Package Exports
- html-table-patcher
Readme
html-table-patcher
Visual helper to place templating code around table tags into correct places
Install
This package is ESM only: Node 12+ is needed to use it and it must be imported instead of required:
npm i html-table-patcher
If you need a legacy version which works with require
, use version 4.1.0
Quick Take
import { strict as assert } from "assert";
import { patcher } from "html-table-patcher";
assert.equal(
patcher(
`<table>
{% if customer.details.hasAccount %}
<tr>
<td>
variation #1
</td>
</tr>
{% else %}
<tr>
<td>
variation #2
</td>
</tr>
{% endif %}
</table>`
).result,
`<table>
<tr>
<td>
{% if customer.details.hasAccount %}
</td>
</tr>
<tr>
<td>
variation #1
</td>
</tr>
<tr>
<td>
{% else %}
</td>
</tr>
<tr>
<td>
variation #2
</td>
</tr>
<tr>
<td>
{% endif %}
</td>
</tr>
</table>`
);
Documentation
Please visit codsen.com for a full description of the API and examples.
Contributing
To report bugs or request features or assistance, raise an issue on GitHub.
Licence
MIT License
Copyright (c) 2010-2021 Roy Revelt and other contributors