Changelog
3.1.0
.foo
-> <div class="foo bar"></div>
[class^="hello"]
Changelog
3.0.0
Changelog
2.0.0
Changelog
1.2.0
Add ability to append or prepend to attributes (https://github.com/stackhtml/hstream/commit/e9b71c39d5a08d27b2ee09ae3043abcecd57b3db)
hstream({
'#app': {
class: { prepend: 'beep ', append: ' boop' }
}
})
Remove attributes by setting attrName: null
(https://github.com/stackhtml/hstream/commit/32480ba33327b1f32b16a91dc6752b4ecb5b8cec)
Edit attributes by passing a function (https://github.com/stackhtml/hstream/commit/32480ba33327b1f32b16a91dc6752b4ecb5b8cec)
hstream({
'#app': {
title: function (prev) { return prev.toUpperCase() }
}
})
Edit html contents by passing a function (https://github.com/stackhtml/hstream/commit/b562c5ff1a644893093dda1c99558dded71fb422)
hstream({
'code': {
_html: function (source) {
return highlightHTML(source)
}
}
})
Changelog
1.1.0
_replaceHtml
option that replaces the outer html of an elementChangelog
1.0.1