Skip to content

MarkdownReader

class MarkdownReader(markdown_content: str)

Overview

Dummy class that inherits from the generic IReader class. It is used to convert markdown content into markdown. Created to maintain consistency against all the readers.

Parameters

  • markdown_content : str
    • The markdown content.

Attributes

  • markdown_content : str
    • The markdown content.

Methods

def convert_to_markdown(self) -> str
Convert the markdown content to a markdown string.