Add configurable support for angled quotes
authorbep <bjorn.erik.pedersen@gmail.com>
Fri, 28 Nov 2014 20:16:57 +0000 (21:16 +0100)
committerbep <bjorn.erik.pedersen@gmail.com>
Fri, 26 Dec 2014 13:31:55 +0000 (14:31 +0100)
commitfbf8bcacc464e9bfbc816fa6d097e6371662ce02
treed193dfa7322d553bc6753cb7e130e2cbd2ea7c6e
parentbb3769822635963c35900fb307520e6bed7ff931
Add configurable support for angled quotes

The flag `HTML_SMARTYPANTS_ANGLED_QUOTES` was added to Blackfriday on Black Friday. This configures rendering of double quotes as angled left and right quotes (&laquo;
&raquo;).

Typical use cases would be either or, or combined, but never in the same
document. As an example would be a person from Norway; he has a blog in both
English and Norwegian (his native tongue); he would then configure Blackfriday
to use angled quotes for the Norwegian section, but keep them as reqular
double quotes for the English.

This commit adds configuration support for this new flag, configuration that can be set in the site configuration, but overridden in page front matter.

Fixes #605
commands/hugo.go
helpers/content.go
hugolib/page.go
hugolib/shortcode.go
tpl/template.go