jarrett
jarrett
Thanks! Good to know. Should I post this issue to the [glutin_window Github](https://github.com/PistonDevelopers/glutin_window)?
Thanks! So just to confirm, `PistonWindow`'s default config is still broken pending the `GlutinWindow` fix, correct? In the meantime, `cargo update` and switching to `Sdl2Window` per your instructions above worked...
I'm starting to use Conrod heavily on a real project, and I need it to be documented for possible future devs. So I was thinking I might just take a...
I just updated from 1.7.0 to build-develop-554. 1.7.0 had this issue, but it appears to be resolved in build-develop-554.
Thanks! Would it be better if, in addition to the global config, we were to allow config overrides when `#convert` is called? I'd be happy to add that.
I can pass the config options through. Would you like to be able to do the following? RbbCode.new.convert('This` is [b]BBCode[/b]', output_format: :markdown, :unsupported_features: :span)
Example usage would be: RbbCode.new.convert('This` is [b]BBCode[/b]', output_format: :markdown, :unsupported_features: :span) So the question is whether you'd like to be able to call the API this way. That is, passing...
No worries, nobody have to change their calls to the existing API. The per-convert options would be an override of the per-instance options. So the order of precedence would be:...
I updated the API on the master branch. As you'll see, this adds per-convert option overrides without breaking backwards compatibility. No class variable needed.
Sounds good. I’ll work on getting these merged into master. On Thu, Jun 25, 2020 at 5:26 AM Daniel Senff wrote: > Alright, I changed my branch to incorporate that....