Skip to content

Commit

Permalink
re-implement line join
Browse files Browse the repository at this point in the history
  • Loading branch information
shaedrich authored Jun 5, 2024
1 parent e9476e7 commit 06d8926
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/superfences_ponylang/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ def format(source, language, css_class, options, md, classes=None, id_value='',
lines.append(line)
elif i == int(lineNum):
lines.append(line)
source = str(lines)
#source = '\n'.join(lines)
#source = str(lines)
source = '\n'.join(lines)
else:
with open(os.getcwd() + "/code-samples/" + snippetPath, 'r') as f:
source = f.read()
Expand Down

0 comments on commit 06d8926

Please sign in to comment.