maple

Results 147 comments of maple

Found a bug causing decryption error due to the code after is expecting `cipherText` array to not contain the auth tag, so pushed a new commit to fix it.

The problem here is that DOMPurify does it job correct, because the `` is inside an element's attribute, which does not need to be escaped. For example, the following html...

The input to DOMPurify is the following HTML: ```html ``` and after DOMPurify's sanitization, it becomes: ```html ``` (no changes) When this html is rendered by SSR, it **does not**...

Just a note that this has nothing to do with the specific attribute `id`, as it can happen with any html attributes like `href`, `alt` or whatever. Also, in normal...

> I mean, what legitimate use case requires an attribute, any attribute, to be a script tag? Not much I think, the only possible scenario I can think of is...

https://github.com/nk2028/opencc-js 似乎沒有提供這功能 有的話應該會有個 cnp / sp 的語言選項

This problem is probably realted: In `x.sage`, type: ```sage print(__name__) ``` In sage 10.7, `sage x.sage` prints `sage.all`. But in sage 10.5, `sage x.sage` prints `__main__`.