How to convert Text file to PDF within Meridian

Hi, we have a software (Meridian Enterprise, a document management software) that uses ASPOSE to convert documents to PDF (The dll that are supplied from the manufacturer are: Aspose.Cells, Aspose.Diagram, Aspose.PDF, Aspose.Slides, Aspose.Words, version 22.4.0.0).
It works well with office files and image file but it doesn’t work with text file.
Am I missing something to be able to convert Text file to PDF?
Thanks

@pchabot You can use Aspose.Words to convert Text files to PDF. The code is simple:

Document doc = new Document("C:\\Temp\\in.txt");
doc.Save("C:\\Temp\\out.pdf");