From 09f2427b03c63630b501cce49742f0b1c43bc228 Mon Sep 17 00:00:00 2001 From: Hyunchul Kim Date: Fri, 27 Nov 2020 19:43:44 +0900 Subject: [PATCH] Replace `
` with `
` --- distribusi/distribusi/distribusi.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/distribusi/distribusi/distribusi.py b/distribusi/distribusi/distribusi.py index 8b5b39c..bda72f0 100644 --- a/distribusi/distribusi/distribusi.py +++ b/distribusi/distribusi/distribusi.py @@ -166,9 +166,9 @@ def distribusify(args, directory, freg): # noqa elif subtype in CODE_TYPES or name.endswith('.txt'): # if the plain text is code, # which types do we wrap in pre-tags? - a = "
" + open(full_path).read() + "
" + a = "
" + open(full_path).read() + "
" elif subtype == 'markdown' or name.endswith('.md'): - a = "
" + markdown.markdown(open(full_path).read()) + "
" + a = "
" + markdown.markdown(open(full_path).read()) + "
" pass else: subtype = subtype+' unkown-file'