Adam Fowler

Results 130 issues of Adam Fowler

I know we are most likely to be running on a 64 bit system and Int will be 64 bits but one of the systems that HTTPClient.Body.stream is most likely...

If no space is left between formatted text and a list then the list isn't processed as a list ``` This is a test - One - Two ``` Became...

When parsing a list which is indented the parser needs to take into account the indentation of the first element otherwise it will it consider subsequent elements to be part...

See CommonMark example 108 https://spec.commonmark.org/0.18/#example-108. Added GroupFragment protocol that can hold multiple fragments. HTML fragment comforms to this as it needs to hold its HTML plus any Markdown fragments included...

Add `Sendable` conformance to Hummingbird types. Much of this means setting `@unchecked Sendable` on types inherited from NIO There are also a couple of places where I have added `@unchecked...

Firefox complains when it is not set on a http connection

https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Content-Security-Policy

Currently arrays are formatted as follows ``` value[]=1&value[]=2 ``` Add possibility of parsing arrays in form ``` value[0]=1&value[1]=2 ```