Go to file
Govindas f46588afc3 Experimental footer, identical to navbar 2022-01-31 12:11:51 +02:00
example Setup Python project template. 2022-01-25 14:40:35 +00:00
gsitegen Experimental footer, identical to navbar 2022-01-31 12:11:51 +02:00
tests Setup Python project template. 2022-01-25 14:40:35 +00:00
.gitignore More pathlib usage & code cleanup 2022-01-27 12:11:33 +02:00
README.md Add README.md 2022-01-28 15:56:36 +02:00
setup.py Fix description 2022-01-25 14:47:00 +00:00
tox.ini Setup Python project template. 2022-01-25 14:40:35 +00:00

README.md

Static Site Generator

Generates simple webpages.

How to use

  1. Create a file with .page extension in the same directory as generate.py, the file name will be title of the page, for example: About.page
  2. Use markdown in the created file, it will be auto-converted to HTML. You can also use raw HTML in the file, with > symbol, like this:
**Example**
>
  <p>Hello world</p>
**Back to just markdown**

Line before HTML code must be a single character > and HTML code below must be indented by 2 spaces. You can also use Markdown inside HTML, for example:

<p>**Hello world**<p>

will display as bold.

  1. (Optional) Create a file called navbar to have a navigation bar that is added to every generated page file. Example navbar file:
[Home](/)
[About](/about)

It also supports HTML, but HTML code will not be formatted as navigation bar automatically.

  1. Run generate.py, it will generate output website files in website-output folder.

To-do list

  1. Better styling support for navigation bar, etc.
  2. Footer support, similar to navigation bar.
  3. Adding images, other resources support.
  4. Delete removed page files from website-output during next site generation (Last, to be done on release, so it doesn't disturb development)