Hi,
First of all thanks for this awesome library.
I'd like to be able to parse a whole docx and change the style of certain individual words. For example in my document I want "Car" to be bold everywhere.
I've been thinking about trying to insert all the words 1 by 1 (instead of paragraph by paragraph) in my new document and letting it check whether the current word is equal to the word I want to be in bold but this method looks quite tedious and inefficient... But it looks like it's the only solution since you are forced to define the style in advance before the text you want to insert.
Is there any other way how I can achieve this?
Thanks.