From 505d1f550276cf7cd51e9419e286eae582409b15 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20H=C3=A4drich?= <11225821+shaedrich@users.noreply.github.com> Date: Thu, 6 Jun 2024 01:22:31 +0200 Subject: [PATCH] split class in debugging --- lib/superfences_ponylang/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/superfences_ponylang/__init__.py b/lib/superfences_ponylang/__init__.py index d978de41..d9ac4021 100644 --- a/lib/superfences_ponylang/__init__.py +++ b/lib/superfences_ponylang/__init__.py @@ -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()