Code-Hilite Examples December 10, 2015

PyKwiki uses the Markdown module's codehilite extension by default.

This extension is powered by Pygments and supports a wide variety of languages.

No hilighting (text)

Unhilighted:

    :::text
    No "syntax" highlighting here...

Produces:

Unhilighted:

No "syntax" highlighting here...

Python

Sample *Python*:

    :::python
    def foo():
        print("Bar")
        return False

Produces:

Sample Python:

def foo():
    print("Bar")
    return False

INI Configuration files.

Contents of `myconfig.ini`:

    :::ini
    ; Database connection info
    server = localhost
    password = "ASDFG123456"
    db_server = mydb.localhost

Produces:

Contents of myconfig.ini:

; Database connection info
server = localhost
password = "ASDFG123456"
db_server = mydb.localhost
...
Features October 12, 2013

Features

An overview of PyKwiki's most important features. See also: Feature Comparison

Recent Posts

feature

PyKwiki works well for blogs, review sites, or anything else that needs a "recent posts" type of feature.

Try it out »

Ranked Searching

feature

PyKwiki indexes your pages when you change them. This index is a pure JSON file optimized for fast searches.

Learn more »

Post Templates

feature

Easily create complex templates using Jinja2 syntax and the built-in tpl Markdown extension.

Learn more »

Markdown Editing

feature

Edit posts using an efficient and well supported format. No more messing with broken WYSIWYG tools — you can use any text editor you prefer.

Learn more »

Easy Setup

feature

Because PyKwiki does not use a database or require WSGI, PHP, or any other server side scripting, setup is a breeze.

Learn more »

Fastest Page Loads

feature

By skipping the database and saving server side processing for "compile" time, PyKwiki loads pages as fast as your webserver can serve static files.

Learn more »

Security

Because PyKwiki is simply a collection of compiled static files, it's as secure as your webserver.

Beautiful

feature

By default, PyKwiki gives you all the beauty and elegance of Bootstrap.

Learn more »

Feeds

feature

Since version 1.0.6, Pykwiki supports automatic RSS feeds, if an rss.xml template is present in the theme.

...