CubicleSoft

Results 63 comments of CubicleSoft

`HTMLString.String.encode()` doesn't escape quotes, which is probably why ContentEdit has its own function for element attributes that does escape quotes.

The fastest HTML escape function I know of is this one: ```javascript HTMLString.String.encode = function(text) { var map = { '&': '&', '': '>', '"': '"', "'": ''' }; return...

WinMain() is only necessary for Windows applications, not console apps. A quick Google search turns up that using `-mconsole` when compiling should work. Release tags are unnecessary. CubicleSoft generally only...