6 lines
135 B
Python
6 lines
135 B
Python
class content:
|
|
def __init__(self, content):
|
|
self.content = content
|
|
def get_markdown(self):
|
|
return self.content
|