Skip to content

simonmcmanus/sizlate

Folders and files

NameName
Last commit message
Last commit date

Latest commit

5c28b31 · Nov 22, 2024
Nov 22, 2024
Feb 13, 2020
Jan 25, 2022
May 15, 2019
Dec 24, 2023
Nov 22, 2024
Dec 24, 2023
Apr 30, 2020
May 3, 2020
Oct 18, 2015
Dec 22, 2023
Nov 18, 2016
Dec 22, 2023
Jan 4, 2022
Nov 22, 2024
May 3, 2020
Dec 22, 2023
Dec 22, 2023
May 15, 2019
Dec 22, 2023

Repository files navigation

Sizlate

Sizlate is an HTML templating engine.

Sizlate requires no special syntax, your templates only contain valid HTML.

Templates are populated using css selectors

You can pass render a string of html, or a dom Node.

If you specify a DOM node attached to the main document the rendering will happen on the page.

Examples

Simple text

var html = '<div><a></a></div>';
var selectors = {
	'div a': 'UPDATED'
};
var out = sizlate.render(html, selectors);
<div>
	<a>UPDATED</a>
</div>

ClassName

var html = '<div><a class="class1"></a></div>';
var selectors = {
    'div a': {
        className: 'class2'
    }
};
var out = sizlate.render(html, selectors);
<div>
	<a class="class1 class2"></a>
</div>

Arrays

var html = '<ul><li></li></ul>';
var selectors = {
    'li': [
        'change links to this',
        'change links to this2',
        {
            'href': 'df',
            innerHTML: 'aaa'
        }
    ]
};
var out = sizlate.render(html, selectors);
<ul>
	<li>change links to this</li>
	<li>change links to this2</li>
	<li href="df">aaa</li>
</ul>

Object

var html = '<div><a></a></div>';
var selectors = {
    'a': {
        href: 'http://yahoo.com',
        title: 'yahoo',
        innerHTML: 'yahoo'
    }
};
var out = sizlate.render(html, selectors);
<div>
	<a href="http://yahoo.com" title="yahoo">yahoo</a>
</div>

Regular Expression

var html = '<div><a>existing text</a></div>';
var selectors = {
    'a': {
        'innerText': {
            regex: /existing ([a-z]+)/ig,
            value: 'new $1'
        }
    }
};
var out = sizlate.render(html, selectors);
<div>
	<a>new text</a>
</div>

See /examples

Clientside

From v1.0.0 Sizlate works in the browser. You can pass it a string of html or a dom node. For example:

var $domNode = $('#area');
var selectors = {'div': 'new content'};
sizlate.render($domNode, selectors);

From version 2.0 sizlate does not require sizzle on the client

Here is an example of doing this in the client eg:

var domNode = document.getElementById('area');
var selectors = {'div': 'new content'};
sizlate.render(domNode, selectors);