cryogen-core/src/cryogen_core
ponkore 556fe84ef8 content-with-more-marker returns with correct tags
`content-with-more-marker` returns a HTML string when the `content`
conteins more marker ("<!--more-->").

In many case, HTML tags in `content` is balanced.
ex.
------------------------------
<div id='post'>
  <div class='post-content'>
    this post has more marker
<!--more-->
and more content.
  </div>
</div>
------------------------------

But original code breaks the balance.
------------------------------
<div id='post'>
  <div class='post-content'>
    this post has more marker
------------------------------

Afer this patch applied, `tagsoup` read above text and `hiccup`
re-render to HTML text with correct balanced tags.
------------------------------
<div id='post'>
  <div class='post-content'>
    this post has more marker
</div></div>
------------------------------
2016-01-11 21:30:21 +09:00
..
compiler.clj content-with-more-marker returns with correct tags 2016-01-11 21:30:21 +09:00
github.clj Clear reflection warnings 2015-09-14 12:06:35 +02:00
io.clj add Blog/Page/Post/Tag uri customisation 2016-01-08 22:59:10 +01:00
markup.clj rewrite-hrefs bug fix (when :blog-prefix is blank) 2016-01-10 23:40:19 +09:00
plugins.clj Simplify load-plugins with enumeration-seq 2015-09-20 22:52:51 +02:00
rss.clj add Blog/Page/Post/Tag uri customisation 2016-01-08 22:59:10 +01:00
sass.clj Fix type hint cast 2015-09-15 18:24:51 +02:00
sitemap.clj Clear reflection warnings 2015-09-14 12:06:35 +02:00
toc.clj Fixed a regression under which the old style of using :toc true would throw an exception because the tag was not properly cast to a :ul or :ol tag. Added unit testing for all cases. 2015-11-08 20:35:04 -05:00
watcher.clj require pandect.algo.md5 instead of pandect.core 2015-09-21 15:23:13 +02:00