projects
/
brevno-suite
/
hugo
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
be7ba0e
)
Summary can now contain short codes when using <!--more--> to define end of summary.
author
spf13
<steve.francia@gmail.com>
Fri, 4 Oct 2013 20:07:24 +0000
(16:07 -0400)
committer
spf13
<steve.francia@gmail.com>
Fri, 4 Oct 2013 20:07:24 +0000
(16:07 -0400)
hugolib/site.go
patch
|
blob
|
history
diff --git
a/hugolib/site.go
b/hugolib/site.go
index 25ee4d3dc452968eea8a371aff2b7c63af7a3f71..8e4e884f2858f873bed346312ec2ade23623c2cb 100644
(file)
--- a/
hugolib/site.go
+++ b/
hugolib/site.go
@@
-247,6
+247,7
@@
func (s *Site) checkDirectories() (err error) {
func (s *Site) ProcessShortcodes() {
for _, page := range s.Pages {
page.Content = template.HTML(ShortcodesHandle(string(page.Content), page, s.Tmpl))
+ page.Summary = template.HTML(ShortcodesHandle(string(page.Summary), page, s.Tmpl))
}
}