diff options
author | Ivan N. Veselov <veselov@gmail.com> | 2013-05-04 17:57:51 +0300 |
---|---|---|
committer | Ivan N. Veselov <veselov@gmail.com> | 2013-05-04 17:57:51 +0300 |
commit | 0e6441885c8a1567b688e0fa83fd84d59f079af2 (patch) | |
tree | e60c09efc04824cdfdef21296757973d5cb32bcd | |
parent | 9ad0d38f431c02e848bc675c0ff9f582d49c5e32 (diff) | |
download | hakyll-0e6441885c8a1567b688e0fa83fd84d59f079af2.tar.gz |
Changed the teaser separator to "more" to use the same format as WordPress does.
-rw-r--r-- | src/Hakyll/Web/Template/Context.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Hakyll/Web/Template/Context.hs b/src/Hakyll/Web/Template/Context.hs index d3c228e..74c2e8d 100644 --- a/src/Hakyll/Web/Template/Context.hs +++ b/src/Hakyll/Web/Template/Context.hs @@ -103,7 +103,7 @@ teaserContext snapshot = field "teaser" $ \item -> -------------------------------------------------------------------------------- teaserSeparator :: String -teaserSeparator = "<!-- teaser_end -->" +teaserSeparator = "<!--more-->" -------------------------------------------------------------------------------- |