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'