From: why the lucky stiff Date: 2005-02-21T08:19:30+09:00 Subject: Re: YAML/RedCloth Question Jamis Buck wrote: > Use triple line breaks to indicate paragraph breaks. It's just the way > >YAML works: > > Unless you use a literal block. ----------------qbf.yml---------------- title: "on dogs and foxes" author: "q.b. foks, esq." text: | the quick brown fox jumps over the lazy dog --------------------------------------- Double-quoted multiline strings act like folded blocks (the rules Jamis described). See 'Blocks' in the YAML Cookbook. _why