Skip to content

Commit

Permalink
more debug
Browse files Browse the repository at this point in the history
  • Loading branch information
shaedrich authored Jun 5, 2024
1 parent 91ba8c3 commit d3bbcd1
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 @@ -36,7 +36,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(base.Config.__dict__) + str(options) + str(attrs) + str(classes) + str(kwargs)
source = str(base.Config.user_configs.__dict__) + 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 d3bbcd1

Please sign in to comment.