Following code example does not compile. It generates compile time error for MarkupConvertOptions using GroupDocs.Conversion For Node.Js Via Java
// Load the source DOCX file
const converter = new groupdocs.conversion.Converter("input.docx");
// Set the convert options for HTML format
const options = new groupdocs.conversion.MarkupConvertOptions();
// Save converted HTML file
converter.convert("converted.html", options);