strxml
v1.0.0
Published
create xml with functions and strings
Downloads
24,411
Readme
strxml
Create xml with strings and concatenation.
install
npm install --save strxml
api
tag(el, [attributes], contents)
tagClose(el, attributes)
encode(str)
attr(attributes)
example
var tag = require('xmlstr').tag;
tag('Layer',
tag('StyleName', 'style-' + i) +
tag('Datasource', {
name: 'layer-' + i,
srs: WGS84
}));