Name

xmltodocbook — Scilab 4.* XML help file to Scilab 5.* Docbook XML file conversion.

Calling Sequence

xmltodocbook(sourceXML, destXML, destXMLPath)

Description

Convert a Scilab help file written using old Scilab DTD to a Scilab 5 Docbook compatible XML file.

Parameters

sourceXML

XML file to convert.

destXML

XML file to generate.

destXMLPath

Path where the generated XML file will be saved (default is the source XML file path).

Examples

    filetoconvert = xgetfile("*.xml", getcwd(), "Select a Scilab 4.* XML help file");
    xmltodocbook(filetoconvert, "mynewxmlfile.xml");
    

Authors

Vincent COUVERT