/external/markdown/tests/markdown-test/ |
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...] |
markdown-documentation-basics.html | 1 <h1>Markdown: Basics</h1> 3 <li><a href="/projects/markdown/" title="Markdown Project Page">Main</a></li> 4 <li><a class="selected" title="Markdown Basics">Basics</a></li> 5 <li><a href="/projects/markdown/syntax" 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> 10 <h2>Getting the Gist of Markdown's Formatting Syntax</h2 [all...] |
/ndk/docs/tools/ |
README | 3 ndk-markdown-substitutions.py: 4 A filter that takes Markdown text as input, and produces Markdown 63 Apart from that, the input format of NDK .text file is regular Markdown 64 for now. In the future, using the Python Markdown Extensions API might
|
/external/markdown/markdown/ |
__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...] |
preprocessors.py | 11 import markdown namespace 13 HTML_PLACEHOLDER_PREFIX = markdown.STX+"wzxhzdk:" 14 HTML_PLACEHOLDER = HTML_PLACEHOLDER_PREFIX + "%d" + markdown.ETX 19 self.markdown = markdown_instance 29 Preprocessors must extend markdown.Preprocessor. 138 and markdown.isBlockLevel(left_tag): 142 if not (markdown.isBlockLevel(left_tag) \ 154 self.markdown.htmlStash.store(block.strip())) 159 if markdown.isBlockLevel(left_tag) or left_tag == "--" \ 165 self.markdown.htmlStash.store(block.strip()) [all...] |
commandline.py | 6 Markdown is called from the command line. 9 import markdown namespace 14 EXECUTABLE_NAME_FOR_USAGE = "python markdown.py" 88 """Run Markdown from the command line.""" 93 if logging_level: logging.getLogger('MARKDOWN').setLevel(logging_level) 96 markdown.markdownFromFile(**options)
|
blockprocessors.py | 2 CORE MARKDOWN BLOCKPARSER 5 This parser handles basic parsing of Markdown blocks. It doesn't concern itself 11 as they need to alter how markdown blocks are parsed. 16 import markdown namespace 44 if line.startswith(' '*markdown.TAB_LENGTH): 45 newtext.append(line[markdown.TAB_LENGTH:]) 56 if lines[i].startswith(' '*markdown.TAB_LENGTH*level): 57 lines[i] = lines[i][markdown.TAB_LENGTH*level:] 116 INDENT_RE = re.compile(r'^(([ ]{%s})+)'% markdown.TAB_LENGTH) 121 return block.startswith(' '*markdown.TAB_LENGTH) and [all...] |
/external/markdown/MarkdownTest/Tests_2004/ |
Markdown Documentation - Basics.html | 1 <h1>Markdown: Basics</h1> 4 <li><a href="/projects/markdown/" title="Markdown Project Page">Main</a></li> 5 <li><a class="selected" title="Markdown Basics">Basics</a></li> 6 <li><a href="/projects/markdown/syntax" 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> 11 <h2>Getting the Gist of Markdown's Formatting Syntax</h2 [all...] |
Markdown Documentation - Basics.text-out | 9 <h1>Markdown: Basics</h1> 11 <li><a href="/projects/markdown/" title= 12 "Markdown Project Page">Main</a></li> 13 <li><a class="selected" title="Markdown Basics">Basics</a></li> 14 <li><a href="/projects/markdown/syntax" title= 15 "Markdown Syntax Documentation">Syntax</a></li> 16 <li><a href="/projects/markdown/license" title= 18 <li><a href="/projects/markdown/dingus" title= 19 "Online Markdown Web Form">Dingus</a></li> 21 <h2>Getting the Gist of Markdown's Formatting Syntax</h2 [all...] |
Markdown Documentation - Basics.text-res | 9 <h1>Markdown: Basics</h1> 11 <li><a href="/projects/markdown/" title= 12 "Markdown Project Page">Main</a></li> 13 <li><a class="selected" title="Markdown Basics">Basics</a></li> 14 <li><a href="/projects/markdown/syntax" title= 15 "Markdown Syntax Documentation">Syntax</a></li> 16 <li><a href="/projects/markdown/license" title= 18 <li><a href="/projects/markdown/dingus" title= 19 "Online Markdown Web Form">Dingus</a></li> 21 <h2>Getting the Gist of Markdown's Formatting Syntax</h2 [all...] |
Hard-wrapped paragraphs with list-like lines.text-out | 9 <p>In Markdown 1.0.0 and earlier. Version 8. This line turns into a
|
Hard-wrapped paragraphs with list-like lines.text-res | 9 <p>In Markdown 1.0.0 and earlier. Version 8. This line turns into a
|
/external/markdown/MarkdownTest/Tests_2007/ |
Markdown Documentation - Basics.html | 1 <h1>Markdown: Basics</h1> 4 <li><a href="/projects/markdown/" title="Markdown Project Page">Main</a></li> 5 <li><a class="selected" title="Markdown Basics">Basics</a></li> 6 <li><a href="/projects/markdown/syntax" 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> 11 <h2>Getting the Gist of Markdown's Formatting Syntax</h2 [all...] |
/external/markdown/markdown/extensions/ |
tables.py | 3 Tables Extension for Python-Markdown 6 Added parsing of tables to Python-Markdown. 17 import markdown namespace 18 from markdown import etree 21 class TableProcessor(markdown.blockprocessors.BlockProcessor): 86 class TableExtension(markdown.Extension): 87 """ Add tables to Markdown. """
|
codehilite.py | 4 CodeHilite Extension for Python-Markdown 7 Adds code/syntax highlighting to standard Python-Markdown code blocks. 11 Project website: <http://www.freewisdom.org/project/python-markdown/CodeHilite> 12 Contact: markdown@freewisdom.org 18 * [Markdown 2.0+](http://www.freewisdom.org/projects/python-markdown/) 23 import markdown namespace 28 TAB_LENGTH = markdown.TAB_LENGTH 177 # ------------------ The Markdown Extension ------------------------------- 178 class HiliteTreeprocessor(markdown.treeprocessors.Treeprocessor) [all...] |
footnotes.py | 4 This section adds footnote handling to markdown. It can be used as 5 an example for extending python-markdown with relatively complex 8 module. Not that all markdown classes above are ignorant about 10 then added to the markdown instance at the run time. 26 import re, markdown namespace 27 from markdown import etree 34 class FootnoteExtension(markdown.Extension): 56 """ Add pieces to Markdown. """ 77 self.footnotes = markdown.odict.OrderedDict() 147 class FootnotePreprocessor(markdown.preprocessors.Preprocessor) [all...] |
toc.py | 2 Table of Contents Extension for Python-Markdown 8 * [Markdown 2.0+](http://www.freewisdom.org/projects/python-markdown/) 11 import markdown namespace 12 from markdown import etree 15 class TocTreeprocessor(markdown.treeprocessors.Treeprocessor): 104 class TocExtension(markdown.Extension):
|
imagelinks.py | 21 import re, markdown namespace 30 class ImageLinksExtension(markdown.Extension): 37 class ImageLinkPreprocessor(markdown.preprocessors.Preprocessor):
|
/external/markdown/tests/extensions-x-toc/ |
syntax-toc.html | 34 <p>Markdown is intended to be as easy-to-read and easy-to-write as is feasible.</p> 35 <p>Readability, however, is emphasized above all else. A Markdown-formatted 38 Markdown's syntax has been influenced by several existing text-to-HTML 41 inspiration for Markdown's syntax is the format of plain text email.</p> 42 <p>To this end, Markdown's syntax is comprised entirely of punctuation 45 look like *emphasis*. Markdown lists look like, well, lists. Even 49 <p>Markdown's syntax is intended for one purpose: to be used as a 51 <p>Markdown is not a replacement for HTML, or even close to it. Its 55 insert. The idea for Markdown is to make it easy to read, write, and 56 edit prose. HTML is a <em>publishing</em> format; Markdown is a <em>writing</em [all...] |
/external/libvpx/libvpx/examples/includes/PHP-Markdown-Extra-1.2.3/ |
License.text | 1 PHP Markdown & Extra 6 Based on Markdown 22 * Neither the name "Markdown" nor the names of its contributors may
|
/external/libvpx/libvpx/examples/ |
gen_example_doxy.php | 15 /* This script converts markdown to doxygen htmlonly syntax, nesting the 26 if(!include_once('includes/PHP-Markdown-Extra-1.2.3/markdown.php')) 27 die("Cannot load Markdown transformer.\n"); 51 // Wrap block-style <math> elements in <p>, since Markdown doesn't. 55 $page_body = Markdown($page_body); 59 // Markdown has already done this. 109 * Markdown encodes '&', '<' and '>' in detected code
|
/external/markdown/MarkdownTest/ |
MarkdownTest.pl | 4 # MarkdownTester -- Run tests for Markdown implementations 7 # <http://daringfireball.net/projects/markdown/> 20 my $script = "./Markdown.pl"; 122 Specify the path to the Markdown script to test. Defaults to 123 "./Markdown.pl". Example: 125 ./MarkdownTest.pl --script ./PHP-Markdown/php-markdown
|
/external/markdown/tests/misc/ |
some-test.html | 25 <p>Markdown</p>
|
some-test.txt | 22 Markdown
|
/external/markdown/docs/extensions/ |
Tables_of_Contents.txt | 7 Adds a Table of Contents to a Markdown document. 9 This extension is included with the Markdown library since version 2.0.
|