Pykari is a simple static site generator written in Python. The name comes from the Japanese word "pikari" (ピカリ), meaning a "flash of light."
Pykari depends on two plugin extensions for Markdown-It-Py: Heading, MD and Highlight-it. Follow the installation instructions on the pages for each plugin. Then, clone this repository, change into the repository directory, and install Pykari with pip:
pip install .Pykari comes with a command line tool, pykari, to set up projects and generate static site files. Type the following command and press enter to set up a new project in myproject:
pykari --setup myprojectPykari project organization is loosely based on Sphinx. Edit the CSS stylesheet in _static and the HTML template in _templates to customize the look of your site. Edit index.md and/or add other Markdown files to add pages to your site. Once you are ready to generate your site, change into the project directory, type pykari, and press enter. Pykari will create the static site in _build.
Refer to the Pykari documentation for more detailed instructions.