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:
4f66acd
)
Disable shortcode processing for html files
author
bep
<bjorn.erik.pedersen@gmail.com>
Wed, 14 Jan 2015 19:49:43 +0000
(20:49 +0100)
committer
bep
<bjorn.erik.pedersen@gmail.com>
Wed, 14 Jan 2015 19:49:43 +0000
(20:49 +0100)
May be enabled later, but then it will have to do the complete "shortcode dance".
See ##674
hugolib/handler_page.go
patch
|
blob
|
history
diff --git
a/hugolib/handler_page.go
b/hugolib/handler_page.go
index 1b6dd23782b9a3be3b649ae1985df0a023e786f6..73cd12a793c957706a89792ebb8b462d5dfe6764 100644
(file)
--- a/
hugolib/handler_page.go
+++ b/
hugolib/handler_page.go
@@
-81,7
+81,8
@@
type htmlHandler struct {
func (h htmlHandler) Extensions() []string { return []string{"html", "htm"} }
func (h htmlHandler) PageConvert(p *Page, t tpl.Template) HandledResult {
- p.ProcessShortcodes(t)
+ // see #674 - disabled by bjornerik for now
+ // p.ProcessShortcodes(t)
p.Content = helpers.BytesToHTML(p.rawContent)
return HandledResult{err: nil}
}