OK, I just want a simple blog with articles written in markdown and, very important, with multilingual support, ie I can write an article in several languages. Maybe you want it too? Here is fizzyblog!
- Uses python-markdown under the hood
- Templates written in html+python
- Admonitions and code hilighting
- Simple tag system
- Can sort articles by year, tag or language
- Ready-to-use default templates, just add your CSS and build your blog :)
- Clone the repository
- cd to the folder
- Install the package:
python setup.py install
-> Continue to the wiki
Once you've got your blog, run fizzyblog in your blog's directory.
python -m fizzyblog
For the syntax highlighting to work, you need to define an appropriate CSS style. According to the docs, this can be done with pygments:
pygmentize -S default -f html -a .codehilite > code.css
Then, you need to make sure that code.css
is loaded by your webpages.
By default, fizzyblog generate HTML pages that include /style.css
.
You can edit your style.css
to import the code stylesheet:
@import "/code.css";
/* add this line at the beginning of the file */
Then, update your blog by running fizzyblog.