Package Exports
- postcss-imperial
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (postcss-imperial) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
PostCSS Imperial 
PostCSS plugin to support lengths in Imperial and customary units.
Inspired by Are Imperial Measurements outdated? | Number Hub with Matt Parker | Head Squeeze.

Input
.poster {
height: 2ft;
width: 1yd;
}Output
.poster {
height: 24in;
width: 36in;
}Usage
postcss([ require('postcss-imperial') ])See PostCSS docs for examples for your environment.
Supported Units
- thou (th, mil)
- twip
- point (pt)
- line, poppyseed
- pica (pc)
- barleycorn
- digit
- finger
- inch (in)
- stick
- nail
- palm
- hand
- shaftment
- link
- span
- foot (ft)
- cubit
- pace
- yard (yd)
- ell
- grade, step
- fathom (ftm)
- rod, pole, perch
- rope
- chain
- ramsdenschain
- shackle
- skein
- cable
- furlong (fur)
- romanmile
- mile (mi)
- nauticalmile
- league (lea)
- spindle
Notes
- Plurals are supported for convenience.
- The
chabbreviation is not supported since it already exists in CSS.