You can get a plain text version of the file content by using the filter
method:
auto myinput = keyview::io::InputFile{ std::string("InputFile.docx") }; auto myoutput = keyview::io::OutputFile{ std::string("out.txt") }; KV.filter(myinput, myoutput);
|