HandleRepeatedSpaces
Contents
[
Hide
]HandleRepeatedSpaces class
Specifies how repeated regular space characters should be handled during Markdown export.
Constants
Name | Value | Description |
---|---|---|
None | 0 | All spaces are preserved as regular space characters without any changes. No transformation is applied, and multiple consecutive spaces are exported as-is. |
AlternateSpacesToNbsp | 1 | Converts sequences of two or more consecutive regular spaces by alternating between regular space characters and non-breaking space entities NBSP. The first space is always preserved as a regular space. |
MultipleSpacesToNbsp | 2 | Converts sequences of two or more consecutive regular spaces by preserving the first space as a regular space character and replacing all subsequent spaces with non-breaking space entities NBSP. |
None
All spaces are preserved as regular space characters without any changes. No transformation is applied, and multiple consecutive spaces are exported as-is.
AlternateSpacesToNbsp
Converts sequences of two or more consecutive regular spaces by alternating between regular space characters and non-breaking space entities NBSP. The first space is always preserved as a regular space.
MultipleSpacesToNbsp
Converts sequences of two or more consecutive regular spaces by preserving the first space as a regular space character and replacing all subsequent spaces with non-breaking space entities NBSP.