forked from zopieux/py-gfm
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
meta: setup.py, add AUTHORS, add .gitignore, improve README, fix LICENSE
- Loading branch information
Showing
6 changed files
with
53 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
__pycache__/ | ||
*.py[cod] | ||
*$py.class |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,4 +14,3 @@ install: | |
- pip install . | ||
|
||
script: python test.py | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
In 2012, this project was initiated by the Dart project team, from Google. | ||
It is now archived at https://github.com/googlearchive/py-gfm | ||
|
||
In March 2016, the project maintainer-ship was transferred to Alexandre | ||
Macabies a.k.a zopieux. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,42 @@ | ||
# GitHub-Flavored markdown for Python | ||
|
||
This is an implementation of [GitHub-Flavored Markdown][gfm] written as an | ||
extension to the Python [Markdown][md] library. It aims for maximal | ||
compatibility with GitHub's rendering. | ||
|
||
|
||
## Supported features | ||
|
||
- Fenced code blocks | ||
- Literal line breaks | ||
- Tables | ||
- Hyperlink parsing (`http`, `https`, `ftp`, `email` and `www` subdomains) | ||
- Code highlighting (dummy, no actual syntactic coloration as-is) | ||
- Mixed-style lists with no separation | ||
- Links and images with whitespace | ||
- Strikethrough | ||
- Task lists | ||
|
||
|
||
## Unsupported features | ||
|
||
This implementation does not support all of GFM features. | ||
|
||
### Unsupported by design | ||
|
||
- Link to commits, issues, pull requests and user profiles: this is | ||
application specific. Feel free to subclass the provided classes to | ||
implement your own logic. | ||
|
||
### Unsupported, but planned | ||
|
||
- Horizontal rules | ||
- Emojis | ||
|
||
|
||
## License | ||
|
||
BSD-style. See [LICENSE](/LICENSE). | ||
|
||
[gfm]: http://github.github.com/github-flavored-markdown/ | ||
[md]: http://packages.python.org/Markdown/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,18 +3,20 @@ | |
setup( | ||
name='py-gfm', | ||
version='0.1.2', | ||
description='An implementation of Github-Flavored Markdown written as an extension to the Python Markdown library.', | ||
author='Dart Team', | ||
description='An implementation of Github-Flavored Markdown written as an ' | ||
'extension to the Python Markdown library.', | ||
author='Dart Team, Alexandre Macabies', | ||
author_email='[email protected]', | ||
url='https://github.com/dart-lang/py-gfm', | ||
download_url='https://github.com/dart-lang/py-gfm/tarball/0.1.2', | ||
url='https://github.com/zopieux/py-gfm', | ||
download_url='https://codeload.github.com/Zopieux/py-gfm/tar.gz/0.1.2', | ||
packages=find_packages(), | ||
include_package_data = True, | ||
install_requires = ['setuptools', 'markdown'], | ||
include_package_data=True, | ||
install_requires=['setuptools', 'markdown'], | ||
classifiers=[ | ||
'Environment :: Web Environment', | ||
'Intended Audience :: Developers', | ||
'Operating System :: OS Independent', | ||
'Programming Language :: Python' | ||
'Topic :: Text Processing :: Markup', | ||
] | ||
) |