diff options
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/another_read_more_link/another_read_more_link.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/another_read_more_link/another_read_more_link.py b/plugins/another_read_more_link/another_read_more_link.py index 8eedeb8..8778756 100644 --- a/plugins/another_read_more_link/another_read_more_link.py +++ b/plugins/another_read_more_link/another_read_more_link.py @@ -18,7 +18,7 @@ def insert_read_more_link(instance): ANOTHER_READ_MORE_LINK_FORMAT = instance.settings.get('ANOTHER_READ_MORE_LINK_FORMAT', '<a class="another-read-more-link" href="{url}#' + READ_MORE_ID + '">{text}</a>') - content = instance._content + content = instance._update_content(instance._content, instance.settings.get('SITEURL')) marker_location = content.find("<!-- more -->") |