1.0.1 • Published 5 years ago

posthtml-cat v1.0.1

Weekly downloads
3
License
MIT
Repository
github
Last release
5 years ago

PostHTML Components

PostHTML is a tool for transforming HTML/XML with JS plugins. PostHTML itself is very small. It includes only a HTML parser, a HTML node tree API and a node tree stringifier.

All HTML transformations are made by plugins. And these plugins are just small plain JS functions, which receive a HTML node tree, transform it, and return a modified tree.

Install

npm i -D posthtml-cat

Usage

build.js

const { readFileSync } = require('fs');

const posthtml = require('posthtml');
const posthtmlComponents = require('posthtml-cat');

const html = readFileSync('index.html');

posthtml([ posthtmlComponents() ])
    .process(html)
    .then((result) => console.log(result.html));

index.html

<html>
<head>
    <title>index.html</title>
    <link rel="component" href="components/primary-button.html" />
</head>
<body>
    <PrimaryButton class="active">Click me</PrimaryButton>
</body>
</html>

components/primary-button.html

<button class="button primary">
    <children></children>
</button>

MIT License (MIT)

Copyright (c) PostHTML Ivan Voischev

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.