forked from schemaorg/schemaorg
-
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.
Added format processing of comment fields see issue (schemaorg#181)
See https://daringfireball.net/projects/markdown/syntax For links within Schema.org site use [[target]] for example [[CreativeWork]] will result in <a href="/CreativeWork">Creative Work</a>
- Loading branch information
RichardWallis
committed
Apr 4, 2016
1 parent
77909f7
commit 33388e1
Showing
43 changed files
with
6,178 additions
and
11 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
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,6 @@ | ||
"""`appengine_config` gets loaded when starting a new application instance.""" | ||
import vendor | ||
# insert `lib` as a site directory so our `main` module can load | ||
# third-party libraries, and override built-ins with newer | ||
# versions. | ||
vendor.add('lib') |
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 |
---|---|---|
@@ -0,0 +1,47 @@ | ||
Metadata-Version: 1.1 | ||
Name: Markdown | ||
Version: 2.6.6 | ||
Summary: Python implementation of Markdown. | ||
Home-page: https://pythonhosted.org/Markdown/ | ||
Author: Waylan Limberg | ||
Author-email: waylan.limberg [at] icloud.com | ||
License: BSD License | ||
Download-URL: http://pypi.python.org/packages/source/M/Markdown/Markdown-2.6.6.tar.gz | ||
Description: | ||
This is a Python implementation of John Gruber's Markdown_. | ||
It is almost completely compliant with the reference implementation, | ||
though there are a few known issues. See Features_ for information | ||
on what exactly is supported and what is not. Additional features are | ||
supported by the `Available Extensions`_. | ||
|
||
.. _Markdown: http://daringfireball.net/projects/markdown/ | ||
.. _Features: https://pythonhosted.org/Markdown/index.html#Features | ||
.. _`Available Extensions`: https://pythonhosted.org/Markdown/extensions/index.html | ||
|
||
Support | ||
======= | ||
|
||
You may ask for help and discuss various other issues on the | ||
`mailing list`_ and report bugs on the `bug tracker`_. | ||
|
||
.. _`mailing list`: http://lists.sourceforge.net/lists/listinfo/python-markdown-discuss | ||
.. _`bug tracker`: http://github.com/waylan/Python-Markdown/issues | ||
|
||
Platform: UNKNOWN | ||
Classifier: Development Status :: 5 - Production/Stable | ||
Classifier: License :: OSI Approved :: BSD License | ||
Classifier: Operating System :: OS Independent | ||
Classifier: Programming Language :: Python | ||
Classifier: Programming Language :: Python :: 2 | ||
Classifier: Programming Language :: Python :: 2.7 | ||
Classifier: Programming Language :: Python :: 3 | ||
Classifier: Programming Language :: Python :: 3.2 | ||
Classifier: Programming Language :: Python :: 3.3 | ||
Classifier: Programming Language :: Python :: 3.4 | ||
Classifier: Topic :: Communications :: Email :: Filters | ||
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content :: CGI Tools/Libraries | ||
Classifier: Topic :: Internet :: WWW/HTTP :: Site Management | ||
Classifier: Topic :: Software Development :: Documentation | ||
Classifier: Topic :: Software Development :: Libraries :: Python Modules | ||
Classifier: Topic :: Text Processing :: Filters | ||
Classifier: Topic :: Text Processing :: Markup :: HTML |
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,36 @@ | ||
setup.cfg | ||
Markdown.egg-info/PKG-INFO | ||
Markdown.egg-info/SOURCES.txt | ||
Markdown.egg-info/dependency_links.txt | ||
Markdown.egg-info/top_level.txt | ||
bin/markdown_py | ||
markdown/__init__.py | ||
markdown/__main__.py | ||
markdown/__version__.py | ||
markdown/blockparser.py | ||
markdown/blockprocessors.py | ||
markdown/inlinepatterns.py | ||
markdown/odict.py | ||
markdown/postprocessors.py | ||
markdown/preprocessors.py | ||
markdown/serializers.py | ||
markdown/treeprocessors.py | ||
markdown/util.py | ||
markdown/extensions/__init__.py | ||
markdown/extensions/abbr.py | ||
markdown/extensions/admonition.py | ||
markdown/extensions/attr_list.py | ||
markdown/extensions/codehilite.py | ||
markdown/extensions/def_list.py | ||
markdown/extensions/extra.py | ||
markdown/extensions/fenced_code.py | ||
markdown/extensions/footnotes.py | ||
markdown/extensions/headerid.py | ||
markdown/extensions/meta.py | ||
markdown/extensions/nl2br.py | ||
markdown/extensions/sane_lists.py | ||
markdown/extensions/smart_strong.py | ||
markdown/extensions/smarty.py | ||
markdown/extensions/tables.py | ||
markdown/extensions/toc.py | ||
markdown/extensions/wikilinks.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 @@ | ||
|
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,66 @@ | ||
../markdown/__init__.py | ||
../markdown/__main__.py | ||
../markdown/__version__.py | ||
../markdown/blockparser.py | ||
../markdown/blockprocessors.py | ||
../markdown/inlinepatterns.py | ||
../markdown/odict.py | ||
../markdown/postprocessors.py | ||
../markdown/preprocessors.py | ||
../markdown/serializers.py | ||
../markdown/treeprocessors.py | ||
../markdown/util.py | ||
../markdown/extensions/__init__.py | ||
../markdown/extensions/abbr.py | ||
../markdown/extensions/admonition.py | ||
../markdown/extensions/attr_list.py | ||
../markdown/extensions/codehilite.py | ||
../markdown/extensions/def_list.py | ||
../markdown/extensions/extra.py | ||
../markdown/extensions/fenced_code.py | ||
../markdown/extensions/footnotes.py | ||
../markdown/extensions/headerid.py | ||
../markdown/extensions/meta.py | ||
../markdown/extensions/nl2br.py | ||
../markdown/extensions/sane_lists.py | ||
../markdown/extensions/smart_strong.py | ||
../markdown/extensions/smarty.py | ||
../markdown/extensions/tables.py | ||
../markdown/extensions/toc.py | ||
../markdown/extensions/wikilinks.py | ||
../markdown/__init__.pyc | ||
../markdown/__main__.pyc | ||
../markdown/__version__.pyc | ||
../markdown/blockparser.pyc | ||
../markdown/blockprocessors.pyc | ||
../markdown/inlinepatterns.pyc | ||
../markdown/odict.pyc | ||
../markdown/postprocessors.pyc | ||
../markdown/preprocessors.pyc | ||
../markdown/serializers.pyc | ||
../markdown/treeprocessors.pyc | ||
../markdown/util.pyc | ||
../markdown/extensions/__init__.pyc | ||
../markdown/extensions/abbr.pyc | ||
../markdown/extensions/admonition.pyc | ||
../markdown/extensions/attr_list.pyc | ||
../markdown/extensions/codehilite.pyc | ||
../markdown/extensions/def_list.pyc | ||
../markdown/extensions/extra.pyc | ||
../markdown/extensions/fenced_code.pyc | ||
../markdown/extensions/footnotes.pyc | ||
../markdown/extensions/headerid.pyc | ||
../markdown/extensions/meta.pyc | ||
../markdown/extensions/nl2br.pyc | ||
../markdown/extensions/sane_lists.pyc | ||
../markdown/extensions/smart_strong.pyc | ||
../markdown/extensions/smarty.pyc | ||
../markdown/extensions/tables.pyc | ||
../markdown/extensions/toc.pyc | ||
../markdown/extensions/wikilinks.pyc | ||
. | ||
dependency_links.txt | ||
PKG-INFO | ||
SOURCES.txt | ||
top_level.txt | ||
../../../bin/markdown_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 @@ | ||
markdown |
Oops, something went wrong.