Skip to content

Commit

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

0 comments on commit 5410c2b

Please sign in to comment.