Alexey Zapparov

Results 309 comments of Alexey Zapparov

I agree, flexible url scheme is a good idea.

yes. I believe it should be possible to allow specify segments like `/:year/:month/:day/:slug.html` the only problem in "moving" from other blogging software is that basically each post in toto is...

Toto sort articles by their basenames: ``` ruby def self.articles ext Dir["#{Paths[:articles]}/*.#{ext}"].sort_by {|entry| File.basename(entry) } end ``` That means that you can override it in your `config.ru` to meet your...

Hmm. Yes, git does not preserve ctime. Well. For me it doesn't make any sense to create more than one post per day (I can't allow myself write more than...

I'm not really interested in this feature (at least on the current codebase of toto - I believe we need to cleanup the core). But I have prepared possible solution...

Maruku also supports options, but they are different. Please try to revert your changes (except win32|java) and pass to your toto config: ``` ruby set :markdown, {} ``` Alternative way...

You can write a simple helper for this purposes, e.g. put this in your config.ru: ``` ruby module Toto module Template attr_accessor :meta_desc end end ``` then you'll be able...

First of all, I believe this is inappropriate place for this issue, as this is related to dorothy (toto knows nothing about feed creation). Secondly, we can use ctime of...

@cloudhead this issue can be closed as well. Feed generation is on dorothy side, so everyone can think for himself how he or she wants to output article IDs. If...

RDiscount still have some problms with HTML5: https://github.com/rtomayko/rdiscount/issues/21 Anyway, personally I prefer redcarpet - it provides more interersting things like: `````` ``` ruby # github flavoured markup ``` ``````