slide_number_format property

slide_number_format property

Gets or sets the format string used for slide number headers in Markdown output. The format must include the “{0}” placeholder, which will be replaced with the slide index during export. Example: “# Slide {0}” will produce “# Slide 1”, “# Slide 2”, etc.

Definition:

@property
def slide_number_format(self):
    ...

@slide_number_format.setter
def slide_number_format(self, value):
    ...

See Also