HomeSort by relevance Sort by last modified time
    Searched full:markdown (Results 51 - 75 of 115) sorted by null

1 23 4 5

  /external/markdown/MarkdownTest/Tests_2007/
Markdown Documentation - Syntax.text 0 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>
8 <li><a href="/projects/markdown/license" title="Pricing and License Information">License</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; yo
    [all...]
Markdown Documentation - Syntax.html 1 <h1>Markdown: Syntax</h1>
4 <li><a href="/projects/markdown/" title="Markdown Project Page">Main</a></li>
5 <li><a href="/projects/markdown/basics" title="Markdown Basics">Basics</a></li>
6 <li><a class="selected" title="Markdown Syntax Documentation">Syntax</a></li>
7 <li><a href="/projects/markdown/license" title="Pricing and License Information">License</a></li>
8 <li><a href="/projects/markdown/dingus" title="Online Markdown Web Form">Dingus</a></li>
41 <p><strong>Note:</strong> This document is itself written using Markdown; yo
    [all...]
  /external/markdown/tests/extensions-x-def_list/
markdown-syntax.txt 0 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>
8 <li><a href="/projects/markdown/license" title="Pricing and License Information">License</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; yo
    [all...]
markdown-syntax.html 1 <h1>Markdown: Syntax</h1>
3 <li><a href="/projects/markdown/" title="Markdown Project Page">Main</a></li>
4 <li><a href="/projects/markdown/basics" title="Markdown Basics">Basics</a></li>
5 <li><a class="selected" title="Markdown Syntax Documentation">Syntax</a></li>
6 <li><a href="/projects/markdown/license" title="Pricing and License Information">License</a></li>
7 <li><a href="/projects/markdown/dingus" title="Online Markdown Web Form">Dingus</a></li>
39 <p><strong>Note:</strong> This document is itself written using Markdown; yo
    [all...]
  /external/markdown/tests/markdown-test/
markdown-syntax.txt 0 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>
8 <li><a href="/projects/markdown/license" title="Pricing and License Information">License</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; yo
    [all...]
benchmark.dat 14 markdown-documentation-basics:0.690000:1806336.000000
15 markdown-syntax:3.310000:6696960.000000
markdown-syntax.html 1 <h1>Markdown: Syntax</h1>
3 <li><a href="/projects/markdown/" title="Markdown Project Page">Main</a></li>
4 <li><a href="/projects/markdown/basics" title="Markdown Basics">Basics</a></li>
5 <li><a class="selected" title="Markdown Syntax Documentation">Syntax</a></li>
6 <li><a href="/projects/markdown/license" title="Pricing and License Information">License</a></li>
7 <li><a href="/projects/markdown/dingus" title="Online Markdown Web Form">Dingus</a></li>
39 <p><strong>Note:</strong> This document is itself written using Markdown; yo
    [all...]
  /docs/source.android.com/
README 24 ### Markdown ###
25 Markdown is a very simple markup format for plain-text that converts it to
27 http://daringfireball.net/projects/markdown/syntax
33 You need the Python markdown implementation. The original Perl impl probably
37 % sudo apt-get install python-markdown
41 $ sudo easy_install Markdown
44 http://www.freewisdom.org/projects/python-markdown/Installation
50 src/ individual page content in markdown format
61 - Every .md file under src/ is an individual page in markdown format.
  /external/markdown/docs/extensions/
