NicFTK
NicFTK
Thank you very much. Now it works for me with the following configuration: ```rust wit_bindgen::generate!({ path: ["../../assets/wit/val.wit","../../assets/wit/acme-plugins.wit",], default_bindings_module: "crate::bindings", pub_export_macro: true, generate_all, }); ```
Now I want to try using the [with] into its own crate and implement some common methods for it, so that I can reuse these types in the future. Therefore,...
Initially, I assumed that using `with` would directly replace the modules in WIT with the ones specified in the `with` configuration, without continuing to search for existing `WIT` files. After...
Finally I have some free time to finish my demo. I had no issues so far when working with wit-bindgen, but I ran into a problem binding the same WIT...
## Test Code ```rust // filepath: g:\Aduit_Project\Libs_Rust\docx_to_html\tests\docx\heading_number.rs use docx_rs::*; // Import docx_rs library for generating docx documents #[test] pub fn main() -> Result { // Set output file path let...
Hi, After further investigation, I believe I've found the root cause of the issue. By inspecting the generated `numbering.xml` file, I noticed that the `` element is missing the ``...
I have no idea why `level_restart` don‘t work as expected’,but add support for multilevel could solve my problem. I add a[ pull request](https://github.com/bokuweb/docx-rs/pull/829) for this.