Skip to content

Markdown

Markdown #

Markdown(value: bool = True)

Bases: RapidataSetting

Enable markdown rendering for text assets. Defaults to True.

Parameters:

Name Type Description Default
value bool

Whether to enable markdown rendering for text assets.

True
Source code in src/rapidata/rapidata_client/settings/markdown.py
def __init__(self, value: bool = True):
    if not isinstance(value, bool):
        raise ValueError("The value must be a boolean.")
    super().__init__(key="use_text_asset_markdown", value=value)