Software Documentation Generator
Create professional documentation for your software projects.
${data.description}
`; if (data.prerequisites) html += `Prerequisites
${data.prerequisites}`;
if (data.installation) html += `Installation
${data.installation}`;
if (data.features.length > 0) {
html += `Features & Usage
`; data.features.forEach(f => { html += `${f.name}
`; if (f.desc) html += `${f.desc}
`; if (f.code) html += `${f.code}`;
});
}
if (!data.description && !data.prerequisites && !data.installation && data.features.length === 0) {
inputs.docsOutput.innerHTML = `Please go back and provide some project information to generate the documentation.
`; inputs.pdfButtonContainer.style.display = 'none'; } else { inputs.docsOutput.innerHTML = html.replace(/