Home
last modified time | relevance | path

Searched refs:Markdown (Results 1 – 25 of 69) sorted by relevance

123

/external/markdown/docs/extensions/
Dextra.txt1 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.
31 available for import, Markdown will simply continue without that
33 you may set Python-Markdown's logger level to "WARN".
36 Python-Markdown that are not included here in Extra. Those extensions
37 are not part of PHP Markdown Extra, and therefore, not part of
38 Python-Markdown Extra. If you really would like Extra to include
43 version of Python-Markdown.
Dfootnotes.txt7 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
DHTML_Tidy.txt4 Runs [HTML Tidy][] on the output of Python-Markdown using the [uTidylib][]
7 This extension is available in the standard Markdown library since version 2.0.
23 passed on to Markdown (such as "output_format"). Unlike Markdown, this extension
24 will also treat raw HTML no different than that output by Markdown. In other
Dindex.txt8 officially supported by the Python-Markdown developers. Any documentation is
10 have a typical install of Python-Markdown, these extensions are already
31 These extensions have not yet been included in any official Python-Markdown
34 by the Python-Markdown developers and the official documentation is maintained
DDefinition_Lists.txt8 Markdown documents.
10 This extension is included in the standard Markdown library.
16 [PHP Markdown Extra][php].
52 The extension can also be called from the command line using Markdown's `-x`
DAbbreviations.txt7 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].
50 Abbreviations can also be called from the command line using Markdown's `-x`
DTables.txt7 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].
DRSS.txt7 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.
DHeaderId.txt7 An extension to Python-Markdown that adds an 'id' attribute to HTML header
10 This extension is included in the standard Markdown library.
15 The basic syntax follows [PHP Markdown Extra][]'s implementation:
17 [PHP Markdown Extra]: http://michelf.com/projects/php-markdown/extra/#header-id
/external/markdown/docs/
DINSTALL1 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
66 Python-Markdown is maintained in a Git repository on Gitorious.org. To
67 get a copy of Python-Markdown from the repository do the following from the
Dusing_as_module.txt1 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.
35 If you want to pass more options, you can create an instance of the ``Markdown``
39 md = markdown.Markdown(
49 md = markdown.Markdown()
56 While the Markdown class is only intended to work with Unicode text, some
60 The ``Markdown`` class has the method ``convertFile`` which reads in a file and
63 md = markdown.Markdown()
102 If you are using Markdown on a web system which will transform text provided
[all …]
Drelease-2.0.txt1 Python-Markdown 2.0 Release Notes
4 We are happy to release Python-Markdown 2.0, which has been over a year in the
7 extensions to the distribution (including an extension that mimics PHP Markdown
11 Python-Markdown supports Python versions 2.3, 2.4, 2.5, and 2.6. We've even
17 While Python-Markdown has experienced numerous internal changes, those changes
29 than lists. Any code adding processors and/or patterns into Python-Markdown
34 What's New in Python-Markdown 2.0
37 Thanks to the work of Artem Yunusov as part of GSoC 2008, Python-Markdown uses
43 which has resolved many inconsistencies in Python-Markdown's parsing of the
50 Python-Markdown now parses markdown source text more closely to the other
DREADME1 [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/
Dwriting_extensions.txt1 Writing Extensions for Python-Markdown
7 Python-Markdown includes an API for extension writers to plug their own
28 * [Integrating your code into Markdown][]
37 Preprocessors munge the source text before it is passed into the Markdown
62 Inline Patterns implement the inline HTML element syntax for Markdown such as
93 As discussed in [Integrating Your Code Into Markdown][], an instance of this
94 class will need to be provided to Markdown. That instance would be created
103 a more sophisticated emphasis pattern already exists in Markdown). The fact is,
106 Therefore, Markdown provides a number of generic pattern classes that can
126 There may be other Pattern classes in the Markdown source that you could extend
[all …]
/external/markdown/tests/markdown-test/
Dmarkdown-syntax.txt1 Markdown: Syntax
5 <li><a href="/projects/markdown/" title="Markdown Project Page">Main</a></li>
6 <li><a href="/projects/markdown/basics" title="Markdown Basics">Basics</a></li>
7 <li><a class="selected" title="Markdown Syntax Documentation">Syntax</a></li>
9 <li><a href="/projects/markdown/dingus" title="Online Markdown Web Form">Dingus</a></li>
34 **Note:** This document is itself written using Markdown; you
45 Markdown is intended to be as easy-to-read and easy-to-write as is feasible.
47 Readability, however, is emphasized above all else. A Markdown-formatted
50 Markdown's syntax has been influenced by several existing text-to-HTML
53 inspiration for Markdown's syntax is the format of plain text email.
[all …]
Dmarkdown-documentation-basics.txt1 Markdown: Basics
5 <li><a href="/projects/markdown/" title="Markdown Project Page">Main</a></li>
6 <li><a class="selected" title="Markdown Basics">Basics</a></li>
7 <li><a href="/projects/markdown/syntax" title="Markdown Syntax Documentation">Syntax</a></li>
9 <li><a href="/projects/markdown/dingus" title="Online Markdown Web Form">Dingus</a></li>
13 Getting the Gist of Markdown's Formatting Syntax
16 This page offers a brief overview of what it's like to use Markdown.
18 every feature, but Markdown should be very easy to pick up simply by
21 HTML output produced by Markdown.
23 It's also helpful to simply try Markdown out; the [Dingus] [d] is a
[all …]
/external/markdown/MarkdownTest/Tests_2007/
DMarkdown Documentation - Syntax.text1 Markdown: Syntax
5 <li><a href="/projects/markdown/" title="Markdown Project Page">Main</a></li>
6 <li><a href="/projects/markdown/basics" title="Markdown Basics">Basics</a></li>
7 <li><a class="selected" title="Markdown Syntax Documentation">Syntax</a></li>
9 <li><a href="/projects/markdown/dingus" title="Online Markdown Web Form">Dingus</a></li>
34 **Note:** This document is itself written using Markdown; you
45 Markdown is intended to be as easy-to-read and easy-to-write as is feasible.
47 Readability, however, is emphasized above all else. A Markdown-formatted
50 Markdown's syntax has been influenced by several existing text-to-HTML
53 inspiration for Markdown's syntax is the format of plain text email.
[all …]
DMarkdown Documentation - Basics.text1 Markdown: Basics
5 <li><a href="/projects/markdown/" title="Markdown Project Page">Main</a></li>
6 <li><a class="selected" title="Markdown Basics">Basics</a></li>
7 <li><a href="/projects/markdown/syntax" title="Markdown Syntax Documentation">Syntax</a></li>
9 <li><a href="/projects/markdown/dingus" title="Online Markdown Web Form">Dingus</a></li>
13 Getting the Gist of Markdown's Formatting Syntax
16 This page offers a brief overview of what it's like to use Markdown.
18 every feature, but Markdown should be very easy to pick up simply by
21 HTML output produced by Markdown.
23 It's also helpful to simply try Markdown out; the [Dingus] [d] is a
[all …]
/external/markdown/tests/extensions-x-def_list/
Dmarkdown-syntax.txt1 Markdown: Syntax
5 <li><a href="/projects/markdown/" title="Markdown Project Page">Main</a></li>
6 <li><a href="/projects/markdown/basics" title="Markdown Basics">Basics</a></li>
7 <li><a class="selected" title="Markdown Syntax Documentation">Syntax</a></li>
9 <li><a href="/projects/markdown/dingus" title="Online Markdown Web Form">Dingus</a></li>
34 **Note:** This document is itself written using Markdown; you
45 Markdown is intended to be as easy-to-read and easy-to-write as is feasible.
47 Readability, however, is emphasized above all else. A Markdown-formatted
50 Markdown's syntax has been influenced by several existing text-to-HTML
53 inspiration for Markdown's syntax is the format of plain text email.
[all …]
/external/markdown/MarkdownTest/Tests_2004/
DMarkdown Documentation - Syntax.text1 Markdown: Syntax
5 <li><a href="/projects/markdown/" title="Markdown Project Page">Main</a></li>
6 <li><a href="/projects/markdown/basics" title="Markdown Basics">Basics</a></li>
7 <li><a class="selected" title="Markdown Syntax Documentation">Syntax</a></li>
9 <li><a href="/projects/markdown/dingus" title="Online Markdown Web Form">Dingus</a></li>
34 **Note:** This document is itself written using Markdown; you
45 Markdown is intended to be as easy-to-read and easy-to-write as is feasible.
47 Readability, however, is emphasized above all else. A Markdown-formatted
50 Markdown's syntax has been influenced by several existing text-to-HTML
53 inspiration for Markdown's syntax is the format of plain text email.
[all …]
DMarkdown Documentation - Basics.text1 Markdown: Basics
5 <li><a href="/projects/markdown/" title="Markdown Project Page">Main</a></li>
6 <li><a class="selected" title="Markdown Basics">Basics</a></li>
7 <li><a href="/projects/markdown/syntax" title="Markdown Syntax Documentation">Syntax</a></li>
9 <li><a href="/projects/markdown/dingus" title="Online Markdown Web Form">Dingus</a></li>
13 Getting the Gist of Markdown's Formatting Syntax
16 This page offers a brief overview of what it's like to use Markdown.
18 every feature, but Markdown should be very easy to pick up simply by
21 HTML output produced by Markdown.
23 It's also helpful to simply try Markdown out; the [Dingus] [d] is a
[all …]
/external/markdown/tests/extensions-x-toc/
Dsyntax-toc.txt8 Markdown is intended to be as easy-to-read and easy-to-write as is feasible.
10 Readability, however, is emphasized above all else. A Markdown-formatted
13 Markdown's syntax has been influenced by several existing text-to-HTML
16 inspiration for Markdown's syntax is the format of plain text email.
25 To this end, Markdown's syntax is comprised entirely of punctuation
28 look like \*emphasis\*. Markdown lists look like, well, lists. Even
36 Markdown's syntax is intended for one purpose: to be used as a
39 Markdown is not a replacement for HTML, or even close to it. Its
43 insert. The idea for Markdown is to make it easy to read, write, and
44 edit prose. HTML is a *publishing* format; Markdown is a *writing*
[all …]
/external/markdown/tests/misc/
Dheaders.txt5 # [Markdown][5]
7 # [Markdown](http://some.link.com/)
11 # Issue #1: Markdown
Dem-around-links.txt3 - *[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
12 _[Python in Markdown](http://www.freewisdom.org/projects/python-markdown/) by some
/external/markdown/
DREADME.version1 URL: https://pypi.python.org/packages/source/M/Markdown/Markdown-2.0.3.tar.gz#md5=751e8055be2433dfd…

123