diff --git a/tools/convert-help-center-docs-to-mdx b/tools/convert-help-center-docs-to-mdx index 928ffd3595..703f82b17d 100755 --- a/tools/convert-help-center-docs-to-mdx +++ b/tools/convert-help-center-docs-to-mdx @@ -28,12 +28,6 @@ INDENT_SPACES = " " SETTINGS_LINK_PATTERN = re.compile(r"{settings_tab\|(?P.*?)}") RELATIVE_LINKS_PATTERN = re.compile(r"\{relative\|(?P.*?)\|(?P.*?)\}") -# TODO list before cutover. -# -# 1. Before cutover we should also check for ordered list items that do not start -# with `1. ` since our conversion script assumes that every item list starts -# with `1. `. The regex we used to check for this was `\b(?!1\.)\d+\. `. - class IncludeFileInfo(TypedDict): is_only_ordered_list: bool