You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
It is quite a pain to create things like paragraphs or table cells. For example if you need to create a bunch of paragraphs you have to do Paragraph::new().add_run(Run::new().add_text("Text")); over and over again
Describe the solution you'd like
It would be great if there were macros for that. For example, here's my macro for creating a paragraph:
Is your feature request related to a problem? Please describe.
It is quite a pain to create things like paragraphs or table cells. For example if you need to create a bunch of paragraphs you have to do
Paragraph::new().add_run(Run::new().add_text("Text"));
over and over againDescribe the solution you'd like
It would be great if there were macros for that. For example, here's my macro for creating a paragraph:
With this macro i can just do
paragraph!("Text");
which is just so much nicerThe text was updated successfully, but these errors were encountered: