diff --git a/poetry.lock b/poetry.lock index 70b68f32..0dd187fe 100644 --- a/poetry.lock +++ b/poetry.lock @@ -1,4 +1,4 @@ -# This file is automatically @generated by Poetry 2.1.1 and should not be changed by hand. +# This file is automatically @generated by Poetry 2.1.2 and should not be changed by hand. [[package]] name = "attrs" @@ -236,14 +236,14 @@ referencing = ">=0.31.0" [[package]] name = "markdownify" -version = "1.1.0" +version = "1.2.0" description = "Convert HTML to markdown." optional = false python-versions = "*" groups = ["main"] files = [ - {file = "markdownify-1.1.0-py3-none-any.whl", hash = "sha256:32a5a08e9af02c8a6528942224c91b933b4bd2c7d078f9012943776fc313eeef"}, - {file = "markdownify-1.1.0.tar.gz", hash = "sha256:449c0bbbf1401c5112379619524f33b63490a8fa479456d41de9dc9e37560ebd"}, + {file = "markdownify-1.2.0-py3-none-any.whl", hash = "sha256:48e150a1c4993d4d50f282f725c0111bd9eb25645d41fa2f543708fd44161351"}, + {file = "markdownify-1.2.0.tar.gz", hash = "sha256:f6c367c54eb24ee953921804dfe6d6575c5e5b42c643955e7242034435de634c"}, ] [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: ...