# Amperize
[](http://browsenpm.org/package/amperize)
[](https://travis-ci.org/jbhannah/amperize)
[](https://david-dm.org/jbhannah/amperize)
[](https://coveralls.io/r/jbhannah/amperize?branch=master)
[AMP](https://github.com/ampproject/amphtml) up your plain HTML. Replaces regular HTML tags with their equivalent
[AMP components](https://github.com/ampproject/amphtml/blob/master/spec/amp-html-components.md).
## Installation
`npm install amperize`
## Node.js
```
var Amperize = require('amperize');
var html = '';
var amperize = new Amperize();
amperize.parse(html, function (error, result) {
if (error) {
// do something with error
return new Error(err);
}
// do something with result
return result;
});
```
## Restrictions
Amperize is build to convert the `