Roland Fredenhagen
Roland Fredenhagen
> For performance reasons, I recommend to set in the configuration file the Principal-URL of the user. I don't know if I really had the same problem, got a 401,...
Makes sense, I just didn't find anything on this. Thanks for the answer.
> In the end, people will only care about the compiled PDF -- and if it's for publication, the publisher will take the TeX files and put them through their...
> > mapping a Struct to a table containing Functions is not possible: > > Could you explain please? You can implement To/From Lua for structs that contains references to...
I don't need to have them be async, async would just make them easier to use to avoid ending up in callback hell, e.g. if you want to call a...
Makes sense, I think there are both use cases for the ui callbacks. I think there are two use cases: 1. query for some input and afterwards do some processing...
This would also interresting for e.g. a doc comment that does not want to match the comment symbol it self: ```rs #[regex(r"///([^/\n][^\n]*)?\n")] DocComment(&'source str), ``` I only want the body...
> @ModProg you can do it trivially by slicing the match in a callback Yes, that's how I did it, I only thought about having a way to say store...
Maybe it would also be nice to be able to define `Self::new` as an alias to `Default` without needing to specify that on every field.
I'm also interrested in this, and might look into implementation. I wonder what the best API would be here: Automatically just assume `TryFrom` should be from `repr`. ```rs #[derive(TryFrom)] #[repr(i16)]...