Socket
Socket
Sign inDemoInstall

posthtml-render

Package Overview
Dependencies
0
Maintainers
1
Versions
30
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    posthtml-render

Render PostHTMLTree to HTML/XML


Version published
Maintainers
1
Install size
147 kB
Created

Changelog

Source

1.0.0 (2015-10-19)

  • add badge (bf092f4)
  • add module wrapper (36f506b)
  • add package.json (0837e12)
  • basic tests (cffae42)
  • Initial commit (18bd42f)
  • Release 1.0.0 (35699e6)
  • upd jscs config (64b9f1a)
  • upd Readme & add License file (6036ea9)
  • feat(*): tests (7ca52d5)

Readme

Source

posthtml-render

npm version Build Status Coverage Status

Render PostHTML Tree to HTML/XML. More info for PostHTMLTree

Install

NPM install

$ npm install posthtml-render

is also available for bower and as an AMD, CommonJS, and globals module, uncompressed and compressed.

Usage

In NodeJS

var render = require('posthtml-render');
var titleObj = { tag: 'h1' };

titleObj.attrs = { class: 'heading' };
titleObj.content = ['Title'];

clonsole.log(render(titleObj/*, options */));
// <h1 class="heading">Title</h1>

In Browser

<!DOCTYPE html>
<html>
<head>
    <title>Title</title>
    <script type="text/javascript" src="./bower_components/posthtml-render/posthtml-render.min.js"></script>
    <script type="text/javascript">
        window.onload = function() {
            document.body.innerHTML = postHTMLRender({ tag: 'h1', attrs: { style: 'color: red;' }, content: ['Title'] });
        };
    </script>
</head>
<body>

</body>
</html>

Options

singleTags

Array tags for extend default list single tags

Default: []

Options { singleTags: ['rect', 'custom'] }

...
<div>
    ...
    <rect>
    <custom>
</div>

closingSingleTag

Option to specify version closing single tags. Accepts values: default, slash, tag.

Default: default

Options { closingSingleTag: 'default' }

<img>

Options { closingSingleTag: 'slash' }

<img />

Options { closingSingleTag: 'tag' }

<img></img>

License

MIT

Keywords

FAQs

Last updated on 19 Oct 2015

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc