My First Pelican Post
Thu 12 September 2013
I basically followed these posts:
http://martinbrochhaus.com/pelican2.html
https://gist.github.com/josefjezek/6053301
But I got this error message when starting the Pelican developer server by "make devserver". The error message is "'bool' object is not callable". Turns out I need to install markdown by "pip install markdown".
You should also notice that the site url variable should be padded with "/RepoNameHere" for hosting in github to work. For example, in my templates/index.html, I have to replace "{{ SITEURL }}/" with "{{ SITEURL }}/blog".
Now I need to learn some markdown syntaxes.