Skip to content

Commit

Permalink
They already have line breaks
Browse files Browse the repository at this point in the history
  • Loading branch information
shaedrich committed Jun 6, 2024
1 parent 8f35e48 commit b8aa275
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/superfences_ponylang/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ def format(source, language, css_class, options, md, classes=None, id_value='',
for i, line in enumerate(lines):
lines[i] = line[indent:None]

source = '\n'.join(lines)
source = ''.join(lines) #'\n'
#source = str(base.Config.user_configs.__dict__) + str(TemplateContext) + str(c) + str(options) + str(attrs) + str(classes) + str(kwargs)
else:
with open(os.getcwd() + "/code-samples/" + snippetPath, 'r') as f:
Expand Down

0 comments on commit b8aa275

Please sign in to comment.