diff --git a/poetry.lock b/poetry.lock index d0b68f69..6d40feaf 100644 --- a/poetry.lock +++ b/poetry.lock @@ -235,14 +235,14 @@ referencing = ">=0.31.0" [[package]] name = "markdownify" -version = "1.2.0" +version = "1.2.2" description = "Convert HTML to markdown." optional = false python-versions = "*" groups = ["main"] files = [ - {file = "markdownify-1.2.0-py3-none-any.whl", hash = "sha256:48e150a1c4993d4d50f282f725c0111bd9eb25645d41fa2f543708fd44161351"}, - {file = "markdownify-1.2.0.tar.gz", hash = "sha256:f6c367c54eb24ee953921804dfe6d6575c5e5b42c643955e7242034435de634c"}, + {file = "markdownify-1.2.2-py3-none-any.whl", hash = "sha256:3f02d3cc52714084d6e589f70397b6fc9f2f3a8531481bf35e8cc39f975e186a"}, + {file = "markdownify-1.2.2.tar.gz", hash = "sha256:b274f1b5943180b031b699b199cbaeb1e2ac938b75851849a31fd0c3d6603d09"}, ] [package.dependencies] diff --git a/stubs/markdownify/__init__.pyi b/stubs/markdownify/__init__.pyi deleted file mode 100644 index 0f3c0cd4..00000000 --- a/stubs/markdownify/__init__.pyi +++ /dev/null @@ -1,25 +0,0 @@ -from _typeshed import Incomplete - -def markdownify( - html: str, - strip: list[str] = ..., - convert: list[str] = ..., - autolinks: bool = ..., - bullets: str = ..., # An iterable of bullet types. - code_language: str = ..., - code_language_callback: Incomplete = ..., - default_title: bool = ..., - escape_asterisks: bool = ..., - escape_underscores: bool = ..., - escape_misc: bool = ..., - heading_style: str = ..., - keep_inline_images_in: list[str] = ..., - newline_style: str = ..., - strip_document: str = ..., - strong_em_symbol: str = ..., - sub_symbol: str = ..., - sup_symbol: str = ..., - table_infer_header: bool = ..., - wrap: bool = ..., - wrap_width: int = ..., -) -> str: ...