UNPKG
shubform
Version:
latest (0.0.1)
0.0.1
Shubform is a static website generator
shubform
/
dist
/
nativeComponents
/
container.js
5 lines
•
218 B
JavaScript
View Raw
1
2
3
4
5
function
execute
(
data, componentHTML, style
) { componentHTML = componentHTML.
replace
(
/{{text}}/g
, data.
join
(
''
)); componentHTML = componentHTML.
replace
(
/{{theme}}/g
, style[
'theme'
]);
return
componentHTML; }