Sanity Library Reference Docs
    Preparing search index...

    Type Alias MarkdownConfigBeta

    MarkdownConfig: Omit<
        MarkdownShortcutsPluginProps,
        "unorderedList"
        | "orderedList",
    > & (
        | {
            orderedList?: undefined;
            orderedListStyle?: MarkdownShortcutsPluginProps["orderedList"];
        }
        | {
            orderedList?: MarkdownShortcutsPluginProps["orderedList"];
            orderedListStyle?: undefined;
        }
    ) & (
        | {
            unorderedList?: undefined;
            unorderedListStyle?: MarkdownShortcutsPluginProps["unorderedList"];
        }
        | {
            unorderedList?: MarkdownShortcutsPluginProps["unorderedList"];
            unorderedListStyle?: undefined;
        }
    )

    Type declaration

    • {
          orderedList?: undefined;
          orderedListStyle?: MarkdownShortcutsPluginProps["orderedList"];
      }
      • OptionalorderedList?: undefined
      • OptionalorderedListStyle?: MarkdownShortcutsPluginProps["orderedList"]
        • use orderedList instead
    • {
          orderedList?: MarkdownShortcutsPluginProps["orderedList"];
          orderedListStyle?: undefined;
      }
      • OptionalorderedList?: MarkdownShortcutsPluginProps["orderedList"]
      • OptionalorderedListStyle?: undefined
        • use orderedList instead
    • {
          unorderedList?: undefined;
          unorderedListStyle?: MarkdownShortcutsPluginProps["unorderedList"];
      }
      • OptionalunorderedList?: undefined
      • OptionalunorderedListStyle?: MarkdownShortcutsPluginProps["unorderedList"]
        • use unorderedList instead
    • {
          unorderedList?: MarkdownShortcutsPluginProps["unorderedList"];
          unorderedListStyle?: undefined;
      }
      • OptionalunorderedList?: MarkdownShortcutsPluginProps["unorderedList"]
      • OptionalunorderedListStyle?: undefined
        • use unorderedList instead