dpranke | b08af21 | 2015-10-06 17:44:36 -0700 | [diff] [blame] | 1 | Name: Python-Markdown |
揚帆起航 | 0f44735 | 2022-11-28 22:32:11 +0000 | [diff] [blame] | 2 | URL: https://files.pythonhosted.org/packages/85/7e/133e943e97a943d2f1d8bae0c5060f8ac50e6691754eb9dbe036b047a9bb/Markdown-3.4.1.tar.gz |
| 3 | Version: 3.4.1 |
dpranke | b08af21 | 2015-10-06 17:44:36 -0700 | [diff] [blame] | 4 | Revision: None |
| 5 | Security Critical: no |
| 6 | License: BSD |
| 7 | License File: NOT_SHIPPED |
| 8 | |
| 9 | Description: |
| 10 | |
| 11 | Python-Markdown is a pure Python parser for Markdown. |
| 12 | |
| 13 | //tools/md_browser uses it to provide a local previewer for our |
| 14 | Markdown-based documentation. |
| 15 | |
| 16 | This code is not considered security critical since it is only used by |
| 17 | developer utilities. This should never be linked into chrome or any production |
| 18 | code. |
| 19 | |
| 20 | To update this, do something roughly along the lines of: |
| 21 | |
| 22 | cd .. |
| 23 | wget $URL # A newer version of the above URL |
| 24 | tar xvzf Markdown-$VERSION.tar.gz |
| 25 | cd Markdown-$VERSION |
Yu-Ping Wu | 6a8f3a2 | 2021-11-24 00:45:03 +0000 | [diff] [blame] | 26 | rm -fr setup.py setup.cfg makefile MANIFEST.in PKG-INFO Markdown.egg-info \ |
| 27 | pyproject.toml tests doc-requirements.txt docs mkdocs.yml INSTALL.md |
| 28 | cp ../README.chromium ./ |
dpranke | b08af21 | 2015-10-06 17:44:36 -0700 | [diff] [blame] | 29 | |
| 30 | # update the version numbers in README.chromium |
| 31 | |
Yu-Ping Wu | 6a8f3a2 | 2021-11-24 00:45:03 +0000 | [diff] [blame] | 32 | cd ../ |
| 33 | rm -fr markdown/ |
| 34 | mv Markdown-$VERSION/* ./ |