Colin O'Dell

Results 60 comments of Colin O'Dell

Maybe Twig could borrow the approach I implemented in my [colinodell/indentation](https://github.com/colinodell/indentation/blob/main/src/Indentation.php#L146) library? It basically: 1. Checks the indentation line-by-line to see if **all** lines have a common amount and type...

I'm currently using the workaround @ndench proposed. It's not a perfect solution but it works for now.

Bumping this out of the `stale` state as this is still something I have to work around and would find valuable to have.

Upgrading to version 7 or higher of this library resolves the issue for me.

I need this feature for the same reasons. And I agree with @akeeman that this is not currently feasible. One approach I investigated was injecting `UploadHandler` into my service so...

Fixed in [version 5.1.1](https://github.com/thephpleague/html-to-markdown/releases/tag/5.1.1)

For now, I've implemented "Solution 1: Delay validation of the extension's schema until it's used" via league/config v1.2.0. Upgrading to that version should fix this issue for you.

Although you're correct that the syntax is ASCII, how that syntax is interpreted depends on the context where it is used. The CommonMark specification says that [Unicode whitespace](https://spec.commonmark.org/0.30/#unicode-whitespace) and [punctuation...

I like the idea! I'd recommend moving all the attributes into a separate array in the configuration (so we're not listing them alongside any other non-attribute keys) - maybe even...