diff options
author | luxagraf <sng@luxagraf.net> | 2016-11-16 10:01:03 -0500 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2016-11-16 10:01:03 -0500 |
commit | 367ca2fa4682d26507f56a91f93baa7680764b93 (patch) | |
tree | abb51e9e73826d10b2340eb0efedf45d929ce3f7 | |
parent | 702dc9deb63a15277ba3a3ee397933dbe7a6ffbc (diff) |
got rid of markdown in excerpts
-rw-r--r-- | app/jrnl/models.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/app/jrnl/models.py b/app/jrnl/models.py index 254662d..2a92073 100644 --- a/app/jrnl/models.py +++ b/app/jrnl/models.py @@ -166,7 +166,6 @@ class Entry(models.Model): md = image_url_replace(self.body_markdown) self.body_html = markdown.markdown(md, extensions=['extra'], safe_mode=False) self.has_video = parse_video(self.body_html) - self.dek = markdown_to_html(self.dek) try: self.location = Location.objects.filter(geometry__contains=self.point).get() except Location.DoesNotExist: |