Nikita Volobuev

Results 10 comments of Nikita Volobuev

> I'm open to suggestions/pointers to help me expedite this, as I'm being currently snowed with paying work :) Generally, it is not a good practice to read `requirements.txt` from...

I pushed PR #191, which fixes this issue

I claimed this task on @wikimedia's phabricator and working on it now

Well, the most actively used functions (`clone`, patchset pushing / reviewing, changes list) are already implemented. Other frequently used functions will come soon. `create`, `delete`, `fork`, `add` are basic operations,...

> If you know an easy way to get an M1 VM, let me know. I think [hetzner offers M1 servers](https://www.hetzner.com/dedicated-rootserver/mac-mini-m1), as well as [AWS](https://aws.amazon.com/about-aws/whats-new/2021/12/amazon-ec2-m1-mac-instances-macos/) or [Scaleway](https://www.scaleway.com/en/hello-m1/). Alternatively, If you...

Update: it seems the build fails on intel macbooks with the same error. I will update the issue to clarify that the build actually fails on mac, no matter the...

I would like to mention that coala logo currently used at docs welcome page is not responsive, i.e. it is being scaled changing aspect ratio when viewed from mobile devices...

There is also [Section](https://github.com/bokuweb/docx-rs/blob/b1eaee54a5cf9a5b66ee6102a45a501cb0ee7d4c/docx-core/src/documents/elements/section.rs#L9), but it seems there is no way available to add it to the document and to access the `property` to update `SectionProperty` values.

@bokuweb Sure! Please see the attached file (I created it using Word). [example.docx](https://github.com/bokuweb/docx-rs/files/13536915/example.docx) If you check how the resulting XML looks like, you may notice that Word adds empty paragraphs...

For anyone interested, here is a workaround that can be used here: ```rust Docx::new().footer( Footer::new().add_paragraph( Paragraph::new().add_run( Run::new() .add_field_char(FieldCharType::Begin, false) .add_instr_text(InstrText::Unsupported("PAGE".to_owned())) .add_field_char(FieldCharType::End, false), ) ) ); ``` (based on the approach...