Static sites are cool! I generate my blog with Tinkerer http://www.tinkerer.me which is also Python and ReStructuredText based. Although Pelican seems to be more generic, while Tinkerer is mainly for blogs.
Does anyone have some experience with pelican (possibly liquidink) and rest2web?
There are many static website generators, but I'm looking into a python+ReST solution. I've been using rest2web a lot, and I really love it's simplicity compared to the other solutions. rest2web is really straightforward. In the end, it's the python-docutils module that does most of the work anyway, while rest2web simply collects the website structure.
The only downside is that rest2web lacks a bit of polish, and I really wished it would come with the ability to generate rss feeds for a particular tree or tag. I was thinking about writing a plugin, but I'm unsure.
pelican seem to be already be done for the purpose. Actually, pelican seem to target mostly blogs, while I actually just want "a feed of changes" for a particular directory tree. I don't want a blog-turned-into-a-website approach.
Does anybody had this problem? I'm really looking for feedback from people that used rest2web here and moved to pelican/liquidink, or back maybe. Figuring out the limitations of these tools require a long time investment and I cannot really decide by just trying it out on toy pages.
I tried pelican several times, but I always found it to be too complicated to what I want. I went through setup, generated some pages and when I started to tinker around with it I had a feeling it would be easier to write something from scratch.
Do you know any other static page generators, simpler and preferably in Python as well? Or should I just get over the first impression and go with the pelican?
I use Pelican on a couple of sites (like http://dylanfoundry.org/). One thing that I really like is that it is ReStructured Text, so most of the same things that I do with Sphinx for docs can carry over and the work that I've done with Pygments for syntax highlighting, still applies.
There's some room for improvement here and there, but it works pretty well and was easy to get going.
Are there any good guides to using ReStructuredText?
I love all things Python, but for some reason I could never wrap my head around ReStructuredText's syntax. Maybe it's because all my favorite sites use Markdown (including this one!), but I find Markdown's syntax to be more intuitive.
Love Pelican. Found it to be simplest "blog aware" generator for Python I could find. Because it keeps maturing, there's a ton of stuff you can do with it. But simply propping it up and starting a site, was amazingly easy.
[+] [-] mixedbit|13 years ago|reply
[+] [-] meaty|13 years ago|reply
[+] [-] RandallBrown|13 years ago|reply
[+] [-] supar|13 years ago|reply
There are many static website generators, but I'm looking into a python+ReST solution. I've been using rest2web a lot, and I really love it's simplicity compared to the other solutions. rest2web is really straightforward. In the end, it's the python-docutils module that does most of the work anyway, while rest2web simply collects the website structure.
The only downside is that rest2web lacks a bit of polish, and I really wished it would come with the ability to generate rss feeds for a particular tree or tag. I was thinking about writing a plugin, but I'm unsure.
pelican seem to be already be done for the purpose. Actually, pelican seem to target mostly blogs, while I actually just want "a feed of changes" for a particular directory tree. I don't want a blog-turned-into-a-website approach.
Does anybody had this problem? I'm really looking for feedback from people that used rest2web here and moved to pelican/liquidink, or back maybe. Figuring out the limitations of these tools require a long time investment and I cannot really decide by just trying it out on toy pages.
[+] [-] rplnt|13 years ago|reply
Do you know any other static page generators, simpler and preferably in Python as well? Or should I just get over the first impression and go with the pelican?
[+] [-] marban|13 years ago|reply
https://github.com/mythmon/wok
http://ringce.com/hyde
https://github.com/dz/chisel
http://mynt.mirroredwhite.com
http://tinkerer.me
http://nikola.ralsina.com.ar
http://blogofile.com
[+] [-] loftsy|13 years ago|reply
[+] [-] brass9|13 years ago|reply
I've split hair over jekyll/octopress configuration until I stumbled upon this nimble beauty... haven't looked back since.
Give nanoc a try.
[+] [-] nry|13 years ago|reply
Much simpler and better documentation in my opinion.
[+] [-] BruceM|13 years ago|reply
There's some room for improvement here and there, but it works pretty well and was easy to get going.
[+] [-] yen223|13 years ago|reply
I love all things Python, but for some reason I could never wrap my head around ReStructuredText's syntax. Maybe it's because all my favorite sites use Markdown (including this one!), but I find Markdown's syntax to be more intuitive.
[+] [-] d0m|13 years ago|reply
[+] [-] mahmoudimus|13 years ago|reply
Plus, I can use ReST -- a lot of the other static site generators just focus on Markdown. If you use python, ReST is your bread and butter.
[+] [-] traeblain|13 years ago|reply
`pelican-quickstart` and you are up and running.
[+] [-] dfrodriguez143|13 years ago|reply