https://github.com/HeardACat/Bones
Barebones Static Wiki Generator
https://github.com/HeardACat/Bones
Last synced: 3 months ago
JSON representation
Barebones Static Wiki Generator
- Host: GitHub
- URL: https://github.com/HeardACat/Bones
- Owner: HeardACat
- License: mit
- Created: 2013-02-19T08:02:21.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2014-11-18T06:28:11.000Z (over 10 years ago)
- Last Synced: 2025-01-31T17:19:59.133Z (5 months ago)
- Language: Python
- Size: 191 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# Bones
**Chapman Siu**
Static wiki webpage generator. Heavily influenced by [chisel](https://github.com/dz/chisel)
# Usage
$ python bones.py
# Sample Entry
sample.markdown:
---
category : category1
tags : tag1,tag2
---
Markdown Content here.# Settings
Change these settings:
### SOURCE:
Location of source files for entries
Must end in slash.
Example: SOURCE = "./_post/"### DESTINATION:
Location to place generated files.
Must end in slash.
Example: DESTINATION = "./_site/"### TEMPLATE_PATH:
Path to folder where tempaltes live.
Must end in slash.
Example: TEMPLATE_PATH = "./templates/"### TEMPLATE_OPTIONS:
Dictionary of options to give jinja2.
Default: TEMPLATE_OPTIONS = {}### TEMPLATES:
Dictionary of templates.
Required keys: 'index', 'post'.
Example:TEMPLATES = {
'index': "index.html",
'post': "post.html",
}