I have endpoints with paths like /order/{order_id} or /foo_bar
When I use the Generator, underscore are deleted.
Generated paths are: /order/{orderid} and /foobar.
I can see in the com.github.jrcodeza.schema.generator.OperationsTransformer#prepareUrl method that you remove all characters that are not "[^A-Za-z0-9-/{}]".
Why do you transform the path? Does it cause issues to keep other characters?
Thanks!