build-a-npm
Version:
A tool to create and publish Node packages with automatic version bumping and GitHub integration.
24 lines (16 loc) • 810 B
JavaScript
// lib/generateWebpage.js
function generateWebpage(answers) {
return `
Welcome to the GitHub Pages documentation for ${answers.name}.
This page is generated from WEBPAGE.md. Edit this file to customize your GitHub Pages content, then run \`npm run index\` to update the index.html file.
- Add your documentation content here.
- Use Markdown formatting for headings, lists, links, etc.
- Example: [Link to ${answers.name} repository](https://github.com/${answers.githubUsername}/${answers.githubRepoName})
- Update this file with your project details.
- Run \`npm run index\` to regenerate index.html.
- Commit changes to the main branch to update your GitHub Pages site.
`;
}
module.exports = { generateWebpage };