Skip to content
This repository was archived by the owner on Mar 26, 2022. It is now read-only.

Commit 9b335b3

Browse files
committed
rename to commonmark.py in a few places
1 parent e5d2439 commit 9b335b3

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

CHANGELOG.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,12 +39,12 @@
3939
- Contributions from @funkybob and @hyperknot
4040

4141
## 0.6.3 (2016-01-19)
42-
- CommonMark-py now supports Python 2.6.
42+
- commonmark.py now supports Python 2.6.
4343
- The CommonMark spec has been updated to 0.24.
4444

4545
## 0.6.2 (2016-01-08)
4646
- Fixed a UnicodeEncodeError when parsing unicode entities on
47-
Python 2. As a result, CommonMark-py now relies on the "future"
47+
Python 2. As a result, commonmark.py now relies on the "future"
4848
module in Python 2, as documented in setup.py. This can be found on
4949
pypi: https://pypi.python.org/pypi/future
5050

@@ -53,7 +53,7 @@
5353
was empty.
5454

5555
## 0.6.0 (2016-01-04)
56-
- CommonMark-py now complies to the 0.23 CommonMark spec
56+
- commonmark.py now complies to the 0.23 CommonMark spec
5757
http://spec.commonmark.org/0.23/
5858
- The ExtensionBlock has been removed in this release, since
5959
the parser has been rewritten.

README.rst

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
1-
CommonMark-py
1+
commonmark.py
22
=============
33

4-
CommonMark-py is a pure Python port of `jgm <https://github.com/jgm>`__'s
4+
commonmark.py is a pure Python port of `jgm <https://github.com/jgm>`__'s
55
`commonmark.js <https://github.com/jgm/commonmark.js>`__, a
66
Markdown parser and renderer for the
77
`CommonMark <http://commonmark.org>`__ specification, using only native
88
modules. Once both this project and the CommonMark specification are
99
stable we will release the first ``1.0`` version and attempt to keep up
1010
to date with changes in ``commonmark.js``.
1111

12-
CommonMark-py is tested against the CommonMark spec with Python versions
12+
commonmark.py is tested against the CommonMark spec with Python versions
1313
2.7, 3.4, 3.5, 3.6, and 3.7.
1414

1515
**Current version:** 0.9.0
@@ -83,7 +83,7 @@ a pull request adding your test to the existing test suite.
8383
Tests
8484
-----
8585

86-
To work on CommonMark-py, you will need to be able to run the test suite to
86+
To work on commonmark.py, you will need to be able to run the test suite to
8787
make sure your changes don't break anything. To run the tests, you can do
8888
something like this:
8989

@@ -106,7 +106,7 @@ tracing.
106106
$ ./venv/bin/python commonmark/tests/run_spec_tests.py -h
107107
usage: run_spec_tests.py [-h] [-t T] [-p] [-f] [-i] [-d] [-np] [-s]
108108

109-
script to run the CommonMark specification tests against the CommonMark-py
109+
script to run the CommonMark specification tests against the commonmark.py
110110
parser.
111111

112112
optional arguments:

0 commit comments

Comments
 (0)