start syntax conversion

This commit is contained in:
Guilhem Fauré 2023-04-24 16:55:01 +02:00
parent 79669825eb
commit 0ab27b528a

View File

@ -1,6 +1,9 @@
import re
class content: class content:
def __init__(self, content): def __init__(self, content):
self.content = content self.spip = content
def get_markdown(self): def get_markdown(self):
return self.content markdown = self.spip
return markdown