diff options
Diffstat (limited to 'core/views/uploads.py')
-rw-r--r-- | core/views/uploads.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/core/views/uploads.py b/core/views/uploads.py index 7ac43b5..8cd6704 100644 --- a/core/views/uploads.py +++ b/core/views/uploads.py @@ -304,6 +304,7 @@ def logbookedit(request, year=None, slug=None): title = request.POST["title"].strip() entry = request.POST["text"].strip() entry = entry.replace('\r','') # remove HTML-standard CR inserted from form. + entry = entry.replace('\n\n','\n<p>\n') # replace 2 \n with <br><br> # entry = entry.replace('\n\n','\n<br />\n<br />\n') # replace 2 \n with <br><br> # entry = entry.replace('<p>','<br />\n<br') # replace <p> tag with <br><br> # entry = entry.replace('<p ','<br />\n<br') # replace <p> tag with attributes with <br><br> |