forked from Camr0n/ark
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathark.py
More file actions
executable file
·19 lines (17 loc) · 716 Bytes
/
ark.py
File metadata and controls
executable file
·19 lines (17 loc) · 716 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/usr/bin/env python3
# --------------------------------------------------------------------------
# Ark: a static website generator in Python.
#
# Ark transforms a directory of text files written in Syntex or Markdown
# into a static website that can be viewed locally or served remotely.
#
# This script acts as the application's entry point. It is only used during
# development as installing Ark via pip automatically generates a new entry
# point on the user's PATH.
#
# Author: Darren Mulholland <[email protected]>
# License: Public Domain
# --------------------------------------------------------------------------
import ark
# The main module contains the application's entry point.
ark.main.main()