Metadata-Version: 2.4
Name: asyncapi-tag
Version: 1.2.0
Summary: DEPRECATED: renamed to 'asyncapi-viewer'. This package only depends on it and re-exports its modules.
Author-email: Weesho Lapara <support@weesholapara.com>
License-Expression: MIT
Project-URL: Homepage, https://github.com/Weesho-Lapara/asyncapi-viewer
Project-URL: Replacement, https://pypi.org/project/asyncapi-viewer/
Keywords: asyncapi,markdown,mkdocs,deprecated
Classifier: Development Status :: 7 - Inactive
Classifier: Framework :: MkDocs
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Topic :: Documentation
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: asyncapi-viewer[mkdocs]<2,>=1.2.0
Dynamic: license-file

# asyncapi-tag (deprecated)

This package has been renamed to **[asyncapi-viewer](https://pypi.org/project/asyncapi-viewer/)**.
With the fenced-block syntax and the upcoming viewer of its own, "tag" no longer described it.

Version 1.2.0 of this package contains no code of its own. It depends on `asyncapi-viewer` and
re-exports its modules under the old import name, so both of these keep working unchanged:

```yaml
plugins:
  - asyncapi-tag          # still registered by asyncapi-viewer
markdown_extensions:
  - asyncapi_tag          # still registered by asyncapi-viewer
```

```python
from asyncapi_tag import AsyncAPITagExtension   # DeprecationWarning, then works
```

Switch your requirement to `asyncapi-viewer`; no further releases will be made under this name.

```sh
pip uninstall asyncapi-tag
pip install asyncapi-viewer
```
