Skip to content

Commit

Permalink
split class in debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
shaedrich authored Jun 5, 2024
1 parent 5410c2b commit 505d1f5
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 @@ -32,7 +32,7 @@ def format(source, language, css_class, options, md, classes=None, id_value='',
lines.append(line)
#source = str(lines)
source = '\n'.join(lines)
source = str(md) + str(options) + str(attrs) + str(classes) + str(kwargs)#.registeredExtensions.
source = str(md.preprocessors) + str(md.parser) + str(md.registeredExtensions) + str(options) + str(attrs) + str(classes) + str(kwargs)
else:
with open(os.getcwd() + "/code-samples/" + snippetPath, 'r') as f:
source = f.read()
Expand Down

0 comments on commit 505d1f5

Please sign in to comment.