{ "info": { "author": "Manuel Barkhau", "author_email": "mbarkhau@gmail.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 4 - Beta", "Environment :: Console", "Environment :: Other Environment", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Operating System :: MacOS :: MacOS X", "Operating System :: Microsoft :: Windows", "Operating System :: POSIX", "Operating System :: Unix", "Programming Language :: Python", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: Implementation :: CPython", "Programming Language :: Python :: Implementation :: PyPy", "Topic :: Software Development :: Libraries", "Topic :: Software Development :: Libraries :: Python Modules" ], "description": "\n# [markdown-katex][repo_ref]\n\nThis is an extension for [Python Markdown](https://python-markdown.github.io/)\nwhich adds [KaTeX](https://katex.org/) support.\n\n ```math\n f(x) = \\int_{-\\infty}^\\infty\n \\hat f(\\xi)\\,e^{2 \\pi i \\xi x}\n \\,d\\xi\n ```\n\n
\n

\n\n

\n
\n\nProject/Repo:\n\n[![MIT License][license_img]][license_ref]\n[![Supported Python Versions][pyversions_img]][pyversions_ref]\n[![CalVer v202112.1034][version_img]][version_ref]\n[![PyPI Version][pypi_img]][pypi_ref]\n[![PyPI Downloads][downloads_img]][downloads_ref]\n\nCode Quality/CI:\n\n[![GitHub CI Status][github_build_img]][github_build_ref]\n[![GitLab CI Status][gitlab_build_img]][gitlab_build_ref]\n[![Type Checked with mypy][mypy_img]][mypy_ref]\n[![Code Coverage][codecov_img]][codecov_ref]\n[![Code Style: sjfmt][style_img]][style_ref]\n\n\n| Name | role | since | until |\n|-------------------------------------|-------------------|---------|-------|\n| Manuel Barkhau (mbarkhau@gmail.com) | author/maintainer | 2019-05 | - |\n\n\n## Install\n\n```bash\n$ pip install markdown-katex\n...\n$ python -m markdown_katex --version\nmarkdown-katex version: v202112.1034 (using binary: /usr/local/bin/npx --no-install katex)\n0.15.1\n```\n\nThis package includes the following binaries:\n\n - `katex_v0.15.1_node10_x86_64_Linux`\n _ `katex_v0.15.1_node10_x86_64_Darwin`\n _ `katex_v0.15.1_node12_x86_64_Windows`\n\nIf you are on a different platform, or want to use a more recent version of `katex-cli`, you will need to [install it via npm][href_katexinstall_cli].\n\n```bash\n$ npx katex\n$ npx katex --version\n0.15.1\n```\n\nThis extension will always use the locally installed version of KaTeX if it is available, instead of using the implementation bundled with this package.\n\nNo JavaScript is required to render the resulting HTML, so it can be used with more limited renderers (which don't support JavaScript) such as [WeasyPrint](https://weasyprint.org/) .\n\n\n## Usage\n\nFormulas can be created and edited interactively using the editor on [katex.org](https://katex.org/). They also have some [good documentation][href_katex_docs] for the subset of LaTeX that is supported. When embedding these in your Markdown files, they must be marked with a special syntax in order to be rendered using KaTeX. There are [many syntax extensions][href_cben_mathdown] for Markdown that allow LaTeX formulas to be embedded, however this package only supports the syntax introduced by Gitlab:\n\n - For inline mode formulas: $`...`$\n - For display mode formulas: ```math\n\nHere is [an example](https://gitlab.com/snippets/1857641) that uses this syntax.\n\nThere are two main advantages of this syntax:\n\n 1. Gitlab has an existing Markdown renderer that can be used without the need to download any software. This implementation also uses KaTeX, so the output should be exactly the same as this extension.\n 2. The fallback behaviour of other Markdown renderers is to render the raw LaTeX as inline code or a code block. This means that they won't inadvertently parse a LaTeX formula as Markdown syntax.\n\nHopefully other renderers will also adopt support for this syntax as:\n\n 1. Rendering is done in the browser using KaTeX so implementation effort and should be minimal.\n 2. The false positive rate for existing Markdown documents is negligible (i.e. existing alternate use of $` syntax is minimal to non-existent).\n\n\n## Options\n\n - `no_inline_svg`: Replace inline `` with `` tags.\n - `insert_fonts_css`: Insert font loading stylesheet (default: True).\n\n\n## Development/Testing\n\n```bash\n$ git clone https://gitlab.com/mbarkhau/markdown-katex\n$ cd markdown-katex\n$ make conda\n$ make lint mypy test\n```\n\n\n## MkDocs Integration\n\nIn your `mkdocs.yml` add this to markdown_extensions.\n\n```yaml\n# mkdocs.yml\nmarkdown_extensions:\n - markdown_katex:\n no_inline_svg: True\n insert_fonts_css: True\n macro-file: macros.tex\n```\n\nThe `macro-file` might looks something like this:\n\n```tex\n% macros.tex\n\\mymacro:\\text{prefix #1 suffix}\n```\n\n## WeasyPrint Integration\n\nWhen you generate html that is to be consumed by [WeasyPrint](https://weasyprint.org/), you need to use the `no_inline_svg=True` option. This is due to a [long standing limitation](https://github.com/Kozea/WeasyPrint/issues/75) of WeasyPrint. Without this option, some KaTeX formulas will not render properly, e.g. `\\sqrt`\n\n```python\nmd_ctx = markdown.Markdown(\n extensions=[\n 'markdown.extensions.toc',\n 'markdown.extensions.extra',\n 'markdown.extensions.abbr',\n ...\n 'markdown_katex',\n ],\n extension_configs={\n 'markdown_katex': {\n 'no_inline_svg': True, # fix for WeasyPrint\n 'insert_fonts_css': True,\n },\n }\n)\nraw_html_text = md_ctx.convert(md_text)\n```\n\nYou can also use markdown-katex for the conversion of individual formulas from tex to html:\n\n```python\nfrom markdown_katex.extension import tex2html\n\ntex_text = r\"\"\"\n\\frac{1}{\\left(\\sqrt{\\phi\\sqrt{5}}-\\phi\\right)e^{\\frac{2}{5}\\pi}}=\n 1+\\frac{e^{-2\\pi}} {\n 1+\\frac{e^{-4\\pi}} {\n 1+\\frac{e^{-6\\pi}} {\n 1+\\frac{e^{-8\\pi}} {\n 1+\\cdots\n }\n }\n }\n}\n\"\"\"\noptions = {'no_inline_svg': True, 'insert_fonts_css': False}\nhtml = tex2html(tex_text, options)\n```\n\n\n[href_cben_mathdown]: https://github.com/cben/mathdown/wiki/math-in-markdown\n\n[repo_ref]: https://github.com/mbarkhau/markdown-katex\n\n[github_build_img]: https://github.com/mbarkhau/markdown-katex/workflows/CI/badge.svg\n[github_build_ref]: https://github.com/mbarkhau/markdown-katex/actions?query=workflow%3ACI\n\n[gitlab_build_img]: https://gitlab.com/mbarkhau/markdown-katex/badges/master/pipeline.svg\n[gitlab_build_ref]: https://gitlab.com/mbarkhau/markdown-katex/pipelines\n\n[codecov_img]: https://gitlab.com/mbarkhau/markdown-katex/badges/master/coverage.svg\n[codecov_ref]: https://mbarkhau.gitlab.io/markdown-katex/cov\n\n[license_img]: https://img.shields.io/badge/License-MIT-blue.svg\n[license_ref]: https://gitlab.com/mbarkhau/markdown-katex/blob/master/LICENSE\n\n[mypy_img]: https://img.shields.io/badge/mypy-checked-green.svg\n[mypy_ref]: https://mbarkhau.gitlab.io/markdown-katex/mypycov\n\n[style_img]: https://img.shields.io/badge/code%20style-%20sjfmt-f71.svg\n[style_ref]: https://gitlab.com/mbarkhau/straitjacket/\n\n[pypi_img]: https://img.shields.io/badge/PyPI-wheels-green.svg\n[pypi_ref]: https://pypi.org/project/markdown-katex/#files\n\n[downloads_img]: https://pepy.tech/badge/markdown-katex/month\n[downloads_ref]: https://pepy.tech/project/markdown-katex\n\n[version_img]: https://img.shields.io/static/v1.svg?label=CalVer&message=v202112.1034&color=blue\n[version_ref]: https://pypi.org/project/bumpver/\n\n[pyversions_img]: https://img.shields.io/pypi/pyversions/markdown-katex.svg\n[pyversions_ref]: https://pypi.python.org/pypi/markdown-katex\n\n[href_katexinstall_cli]: https://katex.org/docs/cli.html\n\n[href_katex_docs]: https://katex.org/docs/supported.html\n\n\n\n# Changelog for https://gitlab.com/mbarkhau/markdown-katex\n\n## Contributors\n\nThank you to for testing, reporting issues and contributing patches:\n\n- @summersz - Richard Summers\n- @bluhme3 - Evan Bluhm\n- @pawamoy - Timoth\u00e9e Mazzucotelli\n- @briankchan\n- @spoorendonk\n- @lisongmin\n- @alexatadi\n- @sacredfox - Akihiro Nomura\n- @jnsdrtlf\n- @dodoni - Markus Wendt\n\n\n## v202112.1034\n\n - Update KaTeX binaries to v0.15.1\n - Fix [#13][gh_13]: Don't strip `

` when using inline syntax for a single equation.\n\n[gh_13]: https://github.com/mbarkhau/markdown-katex/issue/13\n\n\n## v202106.1033\n\n - Update KaTeX binaries to v0.13.18\n\n\n## v202106.1032\n\n - Fix [#8][gh_8]: Math inside admonition\n - Update KaTeX binaries to v0.13.11\n\n[gh_8]: https://github.com/mbarkhau/markdown-katex/issue/8\n\n\n## v202105.1031\n\n - Update KaTeX binaries to v0.13.6\n\n\n## v202104.1030\n\n - Update KaTeX binaries to v0.13.3\n - Fix [#4][gh_4]: Close file descriptors of Popen\n - Add support for blocks with extra backticks\n\n[gh_4]: https://github.com/mbarkhau/markdown-katex/pull/4\n\n\n## v202103.1029\n\n - Fix [#14](https://gitlab.com/mbarkhau/markdown-katex/-/issues/14): Since `Markdown>=3.3` support for [Markdown in HTML][md_in_html] was broken.\n\n[md_in_html]: https://python-markdown.github.io/extensions/md_in_html/\n\nThank you @summersz for reporting this issue.\n\n\n## v202103.1028\n\n - Use node12 for KaTeX binary on Windows\n\n\n## v202103.1027\n\n - Update KaTeX binaries to v0.13.0\n\n\n## v202008.1026\n\n - Fix [#12](https://gitlab.com/mbarkhau/markdown-katex/-/issues/12): Bug in handling of paths with whitespace. (Thanks @summersz !)\n\n\n## v202008.1025\n\n - Fix [#9](https://gitlab.com/mbarkhau/markdown-katex/-/issues/9): Update `katex.css`\n - Fix [#8](https://gitlab.com/mbarkhau/markdown-katex/-/issues/8): Lookup of binaries on windows\n - Update documentation wrt. use with WeasyPrint\n\n\n## v202008.1024\n\n - Update KaTeX binaries to v0.12.0\n - Fix [#8](https://gitlab.com/mbarkhau/markdown-katex/-/issues/8): Update binaries...\n - Fix [#7](https://gitlab.com/mbarkhau/markdown-katex/-/issues/7): Lookup of binaries via npx\n\n\n## v202006.1021\n\n - Fix [#7](https://gitlab.com/mbarkhau/markdown-katex/-/issues/7): File encoding issue on Windows.\n\n\n## v202006.1020\n\n - Fix [#7](https://gitlab.com/mbarkhau/markdown-katex/-/issues/7) katex-cli on Windows (now uses pkg --target node12...)\n - Fix search for local `katex.ps1`, `katex.cmd`, `katex.exe` on Windows.\n\n\n## v202005.0017\n\n - Allow use of `macro-file` option.\n - Update katex-cli to [version v0.11.1](https://github.com/KaTeX/KaTeX/blob/master/CHANGELOG.md)\n\n\n## v202005.0016-beta\n\n - Fix #6: [Regression in code block parsing](https://gitlab.com/mbarkhau/markdown-katex/-/issues/6), introduced in `v202004.0015-beta`\n\n\n## v202004.0015-beta\n\n - Fix #3: [Inline math inside block](https://gitlab.com/mbarkhau/markdown-katex/-/issues/3)\n\n\n## v202004.0014-beta\n\n - Fix #4: [Link tag not properly closed](https://gitlab.com/mbarkhau/markdown-katex/-/issues/4)\n\n\n## v202001.0013-beta\n\n - Fix: Ignore trailing whitespace after closing fence.\n\n\n## v202001.0012-beta\n\n - Fix: Remove extraneous whitespace to work better with whitespace: pre.\n\n\n## v201912.0011-beta\n\n - Add option `insert_fonts_css`\n - Document options\n\n\n## v201910.0010-beta\n\n - Add more prominent example to README.md\n - Fix #2: Fix spurious log message when using MkDocs\n\n\n## v201908.0009-beta\n\n - Fix #1: Wrong formulas are rendered when multiple formulas are in one doc.\n\n\n## v201907.0008-beta\n\n - Fix: don't require typing package for py<35\n\n\n## v201905.0007-beta\n\n - Fix: Parsing of inline code when using multiple backticks\n\n\n## v201905.0004-beta\n\n - Fix: better error reporting\n - Fix: cleanup temp dir\n\n\n## v201905.0002-alpha\n\n - Initial release\n\n\n", "description_content_type": "text/markdown", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/mbarkhau/markdown-katex", "keywords": "markdown katex extension", "license": "MIT", "maintainer": "", "maintainer_email": "", "name": "markdown-katex", "package_url": "https://pypi.org/project/markdown-katex/", "platform": "", "project_url": "https://pypi.org/project/markdown-katex/", "project_urls": { "Homepage": "https://github.com/mbarkhau/markdown-katex" }, "release_url": "https://pypi.org/project/markdown-katex/202112.1034/", "requires_dist": [ "pathlib2", "setuptools", "typing ; python_version < \"3.5\"", "Markdown (>=3.0<3.3) ; python_version < \"3.6\"", "Markdown (>=3.0) ; python_version >= \"3.6\"" ], "requires_python": ">=2.7", "summary": "katex extension for Python Markdown", "version": "202112.1034", "yanked": false, "yanked_reason": null }, "last_serial": 12304966, "releases": { "201905.7b0": [ { "comment_text": "", "digests": { "md5": "b07955e13862219f579309847f0f5e1d", "sha256": "0937ae6131bd03b1a1d03ee11c9ca431a051f2a9d77e98b7a9b4235841d4cb13" }, "downloads": -1, "filename": "markdown_katex-201905.7b0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "b07955e13862219f579309847f0f5e1d", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7", "size": 39077866, "upload_time": "2019-05-22T23:57:04", "upload_time_iso_8601": "2019-05-22T23:57:04.674687Z", "url": "https://files.pythonhosted.org/packages/3d/52/1fe368b6670c5dec332bc2f26cf971691f5f12ffe8c2706df318dc0f7e3e/markdown_katex-201905.7b0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e56eb0ca859821334c41805fbf6db06a", "sha256": "9613c27528e4b4a99bf5f1d15c1539171d231d74c48cc62bd7111b5547e5e1e0" }, "downloads": -1, "filename": "markdown-katex-201905.7b0.tar.gz", "has_sig": false, "md5_digest": "e56eb0ca859821334c41805fbf6db06a", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7", "size": 38821085, "upload_time": "2019-05-22T23:57:47", "upload_time_iso_8601": "2019-05-22T23:57:47.154268Z", "url": "https://files.pythonhosted.org/packages/51/b3/741c419b8445ced0a9ef30861273f087187501d015d34166b9f08f4e6277/markdown-katex-201905.7b0.tar.gz", "yanked": false, "yanked_reason": null } ], "201907.8b0": [ { "comment_text": "", "digests": { "md5": "62b2c242b376d040cbf994da3acaa336", "sha256": "92b57ddf40f23e95da4c53f5c19a4c62b304ff6c22207e9fad0e90a30a5408a9" }, "downloads": -1, "filename": "markdown_katex-201907.8b0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "62b2c242b376d040cbf994da3acaa336", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7", "size": 39077906, "upload_time": "2019-07-28T15:45:34", "upload_time_iso_8601": "2019-07-28T15:45:34.873827Z", "url": "https://files.pythonhosted.org/packages/ac/dc/4a2bb61fd1e0370e24c67386d4f1ec44e215905af85e989ba8f291f4691d/markdown_katex-201907.8b0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "07e79035a9e5d810a693f8eebe7f1d55", "sha256": "f4faf43438a3b838828d4eb2477066d2d0489c2154680e37953cef8363a15117" }, "downloads": -1, "filename": "markdown-katex-201907.8b0.tar.gz", "has_sig": false, "md5_digest": "07e79035a9e5d810a693f8eebe7f1d55", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7", "size": 38821295, "upload_time": "2019-07-28T15:51:18", "upload_time_iso_8601": "2019-07-28T15:51:18.975423Z", "url": "https://files.pythonhosted.org/packages/e8/40/b0f53b5ec727b6cb356bc5f84951522f63754626119ce8da5a958e8a2f80/markdown-katex-201907.8b0.tar.gz", "yanked": false, "yanked_reason": null } ], "201908.9b0": [ { "comment_text": "", "digests": { "md5": "f896cd2277214ea5dd4664696e3c63ed", "sha256": "b60f9968fe4fcf7383a48b71683135ec085de05cfaddc579f16c70b2e798b58d" }, "downloads": -1, "filename": "markdown_katex-201908.9b0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "f896cd2277214ea5dd4664696e3c63ed", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7", "size": 39077971, "upload_time": "2019-08-23T21:31:54", "upload_time_iso_8601": "2019-08-23T21:31:54.261271Z", "url": "https://files.pythonhosted.org/packages/c4/82/b593f3965f09d008469df0210205b4121eb2fafaf7cbefd7cb275a53671c/markdown_katex-201908.9b0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "08f43f278182cf9e7d44ead2c7872085", "sha256": "700f2f0557c150aa949c5069a64f1a23908a73831732157c338a51d07eb5e7e3" }, "downloads": -1, "filename": "markdown-katex-201908.9b0.tar.gz", "has_sig": false, "md5_digest": "08f43f278182cf9e7d44ead2c7872085", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7", "size": 38821535, "upload_time": "2019-08-23T21:32:41", "upload_time_iso_8601": "2019-08-23T21:32:41.533541Z", "url": "https://files.pythonhosted.org/packages/6c/0d/a60a436f3f63dfc4801b424c157d07d8c098dcc93325b05a16e050bb6510/markdown-katex-201908.9b0.tar.gz", "yanked": false, "yanked_reason": null } ], "201910.10b0": [ { "comment_text": "", "digests": { "md5": "5c4eb6820aedfae014f6b350113a72f9", "sha256": "453343e3bf6cdf326986c2b7e5c059dc7c1fb51eccced25a10254aee3d2bfcca" }, "downloads": -1, "filename": "markdown_katex-201910.10b0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "5c4eb6820aedfae014f6b350113a72f9", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7", "size": 39078215, "upload_time": "2019-10-28T20:23:37", "upload_time_iso_8601": "2019-10-28T20:23:37.308218Z", "url": "https://files.pythonhosted.org/packages/c6/28/9272cc9b9a06e9d2a5203fc2747fe929e2ec7a1945ab8286806c900cd129/markdown_katex-201910.10b0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9157f14bdfa3804de13af433a8bcc8b6", "sha256": "2e1b62678986dfc04dec9d4e0f8ee2e3f8a394907faedf705edc43fe5cea552c" }, "downloads": -1, "filename": "markdown-katex-201910.10b0.tar.gz", "has_sig": false, "md5_digest": "9157f14bdfa3804de13af433a8bcc8b6", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7", "size": 38822169, "upload_time": "2019-10-28T20:24:25", "upload_time_iso_8601": "2019-10-28T20:24:25.728829Z", "url": "https://files.pythonhosted.org/packages/72/fb/727f2fabe217801970242918a6a16e04a785d15ad1f56d136e9072b9378f/markdown-katex-201910.10b0.tar.gz", "yanked": false, "yanked_reason": null } ], "201912.11b0": [ { "comment_text": "", "digests": { "md5": "f16f9ff4296acf1d01d9425b67144a68", "sha256": "aa07cb519bad27782c04a15d8a4123007f62e2c8081a438aa5505ea5fe3c6cd6" }, "downloads": -1, "filename": "markdown_katex-201912.11b0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "f16f9ff4296acf1d01d9425b67144a68", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7", "size": 39078442, "upload_time": "2019-12-05T18:13:13", "upload_time_iso_8601": "2019-12-05T18:13:13.816336Z", "url": "https://files.pythonhosted.org/packages/f2/a3/604ad27f2f4e33610b88e4c7451dfad4b849298679b4e838a92cd7045514/markdown_katex-201912.11b0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8e19afbf82d6d6d0ab9208ca58cca57a", "sha256": "602ca9f6311b6d324f2d7903cc06ef1f4457d673cd2ca3fb1ce7e17119fcbc95" }, "downloads": -1, "filename": "markdown-katex-201912.11b0.tar.gz", "has_sig": false, "md5_digest": "8e19afbf82d6d6d0ab9208ca58cca57a", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7", "size": 38822873, "upload_time": "2019-12-05T18:14:00", "upload_time_iso_8601": "2019-12-05T18:14:00.387053Z", "url": "https://files.pythonhosted.org/packages/ad/35/a94c92ad2e6268df0d3965a42ba49a7fa503449be16b32a5224446d761e2/markdown-katex-201912.11b0.tar.gz", "yanked": false, "yanked_reason": null } ], "202001.12b0": [ { "comment_text": "", "digests": { "md5": "c67705969f10397d74745d7c52a0f4d8", "sha256": "f3fbc8297653162d182e1588b6279f2c26641f622bb1993ce37dc3c88838f83a" }, "downloads": -1, "filename": "markdown_katex-202001.12b0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "c67705969f10397d74745d7c52a0f4d8", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7", "size": 39078493, "upload_time": "2020-01-19T17:44:37", "upload_time_iso_8601": "2020-01-19T17:44:37.658891Z", "url": "https://files.pythonhosted.org/packages/bf/ef/4e8ecbefea793a12c994162835acfc6b51eb13881279e67f766a9362c277/markdown_katex-202001.12b0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "bc0ee8918b9f23f8d8033db4a6ff230f", "sha256": "4fa99aa33a1db97edc37afa9833fa4d54c18a602b9d66f0799d0acaab64b5c40" }, "downloads": -1, "filename": "markdown-katex-202001.12b0.tar.gz", "has_sig": false, "md5_digest": "bc0ee8918b9f23f8d8033db4a6ff230f", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7", "size": 38823295, "upload_time": "2020-01-19T17:45:24", "upload_time_iso_8601": "2020-01-19T17:45:24.529730Z", "url": "https://files.pythonhosted.org/packages/02/7a/3d79fc8d716cd15e55b58e576bf0f5de45f93df9e387654389e806176c14/markdown-katex-202001.12b0.tar.gz", "yanked": false, "yanked_reason": null } ], "202001.13b0": [ { "comment_text": "", "digests": { "md5": "66b6682760df2aec888d1d04504ba9ae", "sha256": "23cf5eab2a5ae6c88718fbead88298f73183b4f59d57ed590f0470b4c41a1b15" }, "downloads": -1, "filename": "markdown_katex-202001.13b0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "66b6682760df2aec888d1d04504ba9ae", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7", "size": 39078582, "upload_time": "2020-01-25T18:00:25", "upload_time_iso_8601": "2020-01-25T18:00:25.729914Z", "url": "https://files.pythonhosted.org/packages/50/ad/dd686a92797b470e2c1176a71167868a2c9a71b8bdc7d7ea103bb9e071fa/markdown_katex-202001.13b0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "46f70b51cb7a99184892b16a9b80779d", "sha256": "240e9777ac88b37241e549cc48afb39c2c03d5bebf040a4b1138f7af92f195aa" }, "downloads": -1, "filename": "markdown-katex-202001.13b0.tar.gz", "has_sig": false, "md5_digest": "46f70b51cb7a99184892b16a9b80779d", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7", "size": 38823518, "upload_time": "2020-01-25T18:01:16", "upload_time_iso_8601": "2020-01-25T18:01:16.166933Z", "url": "https://files.pythonhosted.org/packages/6a/cc/6443d73934987b200260e1f3f24d52bb09e7c987bf5c63797af8e0bb56be/markdown-katex-202001.13b0.tar.gz", "yanked": false, "yanked_reason": null } ], "202004.14b0": [ { "comment_text": "", "digests": { "md5": "d038b54438e7560da0109daa88be69a1", "sha256": "9bf5888345171f8b490094556053ff905ced2839cabd3d3aac562b0805b84c49" }, "downloads": -1, "filename": "markdown_katex-202004.14b0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "d038b54438e7560da0109daa88be69a1", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7", "size": 39078603, "upload_time": "2020-04-21T07:47:20", "upload_time_iso_8601": "2020-04-21T07:47:20.149789Z", "url": "https://files.pythonhosted.org/packages/f1/02/82868d309b7900122c129ee0cfb0092001bf661ba82fb68550da34b8a37e/markdown_katex-202004.14b0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "005050417863318909c7f3257cd4aa7c", "sha256": "9cddd1f434a92ec910cd0ad64f232f341dde8870b2a6747a8f7e9d4a4f68ff81" }, "downloads": -1, "filename": "markdown-katex-202004.14b0.tar.gz", "has_sig": false, "md5_digest": "005050417863318909c7f3257cd4aa7c", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7", "size": 38823695, "upload_time": "2020-04-21T07:48:04", "upload_time_iso_8601": "2020-04-21T07:48:04.824000Z", "url": "https://files.pythonhosted.org/packages/5a/f2/981bdbc61142c919e06cd33a667952ec0f93732c7a8415e9a20e3c0ef481/markdown-katex-202004.14b0.tar.gz", "yanked": false, "yanked_reason": null } ], "202004.15b0": [ { "comment_text": "", "digests": { "md5": "5f61a6ea6a231cf78adab3a31b435eef", "sha256": "9f1e85aaafff3099b166ab7870b243a4e46f8f3a030f57143f89b98dbb7be76f" }, "downloads": -1, "filename": "markdown_katex-202004.15b0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "5f61a6ea6a231cf78adab3a31b435eef", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7", "size": 39078715, "upload_time": "2020-05-01T22:26:14", "upload_time_iso_8601": "2020-05-01T22:26:14.924841Z", "url": "https://files.pythonhosted.org/packages/13/b9/2539b48aa2fc441a31d202f80f0ab2f74c2dfc78174ecfb07f65b394c25c/markdown_katex-202004.15b0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "41823950fb650ef18fb8651ea679ec22", "sha256": "e55c61d7011bcd76acacb6ee832959dc8b1526b08616f5e4893e6a61dc173747" }, "downloads": -1, "filename": "markdown-katex-202004.15b0.tar.gz", "has_sig": false, "md5_digest": "41823950fb650ef18fb8651ea679ec22", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7", "size": 38824338, "upload_time": "2020-05-01T22:27:01", "upload_time_iso_8601": "2020-05-01T22:27:01.646366Z", "url": "https://files.pythonhosted.org/packages/6f/98/75785709b1e77f37f4d63784885f96a6b265b1b97b91945588ec853bda8c/markdown-katex-202004.15b0.tar.gz", "yanked": false, "yanked_reason": null } ], "202005.16b0": [ { "comment_text": "", "digests": { "md5": "5792b0a6133d253c6be9ddecbba13a3a", "sha256": "4f6a3f82832c3d0c0c53c21b6d3a21bc743c9425c7da62a3f63b380a283234eb" }, "downloads": -1, "filename": "markdown_katex-202005.16b0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "5792b0a6133d253c6be9ddecbba13a3a", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7", "size": 39078758, "upload_time": "2020-05-08T19:15:23", "upload_time_iso_8601": "2020-05-08T19:15:23.639711Z", "url": "https://files.pythonhosted.org/packages/3c/f9/0762bdb7e0a261787865a9a6dc0ea35068cf27b8809d8497a054fc87ba76/markdown_katex-202005.16b0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2a62b83624dfaaf6bb4f4d3dee092c82", "sha256": "feccde1eb0f8cb67045880891d9cddf63e9b7b623f0991db0d1655d449879d13" }, "downloads": -1, "filename": "markdown-katex-202005.16b0.tar.gz", "has_sig": false, "md5_digest": "2a62b83624dfaaf6bb4f4d3dee092c82", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7", "size": 38824623, "upload_time": "2020-05-08T19:16:08", "upload_time_iso_8601": "2020-05-08T19:16:08.710871Z", "url": "https://files.pythonhosted.org/packages/63/1b/e022f31ede73e1579491c1c0ef89b0db892a17c3f14e0b77b205d06c3893/markdown-katex-202005.16b0.tar.gz", "yanked": false, "yanked_reason": null } ], "202005.17": [ { "comment_text": "", "digests": { "md5": "c605af3b1a7949b75712c6c4309206bd", "sha256": "89944e62745e5edb60797346d5b48f939aa205073b6ba9b97d3840935d276dc0" }, "downloads": -1, "filename": "markdown_katex-202005.17-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "c605af3b1a7949b75712c6c4309206bd", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7", "size": 43398573, "upload_time": "2020-05-09T22:23:14", "upload_time_iso_8601": "2020-05-09T22:23:14.216013Z", "url": "https://files.pythonhosted.org/packages/e0/47/41cec3bb8915eeea9b12c4fee0d086cca90c9c81bcc49f3f9e88f83efab3/markdown_katex-202005.17-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "58ec389d2f3711b5105f4b149ae42df8", "sha256": "657a89e4d187bba60dcd53967a30adca74ca315c5b543269def6a8e505d7c184" }, "downloads": -1, "filename": "markdown-katex-202005.17.tar.gz", "has_sig": false, "md5_digest": "58ec389d2f3711b5105f4b149ae42df8", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7", "size": 43130975, "upload_time": "2020-05-09T22:23:59", "upload_time_iso_8601": "2020-05-09T22:23:59.693585Z", "url": "https://files.pythonhosted.org/packages/60/a2/b46fa00a1515894fdcb84d015e0560ccb2b05c0ac5886c73776f4ac91fad/markdown-katex-202005.17.tar.gz", "yanked": false, "yanked_reason": null } ], "202006.1019": [ { "comment_text": "", "digests": { "md5": "5224d07a94251b9759763a1447342209", "sha256": "d8597b343bb68e8ce6f58df900480c50a4d5e2acf1ca4494803f5890707ce629" }, "downloads": -1, "filename": "markdown_katex-202006.1019-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "5224d07a94251b9759763a1447342209", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7", "size": 47955642, "upload_time": "2020-06-17T20:53:50", "upload_time_iso_8601": "2020-06-17T20:53:50.154829Z", "url": "https://files.pythonhosted.org/packages/b8/1b/1cf988943c584123b887d787dd300553ec8d12ffa22dc1ee47c16f414e06/markdown_katex-202006.1019-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "11c329256ee1c2566b75e04a2a0bf0d4", "sha256": "1129e3f3cf865e6037110db38f7b7b79814fd45b508767c0f538b58059413ad0" }, "downloads": -1, "filename": "markdown-katex-202006.1019.tar.gz", "has_sig": false, "md5_digest": "11c329256ee1c2566b75e04a2a0bf0d4", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7", "size": 47673997, "upload_time": "2020-06-17T20:54:45", "upload_time_iso_8601": "2020-06-17T20:54:45.114254Z", "url": "https://files.pythonhosted.org/packages/b8/56/dacc180c1a6596b70000e440543e79afdb31861a9e8a7672de652eb08163/markdown-katex-202006.1019.tar.gz", "yanked": false, "yanked_reason": null } ], "202006.1021": [ { "comment_text": "", "digests": { "md5": "083ae51d70820ec50478aabf779d8133", "sha256": "82b5fedb866f8fc2d66907d9046c936a2e7799e669b31ece99469b6e1e287de2" }, "downloads": -1, "filename": "markdown_katex-202006.1021-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "083ae51d70820ec50478aabf779d8133", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7", "size": 47955806, "upload_time": "2020-06-19T11:59:38", "upload_time_iso_8601": "2020-06-19T11:59:38.322783Z", "url": "https://files.pythonhosted.org/packages/d8/37/8e815e22ef9ff3c783e4ec96ab4e413d78396852bcb98e633e0c19071576/markdown_katex-202006.1021-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e9adea2942e655df2db40b16e0266e2e", "sha256": "71d5525c8cf0510717ca79a5b80b82d2f7a1fc419333f74cfc3074429a177331" }, "downloads": -1, "filename": "markdown-katex-202006.1021.tar.gz", "has_sig": false, "md5_digest": "e9adea2942e655df2db40b16e0266e2e", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7", "size": 47674238, "upload_time": "2020-06-19T12:00:32", "upload_time_iso_8601": "2020-06-19T12:00:32.797354Z", "url": "https://files.pythonhosted.org/packages/5c/5d/898278741ae0e45a8c41efe144cc1af63701725fbf1f59e0570bf55bc4d4/markdown-katex-202006.1021.tar.gz", "yanked": false, "yanked_reason": null } ], "202008.1023": [ { "comment_text": "", "digests": { "md5": "2d27a70bfd597d24db1071adbf172d3f", "sha256": "3ab1e6297db3c9c3c501ad728bd69b5bbc3881fe8a5c204983657cf9f3feb6f5" }, "downloads": -1, "filename": "markdown_katex-202008.1023-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "2d27a70bfd597d24db1071adbf172d3f", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7", "size": 47773414, "upload_time": "2020-08-13T23:01:05", "upload_time_iso_8601": "2020-08-13T23:01:05.242793Z", "url": "https://files.pythonhosted.org/packages/3d/9d/cdfe719e77c5ea908466c4744adf677ada142518a3ba4efc69e3b572637b/markdown_katex-202008.1023-py2.py3-none-any.whl", "yanked": true, "yanked_reason": "has a known bug, fixed in 202008.1024" }, { "comment_text": "", "digests": { "md5": "a4f2ce9c80521afb37c825609ec5758c", "sha256": "b61dccc25ed881b31b0eab20a4065ce3fb65dbc438585d1c15b23531458627b6" }, "downloads": -1, "filename": "markdown-katex-202008.1023.tar.gz", "has_sig": false, "md5_digest": "a4f2ce9c80521afb37c825609ec5758c", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7", "size": 47486930, "upload_time": "2020-08-13T23:01:56", "upload_time_iso_8601": "2020-08-13T23:01:56.047882Z", "url": "https://files.pythonhosted.org/packages/6d/2a/00499920c12375e75428277994b4d7d6b82a8bdec8cc627c716dea10e161/markdown-katex-202008.1023.tar.gz", "yanked": true, "yanked_reason": "has a known bug, fixed in 202008.1024" } ], "202008.1024": [ { "comment_text": "", "digests": { "md5": "d23d56594e1660c6512b9dcab21c1a6e", "sha256": "71a349b57d260d26d42fdedccb5c877f4cc5de579614f9771eeb0ff453cff092" }, "downloads": -1, "filename": "markdown_katex-202008.1024-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "d23d56594e1660c6512b9dcab21c1a6e", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7", "size": 47773474, "upload_time": "2020-08-13T23:18:34", "upload_time_iso_8601": "2020-08-13T23:18:34.002924Z", "url": "https://files.pythonhosted.org/packages/9f/4f/96fbb05e58f2cd64b4d6d6a69c1734f9a015aaf11d9dd53ae9c54385fb4e/markdown_katex-202008.1024-py2.py3-none-any.whl", "yanked": true, "yanked_reason": "used an outdated katex.css, fixed in 202008.1025" }, { "comment_text": "", "digests": { "md5": "1a5f438f3f70d7777954be4412065ba0", "sha256": "dcd927a64f955806560d9091a9a197f09183ef2bdd98aa6ceb9b681521e29b43" }, "downloads": -1, "filename": "markdown-katex-202008.1024.tar.gz", "has_sig": false, "md5_digest": "1a5f438f3f70d7777954be4412065ba0", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7", "size": 47487020, "upload_time": "2020-08-13T23:19:31", "upload_time_iso_8601": "2020-08-13T23:19:31.650081Z", "url": "https://files.pythonhosted.org/packages/67/61/65a07d8e0d3a3e3ce9ac4f560e0f814435696aa7ad627f5dd41b75bc9fd2/markdown-katex-202008.1024.tar.gz", "yanked": true, "yanked_reason": "used an outdated katex.css, fixed in 202008.1025" } ], "202008.1025": [ { "comment_text": "", "digests": { "md5": "a2df3b65b6090cde9e883374188f8d14", "sha256": "f91fca65f8159b8fb8ce539326fb7fe6ecf4320a8025cecbc7794d8147bb29e5" }, "downloads": -1, "filename": "markdown_katex-202008.1025-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "a2df3b65b6090cde9e883374188f8d14", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7", "size": 47773975, "upload_time": "2020-08-14T18:49:08", "upload_time_iso_8601": "2020-08-14T18:49:08.700386Z", "url": "https://files.pythonhosted.org/packages/8e/aa/d9eaafd7af50d2d3ff11e94f44a2f963f94539cfb96338736f09ceea5854/markdown_katex-202008.1025-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "244b732458aa8ba34bb5889e8eec849f", "sha256": "6933de43063d580522173db5e02143aa0512548ebd76b8c8bd541422a2664b35" }, "downloads": -1, "filename": "markdown-katex-202008.1025.tar.gz", "has_sig": false, "md5_digest": "244b732458aa8ba34bb5889e8eec849f", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7", "size": 47489433, "upload_time": "2020-08-14T18:50:12", "upload_time_iso_8601": "2020-08-14T18:50:12.222513Z", "url": "https://files.pythonhosted.org/packages/1d/0d/49c6ba4798d3692bd3f6b9c9f488532bb1c334659aee397e41ba40a7bc0c/markdown-katex-202008.1025.tar.gz", "yanked": false, "yanked_reason": null } ], "202009.1026": [ { "comment_text": "", "digests": { "md5": "b27b625a21c28c96448cd68f91288798", "sha256": "67fb883a823bc94ee7aac73ac2aff1324cef975abb43b3170e57d71b96b3fe4f" }, "downloads": -1, "filename": "markdown_katex-202009.1026-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "b27b625a21c28c96448cd68f91288798", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7", "size": 47774171, "upload_time": "2020-09-25T17:23:56", "upload_time_iso_8601": "2020-09-25T17:23:56.250783Z", "url": "https://files.pythonhosted.org/packages/49/29/352f42e446b51288a812491f641c25388a85c2049b945b82437010fefd1c/markdown_katex-202009.1026-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "befc42274253a9a3eb0c8c42cfe04016", "sha256": "956cd1a3aee2302839fe56b9914c493950cd359db233a4e68897d57bf3f35361" }, "downloads": -1, "filename": "markdown-katex-202009.1026.tar.gz", "has_sig": false, "md5_digest": "befc42274253a9a3eb0c8c42cfe04016", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7", "size": 47490232, "upload_time": "2020-09-25T17:31:06", "upload_time_iso_8601": "2020-09-25T17:31:06.446182Z", "url": "https://files.pythonhosted.org/packages/2b/ad/ab455d6734c8b2ea0a09101c5ba5e0f9e436c55c782bba9cbec00c0bac3c/markdown-katex-202009.1026.tar.gz", "yanked": false, "yanked_reason": null } ], "202103.1027": [ { "comment_text": "", "digests": { "md5": "6cf594d7bf2ac1f3d1746fbf9fd6939d", "sha256": "f2355b561c63c37291de7e616eb28eb7190fb970f9dc42a7e33316f1d42f6bd4" }, "downloads": -1, "filename": "markdown_katex-202103.1027-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "6cf594d7bf2ac1f3d1746fbf9fd6939d", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7", "size": 43668040, "upload_time": "2021-03-12T02:34:03", "upload_time_iso_8601": "2021-03-12T02:34:03.103179Z", "url": "https://files.pythonhosted.org/packages/52/b3/d109cdf4498c08fadff0e9ce98edbfaeeae7b3f99487955f6bb55b924577/markdown_katex-202103.1027-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f956023dcd4378f6eb5e1445faa46ae9", "sha256": "ef80c7d59b93207c80f6d84863d9661631056f6fb5859f2fe1eaf61fbdc0ae88" }, "downloads": -1, "filename": "markdown-katex-202103.1027.tar.gz", "has_sig": false, "md5_digest": "f956023dcd4378f6eb5e1445faa46ae9", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7", "size": 43387726, "upload_time": "2021-03-12T02:57:14", "upload_time_iso_8601": "2021-03-12T02:57:14.050898Z", "url": "https://files.pythonhosted.org/packages/ec/82/46fd9b411e9e82d98f5711e42eaeb722f5850c1655c3709168a1b73bb8cb/markdown-katex-202103.1027.tar.gz", "yanked": false, "yanked_reason": null } ], "202103.1028": [ { "comment_text": "", "digests": { "md5": "907c3c841b2650de195decf637d20982", "sha256": "67e1acbd4b102a9a88259e0356f42695681a340e6d535e1819a5f93cc7985638" }, "downloads": -1, "filename": "markdown_katex-202103.1028-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "907c3c841b2650de195decf637d20982", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7", "size": 45453801, "upload_time": "2021-03-12T19:16:19", "upload_time_iso_8601": "2021-03-12T19:16:19.845834Z", "url": "https://files.pythonhosted.org/packages/bd/63/0313c9dc51b2e0d6213713aeab6b70c640701c951519719a4f5e975e91a3/markdown_katex-202103.1028-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "79dfb448a70ebc37c1a34c7516d3c621", "sha256": "b8a8fa314cbceaaa096a8adfe60c8816c4a6845c9722104598b2a31d3dc605e7" }, "downloads": -1, "filename": "markdown-katex-202103.1028.tar.gz", "has_sig": false, "md5_digest": "79dfb448a70ebc37c1a34c7516d3c621", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7", "size": 45171496, "upload_time": "2021-03-12T19:17:05", "upload_time_iso_8601": "2021-03-12T19:17:05.121603Z", "url": "https://files.pythonhosted.org/packages/2f/a2/a8250fc9b553fb3ffb91cda8c6ba99890d53557b5d701accac24721c0b89/markdown-katex-202103.1028.tar.gz", "yanked": false, "yanked_reason": null } ], "202103.1029": [ { "comment_text": "", "digests": { "md5": "bf5f99826d562e38b545ec32134b448e", "sha256": "937d9bdbb3c60876de3e5fa46c92c7164ca97c9826a74d08d8fc516b31b6cc41" }, "downloads": -1, "filename": "markdown_katex-202103.1029-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "bf5f99826d562e38b545ec32134b448e", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7", "size": 45453917, "upload_time": "2021-03-14T20:53:16", "upload_time_iso_8601": "2021-03-14T20:53:16.761929Z", "url": "https://files.pythonhosted.org/packages/c3/7b/416a814fa4dd17c1f7a992291f7d1f56cd73b73455e62c0a8d36c21244db/markdown_katex-202103.1029-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "113bf542f8e2fd0c2d8bb958acf60b68", "sha256": "b5fb2ab2c659ce8a4f71f16eadb29b61888c77ad78b61de93515524ba5cd5c9a" }, "downloads": -1, "filename": "markdown-katex-202103.1029.tar.gz", "has_sig": false, "md5_digest": "113bf542f8e2fd0c2d8bb958acf60b68", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7", "size": 45171904, "upload_time": "2021-03-14T20:54:01", "upload_time_iso_8601": "2021-03-14T20:54:01.001808Z", "url": "https://files.pythonhosted.org/packages/11/98/1607b0f0f519d2a1fae7648aec7dafaaf5d9a30ca85db691bdc50089b16f/markdown-katex-202103.1029.tar.gz", "yanked": false, "yanked_reason": null } ], "202104.1030": [ { "comment_text": "", "digests": { "md5": "003200c9c74ac2e2064dcb32c363ccc0", "sha256": "64bdb36210caa3d23c42a5b0937edd96dd27ebbbd49465302c45f7138a37ed8e" }, "downloads": -1, "filename": "markdown_katex-202104.1030-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "003200c9c74ac2e2064dcb32c363ccc0", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7", "size": 39153291, "upload_time": "2021-04-30T19:29:56", "upload_time_iso_8601": "2021-04-30T19:29:56.168536Z", "url": "https://files.pythonhosted.org/packages/7d/70/6a1732991e4c389aece8027ffe362ce721bc033e1b2d097a5b39481fde35/markdown_katex-202104.1030-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9d313ee8cc20717a33654e0746680ecf", "sha256": "9bc3d9b88d2c11fd7174527dc46e5cfeea610d72528131e16b3229b654b55247" }, "downloads": -1, "filename": "markdown-katex-202104.1030.tar.gz", "has_sig": false, "md5_digest": "9d313ee8cc20717a33654e0746680ecf", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7", "size": 38949043, "upload_time": "2021-04-30T19:30:47", "upload_time_iso_8601": "2021-04-30T19:30:47.982903Z", "url": "https://files.pythonhosted.org/packages/2d/ad/7c7230f2f62c6d087440eb9ac5f2616b1be1b659eda2d2f23f6d75fc4b3f/markdown-katex-202104.1030.tar.gz", "yanked": false, "yanked_reason": null } ], "202105.1031": [ { "comment_text": "", "digests": { "md5": "400e5b9575bf82c56abfbdbbf5d35aef", "sha256": "170f421bbfef8f84a89ecadba554e13eb6046c4bd0c054d248fc33bfcf0abc30" }, "downloads": -1, "filename": "markdown_katex-202105.1031-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "400e5b9575bf82c56abfbdbbf5d35aef", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7", "size": 39154031, "upload_time": "2021-05-06T16:59:49", "upload_time_iso_8601": "2021-05-06T16:59:49.986945Z", "url": "https://files.pythonhosted.org/packages/82/bf/e7d6ad76357a987d36d109e6d9af712e7a73d34b28a28f74c9f41454a831/markdown_katex-202105.1031-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "19ca63c5f244c7afbb6e127c6a4345cd", "sha256": "447c6c794284608bc6272d66b396c2168614643c27caf168d8f1685eefc03915" }, "downloads": -1, "filename": "markdown-katex-202105.1031.tar.gz", "has_sig": false, "md5_digest": "19ca63c5f244c7afbb6e127c6a4345cd", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7", "size": 38949704, "upload_time": "2021-05-06T17:00:44", "upload_time_iso_8601": "2021-05-06T17:00:44.078164Z", "url": "https://files.pythonhosted.org/packages/de/d3/440477035119927629e215e104ecf658a5f77e5392071c3a98da269dd080/markdown-katex-202105.1031.tar.gz", "yanked": false, "yanked_reason": null } ], "202106.1032": [ { "comment_text": "", "digests": { "md5": "6439d79c72b76d38917160d9f8f6e124", "sha256": "ab275056f4c54b0be01127202a20a8cb756c5dc70ce90d1fe381daf4cd7c0d60" }, "downloads": -1, "filename": "markdown-katex-202106.1032.tar.gz", "has_sig": false, "md5_digest": "6439d79c72b76d38917160d9f8f6e124", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7", "size": 39993693, "upload_time": "2021-06-13T17:41:53", "upload_time_iso_8601": "2021-06-13T17:41:53.622803Z", "url": "https://files.pythonhosted.org/packages/9c/2b/57f645fb7daca9daa2228b6d27395c1582897a2bf094a916ef2c903e68fd/markdown-katex-202106.1032.tar.gz", "yanked": false, "yanked_reason": null } ], "202109.1033": [ { "comment_text": "", "digests": { "md5": "ffc89bb57f02a179db2180bd4e65c2aa", "sha256": "65013fdeac2c0548079ca58560a9fa4e3f165282c5e28fc87cceac1df7f883bc" }, "downloads": -1, "filename": "markdown_katex-202109.1033-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "ffc89bb57f02a179db2180bd4e65c2aa", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7", "size": 39631529, "upload_time": "2021-09-05T11:13:21", "upload_time_iso_8601": "2021-09-05T11:13:21.886318Z", "url": "https://files.pythonhosted.org/packages/1c/d8/3a38317d1ad5b3bd1428167e28a9dd353c1fffc29408500ec27f5061cf16/markdown_katex-202109.1033-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e24c97452287eee181989e867c19dfab", "sha256": "307a1ecffc4f15d708846a42c5a9f4fc4a61cb457bb237c8b4c7b80527652624" }, "downloads": -1, "filename": "markdown-katex-202109.1033.tar.gz", "has_sig": false, "md5_digest": "e24c97452287eee181989e867c19dfab", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7", "size": 39425531, "upload_time": "2021-09-05T11:15:48", "upload_time_iso_8601": "2021-09-05T11:15:48.511880Z", "url": "https://files.pythonhosted.org/packages/f6/59/c366d8d26ca29497f3287114fe45ae4c32715c5f5296ceac64c7601b7e03/markdown-katex-202109.1033.tar.gz", "yanked": false, "yanked_reason": null } ], "202112.1034": [ { "comment_text": "", "digests": { "md5": "9195bdce27bfb0773b2ff62ed5317d2f", "sha256": "9ccc5b4b37db7592cc3ea113d763fafe9ffd1b1587e2c217d6145e44a10b4f6d" }, "downloads": -1, "filename": "markdown_katex-202112.1034-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "9195bdce27bfb0773b2ff62ed5317d2f", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7", "size": 39766627, "upload_time": "2021-12-14T22:22:42", "upload_time_iso_8601": "2021-12-14T22:22:42.579146Z", "url": "https://files.pythonhosted.org/packages/a2/18/f54ce298ddda160e9443fd68e47c2a677ea6320ddbe08e10cd40d54c2df4/markdown_katex-202112.1034-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "bdb4f0fd70fcef4af52d84216c79276f", "sha256": "27892f4cdd6763816f00e4187d0475500697c090aba16630ec4803a6564bf810" }, "downloads": -1, "filename": "markdown-katex-202112.1034.tar.gz", "has_sig": false, "md5_digest": "bdb4f0fd70fcef4af52d84216c79276f", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7", "size": 39562611, "upload_time": "2021-12-14T22:23:37", "upload_time_iso_8601": "2021-12-14T22:23:37.585397Z", "url": "https://files.pythonhosted.org/packages/6c/20/87589bf74c66905b1e6d8f69169aa98cfb55f1447a62126754584a680c1e/markdown-katex-202112.1034.tar.gz", "yanked": false, "yanked_reason": null } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "9195bdce27bfb0773b2ff62ed5317d2f", "sha256": "9ccc5b4b37db7592cc3ea113d763fafe9ffd1b1587e2c217d6145e44a10b4f6d" }, "downloads": -1, "filename": "markdown_katex-202112.1034-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "9195bdce27bfb0773b2ff62ed5317d2f", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7", "size": 39766627, "upload_time": "2021-12-14T22:22:42", "upload_time_iso_8601": "2021-12-14T22:22:42.579146Z", "url": "https://files.pythonhosted.org/packages/a2/18/f54ce298ddda160e9443fd68e47c2a677ea6320ddbe08e10cd40d54c2df4/markdown_katex-202112.1034-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "bdb4f0fd70fcef4af52d84216c79276f", "sha256": "27892f4cdd6763816f00e4187d0475500697c090aba16630ec4803a6564bf810" }, "downloads": -1, "filename": "markdown-katex-202112.1034.tar.gz", "has_sig": false, "md5_digest": "bdb4f0fd70fcef4af52d84216c79276f", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7", "size": 39562611, "upload_time": "2021-12-14T22:23:37", "upload_time_iso_8601": "2021-12-14T22:23:37.585397Z", "url": "https://files.pythonhosted.org/packages/6c/20/87589bf74c66905b1e6d8f69169aa98cfb55f1447a62126754584a680c1e/markdown-katex-202112.1034.tar.gz", "yanked": false, "yanked_reason": null } ], "vulnerabilities": [] }