summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorLuke Shumaker <lukeshu@sbcglobal.net>2017-01-09 19:45:49 -0500
committerLuke Shumaker <lukeshu@sbcglobal.net>2017-01-09 19:45:49 -0500
commit0c73fda3ed731b9dbfbc32fae31fd497e02acf90 (patch)
tree9c38abddfc4243f80990f3e96070cc39d141e1e1 /lib
parentc31bcece72fad34389ae0f104fd4844b17472916 (diff)
page_local: fix a dumb bug (I had '=' instead of '+=')
Diffstat (limited to 'lib')
-rw-r--r--lib/page_local.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/page_local.rb b/lib/page_local.rb
index c4bd158..e13fa33 100644
--- a/lib/page_local.rb
+++ b/lib/page_local.rb
@@ -56,7 +56,7 @@ class LocalPage < Page
end
# Insert the body
- @content = _pandoc.to('html5 '+(_pandoc['pandoc_flags']||''))
+ @content += _pandoc.to('html5 '+(_pandoc['pandoc_flags']||''))
end
@content
end