diff --git a/lib/superfences_ponylang/__init__.py b/lib/superfences_ponylang/__init__.py index 204bb5ea..b80877e3 100644 --- a/lib/superfences_ponylang/__init__.py +++ b/lib/superfences_ponylang/__init__.py @@ -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()