This package has been deprecated

Author message:

no longer utilizing this module

node-squarespace-jsont

0.1.23 • Public • Published

node-squarespace-jsont

The JSONT template rendering engine for Squarespace in node.js.

Installation

npm install node-squarespace-jsont

Updating

npm update node-squarespace-jsont

Usage

var sqsJsonTemplate = require( "node-squarespace-jsont" );
 
// template = string html, data = page json object
sqsJsonTemplate.render( template, data );

Given some json data

{
    "collection" : {
        "title" : "Page Title",
        "description" : "This is the page description."
    }
}

And an html template with json-t

{.section collection}
    <h1>{title}</h1>
    <p>{description}</p>
{.end}

You get the following on render

<h1>Page Title</h1>
<p>This is the page description.</p>

Resources

These links should help the dive into json-template.

Pull Requests

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request

Package Sidebar

Install

npm i node-squarespace-jsont

Weekly Downloads

2

Version

0.1.23

License

none

Last publish

Collaborators

  • kitajchuk