Zolmeister
Zolmeister
More XSS
https://github.com/thysultan/md.js/issues/1 script tag without closing tag ```html ``` script tag with non-plain closing tag ```html alert(1) ``` hex html encoded (with and without semicolons) `javascript:` ```html ``` embedded tab to...
Tests
Where are the tests?
Add the ability to log JSON objects. (Currently the prefix method can handle the conversion, but the headers will be incorrect) This may also be useful to combine with #3...
Without stack traces, the logs are of limited use Perhaps something like this should be the default: ``` js if (message instanceof Error && message.stack) { message.stack; } else if...
The pep8 style guide is great, but too much effort when coding quickly (hitting space-bar ever few characters is a pain). Other IDEs (eclipse/aptana/Sublime+plugin) support a keyboard shortcut to automatically...
Images are re-requested every animation update. This may also be the cause of #52 My solution was to cache the images in base64 url strings, which is implemented here: http://queens.zolmeister.com/...
While typing code, after the last `;` (semicolon) a new completion shows up (first entry `Trait AsMut`), which is undesired. Atom: `v1.12.0-dev-44c0fe5` ``` rust // e.g. let mut t =...
IE does not support external `xlink:href` and requires a polyfill https://github.com/jonathantneal/svg4everybody This should be documented
please compile the javascript down to es5 for `dist`
I was unaware an existing vim syntax existed before implementation. This version improves function/struct highlighting, among other small details. Please update the documentation to reference this file. - - -...