Meta-Data.txt 7 An extension to Python-Markdown that adds a syntax for defining meta-data about
10 way, but simply provides it as a `Meta` attribute of a markdown instance for
15 This extension has been a part of the Markdown library since 2.0.
21 of a markdown document like this:
40 document prior to any further processing by markdown.
46 instance of the Markdown class. For example, using the above document:
48 >>> md = markdown.Markdown(extensions = ['meta'])
72 various markdown extensions. The possibilities are left to the imagination of
WikiLinks.txt 7 An extension to Python-Markdown that adds [WikiLinks][]. Specifically, any
12 This extension has been included in the Markdown library since 2.0.
46 >>> html = markdown.markdown(text, ['wikilink'])
71 >>> html = markdown.markdown(text,
87 md = markdown.Markdown(
95 >>> html = markdown.markdown(text,
    [all...]
  /external/markdown/markdown/
blockparser.py 2 import markdown namespace
38 """ Parse Markdown blocks into an ElementTree object.
45 self.blockprocessors = markdown.odict.OrderedDict()
49 """ Parse a markdown document into an ElementTree.
59 self.root = markdown.etree.Element(markdown.DOC_TAG)
61 return markdown.etree.ElementTree(self.root)
64 """ Parse a chunk of markdown text and attach to given etree node.
78 """ Process blocks of markdown text and attach to given etree node.
treeprocessors.py 1 import markdown namespace
11 self.markdown = markdown_instance
21 Treeprocessors must extend markdown.Treeprocessor.
40 self.__placeholder_prefix = markdown.INLINE_PLACEHOLDER_PREFIX
41 self.__placeholder_suffix = markdown.ETX
44 self.__placeholder_re = re.compile(markdown.INLINE_PLACEHOLDER % r'([0-9]{4})')
45 self.markdown = md
50 hash = markdown.INLINE_PLACEHOLDER % id
84 * data: A line of Markdown text
90 if not isinstance(data, markdown.AtomicString)
    [all...]
inlinepatterns.py 7 that extend markdown.Pattern. Each pattern object uses a single regular
15 All of python markdown's built-in patterns subclass from Pattern,
29 that we can preempt any markdown patterns by escaping them.
44 import markdown namespace
71 if markdown.SMART_EMPHASIS:
131 # Api for Markdown to pass safe_mode into instance
134 self.markdown = markdown_instance
162 if text == markdown.INLINE_PLACEHOLDER_PREFIX:
177 el = markdown.etree.Element(self.tag)
185 return markdown.etree.Element(self.tag
    [all...]
__init__.py 2 Python Markdown
5 Python Markdown converts Markdown to HTML and can be used as a library or
10 import markdown
11 md = Markdown()
16 markdown source.txt > destination.html
18 Run "markdown --help" to see more options.
22 See <http://www.freewisdom.org/projects/python-markdown/> for more
24 Python Markdown. Read that before you try modifying this file.
32 Contact: markdown@freewisdom.or
568 def markdown(text, function
    [all...]
  /external/markdown/markdown/extensions/
def_list.py 3 Definition List Extension for Python-Markdown
6 Added parsing of Definition Lists to Python-Markdown.
22 import markdown, re namespace
23 from markdown import etree
26 class DefListProcessor(markdown.blockprocessors.BlockProcessor):
76 class DefListIndentProcessor(markdown.blockprocessors.ListIndentProcessor):
84 dd = markdown.etree.SubElement(parent, 'dd')
89 class DefListExtension(markdown.Extension):
90 """ Add definition lists to Markdown. """
rss.py 1 import markdown namespace
2 from markdown import etree
4 DEFAULT_URL = "http://www.freewisdom.org/projects/python-markdown/"
6 DEFAULT_TITLE = "Markdown in Python"
7 GENERATOR = "http://www.freewisdom.org/projects/python-markdown/markdown2rss"
44 class RssExtension (markdown.Extension):
61 class RssTreeProcessor(markdown.treeprocessors.Treeprocessor):
105 pholder = self.markdown.htmlStash.store(
  /external/markdown/docs/
writing_extensions.txt 1 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
41 Preprocessors should inherit from ``markdown.preprocessors.Preprocessor`` and
49 class MyPreprocessor(markdown.preprocessors.Preprocessor):
62 Inline Patterns implement the inline HTML element syntax for Markdown such as
64 instances of classes that inherit from ``markdown.inlinepatterns.Pattern`` or
87 class EmphasisPattern(markdown.inlinepatterns.Pattern):
89 el = markdown.etree.Element('em'
    [all...]
LICENSE 1 Copyright 2007, 2008 The Python Markdown Project (v. 1.7 and later)
19 THIS SOFTWARE IS PROVIDED BY THE PYTHON MARKDOWN PROJECT ''AS IS'' AND ANY
22 DISCLAIMED. IN NO EVENT SHALL ANY CONTRIBUTORS TO THE PYTHON MARKDOWN PROJECT
  /external/markdown/tests/extensions-x-toc/
syntax-toc.txt 8 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...]
invalid.html 3 <p>The TOC marker cannot be inside a header. This test makes sure markdown doesn't
  /external/markdown/MarkdownTest/Tests_2004/
Links-in-Headers.text-res 1 <h2><span class="markdown">A plain header</span></h2>
Markdown Documentation - Syntax.html 1 <h1>Markdown: Syntax</h1>
4 <li><a href="/projects/markdown/" title="Markdown Project Page">Main</a></li>
5 <li><a href="/projects/markdown/basics" title="Markdown Basics">Basics</a></li>
6 <li><a class="selected" title="Markdown Syntax Documentation">Syntax</a></li>
7 <li><a href="/projects/markdown/license" title="Pricing and License Information">License</a></li>
8 <li><a href="/projects/markdown/dingus" title="Online Markdown Web Form">Dingus</a></li>
41 <p><strong>Note:</strong> This document is itself written using Markdown; yo
    [all...]
Markdown Documentation - Syntax.text-out 9 <h1>Markdown: Syntax</h1>
11 <li><a href="/projects/markdown/" title=
12 "Markdown Project Page">Main</a></li>
13 <li><a href="/projects/markdown/basics" title=
14 "Markdown Basics">Basics</a></li>
16 "Markdown Syntax Documentation">Syntax</a></li>
17 <li><a href="/projects/markdown/license" title=
19 <li><a href="/projects/markdown/dingus" title=
20 "Online Markdown Web Form">Dingus</a></li>
57 Markdown; you can <a href="/projects/markdown/syntax.text">see th
    [all...]
Markdown Documentation - Syntax.text-res 9 <h1>Markdown: Syntax</h1>
11 <li><a href="/projects/markdown/" title=
12 "Markdown Project Page">Main</a></li>
13 <li><a href="/projects/markdown/basics" title=
14 "Markdown Basics">Basics</a></li>
16 "Markdown Syntax Documentation">Syntax</a></li>
17 <li><a href="/projects/markdown/license" title=
19 <li><a href="/projects/markdown/dingus" title=
20 "Online Markdown Web Form">Dingus</a></li>
57 Markdown; you can <a href="/projects/markdown/syntax.text">see th
    [all...]
  /external/markdown/
NOTICE 1 Copyright 2007, 2008 The Python Markdown Project (v. 1.7 and later)
19 THIS SOFTWARE IS PROVIDED BY THE PYTHON MARKDOWN PROJECT ''AS IS'' AND ANY
22 DISCLAIMED. IN NO EVENT SHALL ANY CONTRIBUTORS TO THE PYTHON MARKDOWN PROJECT

Completed in 352 milliseconds

1 23 4 5