diff options
author | Luke Shumaker <lukeshu@sbcglobal.net> | 2017-01-09 19:45:49 -0500 |
---|---|---|
committer | Luke Shumaker <lukeshu@sbcglobal.net> | 2017-01-09 19:45:49 -0500 |
commit | 0c73fda3ed731b9dbfbc32fae31fd497e02acf90 (patch) | |
tree | 9c38abddfc4243f80990f3e96070cc39d141e1e1 /lib | |
parent | c31bcece72fad34389ae0f104fd4844b17472916 (diff) |
page_local: fix a dumb bug (I had '=' instead of '+=')
Diffstat (limited to 'lib')
-rw-r--r-- | lib/page_local.rb | 2 |
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 |