An asciiDoc based static site generator.
Go to file
gabe 2c0395ffd7 Wrote the README.
Ready for release 0.1!
2021-09-11 20:26:47 -05:00
tests changed test result, fixed typo. 2021-09-11 20:10:14 -05:00
.gitignore I need a gitignore now 2021-08-06 16:52:13 -05:00
ASCIIsite.py changed test result, fixed typo. 2021-09-11 20:10:14 -05:00
LICENCE Add 'LICENCE' 2021-05-23 18:27:06 +00:00
README.md Wrote the README. 2021-09-11 20:26:47 -05:00

ASCIIsite: an asciiDoc based static site generator.

Licence

What is it?

ASCIIsite is a simple, barebones static site generator. You give it a directory contaning asciidoctor documents and supporing media in the strucutre you want your site to be in, and it spits out a fully functional static site based on that input directory.

Usage

ASCIISite takes 2 (so far) optional arguments followed by the single mandatory arument telling it what directory to convert.

the -o or --output option simply tells ASCIISite what to name the output file.

the -z or --compress flag tells ASCIISite to put the final product in a compressed tar.gz file as its output. This is especially useful if you are running ASCIISite on your personal computer, and will be uploading the tar.gz file to your server.

As for how to format the input directory, thats up to you. The directory structure of the input will be mirrored in the structure of the output website. The only real rule you need to follow is that all your links to other pages in the input directory should be relative, so they dont get broken when you move the output directory around.

Example

Say you have a nice asciidoctor directory like this:

test
├── dir
│   ├── collatz.py
│   └── subdir
│       └── linked.adoc
├── images
│   └── test_pattern.svg
├── include
│   └── include.adoc
└── landing_page.adoc

Where some pages link to others, some pages include others, and some pages have images in them.

You can run

ASCIISite.py -o result test

to get a file tree like:

result
├── dir
│   ├── collatz.py
│   └── subdir
│       └── linked.html
├── images
│   └── test_pattern.svg
├── include
│   └── include.html
└── landing_page.html

Alternatively, you can run

ASCIISite.py -z -o result test

to get a .tar.gz file containing the result directory.