summaryrefslogtreecommitdiff
path: root/chromium/third_party/Python-Markdown/README.chromium
blob: d3b165342aab130badf2ba10dcbd2fb974630180 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
Name: Python-Markdown
URL: https://pypi.python.org/packages/source/M/Markdown/Markdown-2.6.2.tar.gz#md5=256d19afcc564dc4ce4c229bb762f7ae
Version: 2.6.2
Revision: None
Security Critical: no
License: BSD
License File: NOT_SHIPPED

Description:

Python-Markdown is a pure Python parser for Markdown.

//tools/md_browser uses it to provide a local previewer for our
Markdown-based documentation.

This code is not considered security critical since it is only used by
developer utilities. This should never be linked into chrome or any production
code.

To update this, do something roughly along the lines of:

    cd ..
    wget $URL # A newer version of the above URL
    tar xvzf Markdown-$VERSION.tar.gz
    cd Markdown-$VERSION
    rm -fr bin docs INSTALL.md makefile MANIFEST PKG-INFO \
           run-tests.py setup.py tests tox.ini
    cp ../Python-Markdown/README.chromium .

    # update the version numbers in README.chromium

    cd ..
    rm -fr Python-Markdown
    mv Markdown-$VERSION Python-Markdown