Live data from Hacker News

Show HN: Bepis – Crazy Format for HTML+CSS in JavaScript

github.com

1–10 of 24 posts

Re: Show HN: Bepis – Crazy Format for HTML+CSS in JavaScript

#8
Using document.createElement to create elements and element.appendChild(node) to add them is tedious. But once you have abstractions in place, like var menu = createMenu(), subMenu=createMenu(), menu.add(subMenu) it becomes very powerful and more fun to work with the DOM.

Re: Show HN: Bepis – Crazy Format for HTML+CSS in JavaScript

#9
Time to shill my own alternative.

https://github.com/NoHatCoder/DOM_Maker

No parser, just a bunch of JavaScript functions that nest nicely, to create dense and readable DOM generation code.

Might be time for putting a 1.0 sticker on it.

As for Bepis, the mechanism by which elements nest seem complicated, as far as I understand it is controlled by sprinkling , and . throughout the string, I don't get why this would be necessary.

Post reply on HN