An asciiDoc based static site generator.
Go to file
gabe 4cd780be6d added glob pattern based exclude
Will not copy over files that match the exclude paramater. This can be
usefull for things that are needed to compile the asciidoc, but should
not be included in the final website.

resolves #4
2021-09-16 21:16:34 -05:00
tests changed testing suite. 2021-09-16 15:35:09 -05:00
.gitignore I need a gitignore now 2021-08-06 16:52:13 -05:00
ASCIIsite.py added glob pattern based exclude 2021-09-16 21:16:34 -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.