diff options
| author | Bobby <[email protected]> | 2023-05-19 17:31:30 -0400 |
|---|---|---|
| committer | Bobby <[email protected]> | 2023-05-19 17:31:30 -0400 |
| commit | 7916ab8332935eae49de5b07ba16949bd1bcdfa2 (patch) | |
| tree | bc2b07ff3166e14556178d85b3878730d834f400 /blog/views.py | |
| parent | b532de2f3b0ad75cb3eda787fb49b64e8c4ee032 (diff) | |
| download | thatcomputerscientist-7916ab8332935eae49de5b07ba16949bd1bcdfa2.tar.xz thatcomputerscientist-7916ab8332935eae49de5b07ba16949bd1bcdfa2.zip | |
Font and Sidebar updates + some cleanup
Diffstat (limited to 'blog/views.py')
| -rw-r--r-- | blog/views.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/blog/views.py b/blog/views.py index e12752b5..8c83e29a 100644 --- a/blog/views.py +++ b/blog/views.py @@ -111,7 +111,7 @@ def post(request, slug): images = soup.find_all('img') for i in range(len(images)): if i % 2 != 0: - images[i]['style'] = 'float: right; padding: 0px 0px 0px 13px;' + images[i]['style'] = 'float: right; margin: 13px; margin-right: 0px;' # remove all paragraphs which are: "<p class="ql-align-justify"><br></p>" for p in soup.find_all('p', class_='ql-align-justify'): |
