From: Marc-Antoine Ruel Date: Thu, 2 Jul 2015 13:32:57 +0000 (-0400) Subject: Add Page.RawContent() to access raw Markdown as a string. X-Git-Tag: v0.15~307 X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=c9fc0e78;p=brevno-suite%2Fhugo Add Page.RawContent() to access raw Markdown as a string. In particular, RawContent() excludes the metadata header. This is necessary in the use case of embedding remarkjs.com slides, as it needs the unprocessed Markdown content to generate the slides. --- diff --git a/hugolib/page.go b/hugolib/page.go index 385bf873..d8d8c00e 100644 --- a/hugolib/page.go +++ b/hugolib/page.go @@ -726,6 +726,10 @@ func (p *Page) parse(reader io.Reader) error { return nil } +func (p *Page) RawContent() string { + return string(p.rawContent) +} + func (p *Page) SetSourceContent(content []byte) { p.Source.Content = content }