yūdachi
yūdachi
Thank you for your quick response. I also noticed that you're working on the configuration file now, so I suggest that you can add a command like `bat config set...
Thanks for your suggestion! I created `docx-rs` as a side project for resolving some problems I encountered at work. So it actually don't have any particular goal at first but...
> Sounds neat. Not sure if it is relevant but I have been using roxmltree to parse document.xml and it has an excellent API. Thank you for the recommendation. I...
Yes, it's actually in my plan. Since postgresql (the underlying database) supports full text search out of the box, it should be pretty straightforward to implement. Just stay tuned for...
I added holostars uproar members in commit f454043efc561183eaedae510514cdb6c7f64580. As for the holostars official channel, I will add it today or tomorrow.
To be honest, I'm still wondering if it's really necessary.... Could you please describe what's difference between `cargo fuzz` and your own implementation?
I had created a [SYNTAX.md at docs/](https://github.com/PoiScript/orgize/blob/master/docs/SYNTAX.md). Sorry for not using org-mode, but github can't render org-mode file properly :(.
> I haven't looked into it, but maybe the org syntax draft at orgmode.org is open to contributions? Neither have I. But the original version of org syntax actually contains...
Thanks for reporting. Orgize will automatically validate the parsed struct and panic if any error occurs. It's disabled in release mode for increasing performance. For fuzz test, I believe it...
Oh, I see. I only check for the ascii whitespaces [in some functions](https://github.com/PoiScript/orgize/blob/a99702a4da6c72adbd093ed77e078c345441cfe4/src/parse/combinators.rs#L115-L117). But `str::trim` actually remove both ascii whitespaces and unicode whitespaces.