Lukas Bischof
Lukas Bischof
Introduces a new option "`strip_attributes_of_empty_tags`" which can be used to ignore any attributes when an empty tag is found, in favour of consistent return types. This can be helpful if...
When parsing an empty tag, the result varies depending on the attributes the element has: ```ruby Nori.new.parse('') #=> {"foo"=>nil} Nori.new.parse('') #=> {} Nori.new.parse('') #=> {"foo"=>{"@bar"=>"baz"}} Nori.new.parse('Content') #=> {"foo"=>"Content"} ``` It...
When I have an OpenAPI spec that accepts a list as parameter: ```json { "openapi": "3.1.0", "info": { [...] }, "paths": { "/test": { "get": { "summary": "Some request", "operationId":...