hugolib: Fix regression of .Truncated evaluation in manual summaries
authorAnton Staaf <anton@socialhacker.com>
Thu, 26 Jan 2017 19:58:25 +0000 (11:58 -0800)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Sun, 19 Feb 2017 09:11:49 +0000 (10:11 +0100)
commit99fbc75e7abe3c1e8ce58e91634cc46c44fa920c
tree83827a24cb6752caa18c97c5e33962f9309bb861
parent9416fdd334c6518209d2a471f3d227f92f3474ea
hugolib: Fix regression of .Truncated evaluation in manual summaries

This fixes the behavior of .Truncated that was introduced with commit
bef496b97e1dc2df8c52b080152d539a58752801 which was later broken.  The
desired behavior is that .Truncated would evaluate to false when there
was nothing after the user defined summary marker.

This also adds a simple unit test to ensure that this feature isn't
broken again.  The check for content after the user defined summary
marker is done on the raw content instead of the working copy because
some of the markup renderers add elements after the marker, making it
difficult to determine if there is actually any content.

The behavior (evaluating to false when there is no content, just
summary) is also now documented.
docs/content/content/summaries.md
hugolib/handler_page.go
hugolib/page.go
hugolib/page_test.go