postcss-assemble-table-helper

A PostCSS plugin that helps with the use of Assemble Tables.

Usage no npm install needed!

<script type="module">
  import postcssAssembleTableHelper from 'https://cdn.skypack.dev/postcss-assemble-table-helper';
</script>

README

PostCSS Assemble Table Header

PostCSS plugin that helps with the use of Assemble Tables.

This plugin will help set the widths of table cells when using the Assemble framework.

Example

.table-cell-widths{
    15: 15px;
    half: 50%;
}

Will output:

.t-15 {
    width: 15px
}

.t-half {
    width: 50%
}

Usage

This plugin doesn't do much on it's own. It is part of a PostCSS framework called Assemble. This plugin is included in Assemble Tables. For usage see Assemble Tables.