Socket
Socket
Sign inDemoInstall

posthtml-render

Package Overview
Dependencies
0
Maintainers
2
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
Weekly downloads
645K
decreased by-2.76%
Maintainers
2
Created
Weekly downloads
 

Changelog

Source

<small>1.0.7 (2018-01-18)</small>

  • Create MAINTAINERS (2960f4b)
  • Update README.md (0948079)
  • v1.0.7 (508e094)
  • ci: try fix (0719812)
  • jsdoc: parse -> render (a8f5d5d)

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 listObj = { tag: 'ul' };

listObj.attrs = { class: 'list' };
listObj.content = ['one', 'two', 'three'].map(function(text) { return { tag: 'li', content: text }});

console.log(render(listObj/*, options */));
// <ul class="list"><li>one</li><li>two</li><li>three</li></ul>

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 18 Jan 2018

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