Derek Zhou
Derek Zhou
## Description According to [HTML5 spec](https://www.w3.org/TR/2011/WD-html5-20110405/tokenization.html#closing-elements-that-have-implied-end-tags), closing `` tag is optional. ie: ``` html p1 p2 ``` is equivalent to: ```html p1 p2 ``` However, Floki with the builtin parser...
On the rebar3 website such as this page: https://www.rebar3.org/docs/configuration/dependencies/ The code fragment has inline style as: ``` html style="color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4" ``` However the parent element has: ``` css .td-content .highlight pre,...
Useful for systemd/runit/daemontools. dtach has it
Some website send 103 response before the 200, even in http1.1. One such is http://www.theregister.com It could be a cloudflare thing. hackney 1.8.0: ``` iex(3)> :hackney.request("https://www.theregister.com/") {:ok, 103, [ {"Link",...
for #695 Any response code < 200 shall be ignored, together with whatever header lines there are.
It will be great if this is published as a ES6 module, with proper exports, so I can just do: ``` javascript import HtmlSanitizer from '@jitbit/htmlsanitizer' ```