YOSHIOKA Takuma

Results 57 comments of YOSHIOKA Takuma

Yes, reference resolution and normalization are both affected. It seems that [WHATWG's spec for URL](https://url.spec.whatwg.org/) avoids this by appending `/.` prefix to the path ([on serialization](https://url.spec.whatwg.org/#url-serializing), not on resolution or...

@kilobyte In old days, yes they are full width because they use multiple bytes. But it is not only reason they are full-width. Some characters (especially punctuations like `…`) should...

@12101111 The problem is not only bullet and cross sign, but also ruled lines... They would be usually half-width in western environments, but full-width in CJK (at least in almost...

+1, it would be good if `--ascii` is automatically enabled on some environment (in future). Then border mode should have three modes, `--ascii={never,auto,always}`, like `--color` of many tools (ls, grep,...

`EventReader` can be used to read partial XML (such as [DocumentFragment](https://developer.mozilla.org/en-US/docs/Web/API/DocumentFragment)?). I think it is better that handling of multiple root nodes can be controllable by `ParserConfig`, rather than treat...

I think syntax and defaults should be separate. Being HTML-like syntax does not impliy HTML-like schema, so the base type to be `extends`-ed should add no additional settings. This pull...

Sounds good, it enables users to explicitly discard default. :smile:

It would work for string and integer type values (`empty_elements`, `block_elements`, and `inline_elements` (and maybe `empty_element_suffix`)). But for `default_attributes` (it has dictionary type), it still merge `extends`-ed default config, and...

Maybe bikeshedding, but I like comma-separated crates list than space-separated, because: * cargo's `--features` uses comma as delimiter, so it is consistent if many programs use comma as delimiter, and...

Hmm, test failed because `Cargo.lock.ci` for rust 1.18.0 uses libc-0.2.43 but backtrace-0.3.13 requires libc-0.2.45 or later. How should this be fixed...?