/external/markdown/tests/misc/ |
headers.txt | 5 # [Markdown][5] 7 # [Markdown](http://some.link.com/) 11 # Issue #1: Markdown
|
em-around-links.txt | 3 - *[Python in Markdown](http://www.freewisdom.org/projects/python-markdown/) by some 5 - _[Python in Markdown](http://www.freewisdom.org/projects/python-markdown/) by some 7 - [_Python in Markdown_](http://www.freewisdom.org/projects/python-markdown/) by some 9 - [_Python in Markdown_](http://www.freewisdom.org/projects/python-markdown/) _by some 12 _[Python in Markdown](http://www.freewisdom.org/projects/python-markdown/) by some
|
headers.html | 4 <h1>[Markdown][5]</h1> 5 <h1><a href="http://some.link.com/">Markdown</a></h1> 7 <h1>Issue #1: Markdown</h1>
|
em-around-links.html | 4 <li><em><a href="http://www.freewisdom.org/projects/python-markdown/">Python in Markdown</a> by some 6 <li><em><a href="http://www.freewisdom.org/projects/python-markdown/">Python in Markdown</a> by some 8 <li><a href="http://www.freewisdom.org/projects/python-markdown/"><em>Python in Markdown</em></a> by some 10 <li><a href="http://www.freewisdom.org/projects/python-markdown/"><em>Python in Markdown</em></a> <em>by some 14 <p><em><a href="http://www.freewisdom.org/projects/python-markdown/">Python in Markdown</a> by som [all...] |
mismatched-tags.html | 8 <p><em>Compatible with PHP Markdown Extra 1.2.2 and Markdown.pl1.0.2b8:</em></p>
|
mismatched-tags.txt | 5 <p>And this output</p> *Compatible with PHP Markdown Extra 1.2.2 and Markdown.pl1.0.2b8:*
|
/external/markdown/ |
MANIFEST.in | 2 recursive-include markdown *.py 4 prune markdown/extensions/legacy.py
|
setup.py | 10 """ Customized install_scripts. Create markdown.bat for win32. """ 17 script_path = os.path.join(script_dir, 'markdown') 19 bat_path = os.path.join(self.install_dir, 'markdown.bat') 28 name = 'Markdown', 30 url = 'http://www.freewisdom.org/projects/python-markdown', 31 download_url = 'http://pypi.python.org/packages/source/M/Markdown/Markdown-%s.tar.gz' % version, 32 description = 'Python implementation of Markdown.', 38 packages = ['markdown', 'markdown.extensions'] [all...] |
/external/markdown/docs/extensions/ |
footnotes.txt | 7 An extension to Python-Markdown that adds footnote syntax. This extension has 8 been included with Python-Markdown since 1.7 and should be available to anyone 9 who has a typical install of Python-Markdown. 14 Python-Markdown's Footnote syntax follows the generally accepted syntax of the 15 Markdown community at large and almost exactly matches [PHP Markdown Extra][]'s 19 [PHP Markdown Extra]: http://michelf.com/projects/php-markdown/extra/#footnotes 30 blockquotes and most any other markdown syntax. The additional line simply 47 markdown document (See how to configure this text below) [all...] |
Abbreviations.txt | 7 The Markdown Abbreviation Extension adds the ability to define abbreviations. 10 The Abbreviation extension is included in the standard Markdown library. 16 [PHP Markdown Extra][php]. 18 [php]: http://www.michelf.com/projects/php-markdown/extra/#abbr 38 >>> import markdown 44 >>> html = markdown.markdown(text, ['abbr']) 48 >>> html = markdown.markdown(text, ['abbr', 'footnotes']) 50 Abbreviations can also be called from the command line using Markdown's `-x` [all...] |
extra.txt | 1 Python-Markdown Extra 7 A compilation of various Python-Markdown extensions that (mostly) imitates 8 [PHP Markdown Extra](http://michelf.com/projects/php-markdown/extra/). 20 supported extensions are included in the standard Markdown library. 27 >>> import markdown 28 >>> html = markdown.markdown(text, ['extra']) 31 available for import, Markdown will simply continue without that 33 you may set Python-Markdown's logger level to "WARN" [all...] |
Definition_Lists.txt | 8 Markdown documents. 10 This extension is included in the standard Markdown library. 16 [PHP Markdown Extra][php]. 18 [php]: http://www.michelf.com/projects/php-markdown/extra/#def-list 46 >>> html = markdown.markdown(text, ['def_list']) 50 >>> html = markdown.markdown(text, ['def_list', 'footnotes']) 52 The extension can also be called from the command line using Markdown's `-x` 55 markdown.py -x def_list source.txt > output.htm [all...] |
RSS.txt | 7 An extension to Python-Markdown that outputs a markdown document as RSS. This 8 extension has been included with Python-Markdown since 1.7 and should be 9 available to anyone who has a typical install of Python-Markdown. 16 >>> import markdown 17 >>> text = "Some markdown document." 18 >>> rss = markdown.markdown(text, ['rss']) 33 >>> rss = markdown.markdown(text, extensions = [all...] |
ImageLinks.txt | 7 ImageLinks is a Python-Markdown extension that provides a mechanism for 8 defining mini-photo galleries within a markdown document. 10 This extension is part of the Markdown library since 2.0.
|
Tables.txt | 7 The Table Extension adds the ability to create tables in Markdown documents. 9 This extension is included in the standard Markdown library. 14 Tables are defined using the syntax established in [PHP Markdown Extra][php]. 16 [php]: http://www.michelf.com/projects/php-markdown/extra/#table 52 >>> html = markdown.markdown(text, ['tables'])
|
/external/markdown/bin/ |
markdown | 3 Python Markdown, the Command Line Script 6 This is the command line script for Python Markdown. 10 markdown source.txt > destination.html 12 Run "markdown --help" to see more options. 14 See markdown/__init__.py for information on using Python Markdown as a module. 22 Contact: markdown@freewisdom.org 24 Copyright 2007, 2008 The Python Markdown Project (v. 1.7 and later) 33 from markdown import COMMAND_LINE_LOGGING_LEVEL 34 from markdown import commandlin [all...] |
/external/markdown/docs/ |
README | 1 [Python-Markdown][] 4 This is a Python implementation of John Gruber's [Markdown][]. 10 [Python-Markdown]: http://freewisdom.org/projects/python-markdown 11 [Markdown]: http://daringfireball.net/projects/markdown/ 12 [Features]: http://www.freewisdom.org/projects/python-markdown/Features 13 [Available Extensions]: http://www.freewisdom.org/projects/python-markdown/Available_Extensions 21 <http://freewisdom.org/projects/python-markdown>. 28 [mailing list]: http://lists.sourceforge.net/lists/listinfo/python-markdown-discus [all...] |
README.html | 1 <h1><a href="http://freewisdom.org/projects/python-markdown">Python-Markdown</a></h1> 2 <p>This is a Python implementation of John Gruber's <a href="http://daringfireball.net/projects/markdown/">Markdown</a>. 4 though there are a few known issues. See <a href="http://www.freewisdom.org/projects/python-markdown/Features">Features</a> for information 6 supported by the <a href="http://www.freewisdom.org/projects/python-markdown/Available_Extensions">Available Extensions</a>.</p> 10 <a href="http://freewisdom.org/projects/python-markdown">http://freewisdom.org/projects/python-markdown</a>.</p> 12 <p>You may ask for help and discuss various other issues on the <a href="http://lists.sourceforge.net/lists/listinfo/python-markdown-discuss">mailing list</a> and report bugs on the <a href="http://www.freewisdom.org/projects/python-markdown/Tickets">bug tracker</a>.</p [all...] |
using_as_module.txt | 1 Using Markdown as Python Library 4 First and foremost, Python-Markdown is intended to be a python library module 5 used by various projects to convert Markdown syntax into HTML. 10 To use markdown as a module: 12 import markdown 13 html = markdown.markdown(your_text_string) 18 Note that ``markdown()`` expects **Unicode** as input (although a simple ASCII 25 html = markdown.markdown(text, extensions [all...] |
INSTALL | 1 Installing Python-Markdown 7 Python-Markdown requires the ElementTree module to be installed. In Python2.5+ 25 The simplest way to install Python-Markdown is by using SetupTools. As and 29 easy_install Markdown 37 <http://pypi.python.org/pypi/Markdown> 41 If you prefer to manually install Python-Markdown in Windows, download the 56 wget http://pypi.python.org/packages/source/M/Markdown/Markdown-2.0.tar.gz 57 tar xvzf Markdown-2.0.tar.gz 58 cd markdown-2.0 [all...] |
/external/markdown/markdown/extensions/ |
extra.py | 3 Python-Markdown Extra Extension 6 A compilation of various Python-Markdown extensions that imitates 7 [PHP Markdown Extra](http://michelf.com/projects/php-markdown/extra/). 12 initiating Markdown. See the documentation for each individual 16 available for import, Markdown will issue a warning and simply continue 20 Python-Markdown that are not included here in Extra. Those extensions 21 are not part of PHP Markdown Extra, and therefore, not part of 22 Python-Markdown Extra. If you really would like Extra to include 26 when you upgrade to any future version of Python-Markdown 30 import markdown namespace [all...] |
fenced_code.py | 4 Fenced Code Extension for Python Markdown 7 This extension adds Fenced Code Blocks to Python-Markdown. 9 >>> import markdown 17 >>> html = markdown.markdown(text, extensions=['fenced_code']) 23 >>> markdown.markdown(text, extensions=['fenced_code'], safe_mode='replace') 34 >>> markdown.markdown(text, extensions=['fenced_code']) 47 >>> markdown.markdown(text, extensions=['fenced_code'] 63 import markdown, re namespace [all...] |
meta.py | 4 Meta Data Extension for Python-Markdown 7 This extension adds Meta Data handling to markdown. 11 >>> import markdown 19 >>> md = markdown.Markdown(['meta']) 25 Make sure text without Meta Data still works (markdown < 1.6b returns a <p>). 28 >>> md = markdown.Markdown(['meta']) 36 Project website: <http://www.freewisdom.org/project/python-markdown/Meta-Data> 37 Contact: markdown@freewisdom.or 43 import markdown, re namespace [all...] |
wikilinks.py | 4 WikiLinks Extension for Python-Markdown 7 Converts [[WikiLinks]] to relative links. Requires Python-Markdown 2.0+ 11 >>> import markdown 13 >>> html = markdown.markdown(text, ['wikilinks']) 19 >>> markdown.markdown('[[ foo bar_baz ]]', ['wikilinks']) 21 >>> markdown.markdown('foo [[ ]] bar', ['wikilinks']) 26 >>> markdown.markdown(text, 81 import markdown namespace [all...] |
/external/markdown/markdown/ |
postprocessors.py | 5 Markdown also allows post-processors, which are similar to preprocessors in 12 import markdown namespace 17 self.markdown = markdown_instance 26 Postprocessors must extend markdown.Postprocessor. 45 for i in range(self.markdown.htmlStash.html_counter): 46 html, safe = self.markdown.htmlStash.rawHtmlBlocks[i] 47 if self.markdown.safeMode and not safe: 48 if str(self.markdown.safeMode).lower() == 'escape': 50 elif str(self.markdown.safeMode).lower() == 'remove': 53 html = markdown.HTML_REMOVED_TEX [all...] |