Kazbek

Results 1 issues of Kazbek

This code ``` foreach (var p in doc.Paragraphs) { if (p.Text == null) continue; foreach (var pair in replacers) if (p.Text.Contains(pair.Key)) p.ReplaceText(pair.Key, pair.Value); }` ``` When I using two text...

bug
docx
help-wanted