CLI tool that converts user entered data via terminal into static website
npm install siteit

Siteit allows users to convert text files into .html pages. Presently, Siteit supports input files in .txt and .md formats.
``bash`
npm install -g siteit
Siteit comes with its built-in stylesheet and supports various screen resolutions. When a folder with .txt or .md files is supplied,Index
an file is also generated in the dist folder, linking to all generated files.
document. To locate the generated file, cd into the application's dist directory |
| siteit | -i or --input | _./directory_ | Converts all the files within a directory supplied as additional argument into .html documents. To locate the generated files, cd into the application's dist directory and open index.html |Usage format: siteit [option/flag] _[additional arguments]_
Markdown files handling
Siteit fully supports the following markdown features:
| name | syntax | output |
| --------------- | ------------ | -------------------- |
| Bold text |
Some bold Text | Some bold text |
| " | __Some bold text__ | Some bold text |
| Italic text | Some italic text | Some italic text |
| " | _Some italic text_ | Some italic text |
| Deleted text | ~~Some deleted text~~ | |
| Marked text | ==Some marked text== | Some italic text |
| Inline Code | Some inline code | Some inline code |
| Horizontal rule | ___ | |
| " | * | |
| Heading 1 | # Heading | ---