Searched defs:input (Results 26 - 50 of 562) sorted by relevance

1234567891011>>

/openjdk9/nashorn/test/script/markdown/
H A Dordered-list-same-number.js31 var input = "\n 1. Red\n 1. Green\n 1. Blue"; variable
H A Durl-with-parenthesis.js31 var input = "\nThere's an [episode](http://en.memory-alpha.org/wiki/Darmok_(episode)) of Star Trek: The Next Generation"; variable
H A Dunordered-list-plus.js31 var input = "\n + Red\n + Green\n + Blue"; variable
H A Dunordered-list-minus.js31 var input = "\n - Red\n - Green\n - Blue"; variable
H A Descaping.js31 var input = "\nThese should all be escaped:\n\n\\\n\n\`\n\n\*\n\n\_\n\n\{\n\n\}\n\n\[\n\n\]\n\n\(\n\n\)\n\n\#\n\n\+\n\n\-\n\n\.\n\n\!"; variable
H A Dgithub-style-at-start.js31 var input = "```\nfunction MyFunc(a) {\n // ...\n}\n```\n\nThat is some code!"; variable
H A Descaped-number-period.js31 var input = "It happened in 1986\. What a great season."; variable
H A Demphasis.js31 var input = "\n*important*\n\n_important_\n\nthis mid*important*sentence"; variable
H A Dh2-with-dashes.js31 var input = "This is an H2\n-------------"; variable
H A Dh3-with-double-hash.js31 var input = "### This is an H3 ###"; variable
H A Dh2-with-double-hash.js31 var input = "## This is an H2 ##"; variable
H A Dh2-with-single-hash.js31 var input = "## This is an H2"; variable
H A Dhtml5-strutural-tags.js31 var input = "\nThese HTML5 tags should pass through just fine.\n\n<section>hello</section>\n<header>head</header>\n<footer>footsies</footer>\n<nav>navigation</nav>\n<article>read me</article>\n<aside>ignore me</aside>\n<article>read\nme</article>\n<aside>\nignore me\n</aside>\n\nthe end"; variable
H A Dinline-anchors.js31 var input = "\nThis is [an example](http://example.com/ \"Title\") inline link.\n\n[This link](http://example.net/) has no title attribute."; variable
H A Dimplicit-anchors.js31 var input = "\nSearch the web at [Google][] or [Daring Fireball][].\n\n [Google]: http://google.com/\n [Daring Fireball]: http://daringfireball.net/"; variable
H A Dimages.js31 var input = "\n![Alt text](/path/to/img.jpg)\n\n![Alt text](/path/to/img.jpg \"Optional title\")\n\n![Alt text][id]\n\n [id]: url/to/image \"Optional title attribute\""; variable
H A Dinline-code.js31 var input = "\nCreate a new `function`.\n\nUse the backtick in MySQL syntax ``SELECT `column` FROM whatever``.\n\nA single backtick in a code span: `` ` ``\n\nA backtick-delimited string in a code span: `` `foo` ``\n\nPlease don't use any `<blink>` tags.\n\n`&#8212;` is the decimal-encoded equivalent of `&mdash;`."; variable
H A Dinline-style-tag.js31 var input = "\n<style>\n p { line-height: 20px; }\n</style>\n\nAn exciting sentence."; variable
H A Dlist-with-blockquote.js31 var input = "* A list item with a blockquote:\n\n > This is a blockquote\n > inside a list item."; variable
H A Dlazy-blockquote.js31 var input = "\n > This is a multi line blockquote test\n\n > With more than one line."; variable
H A Dlist-with-code.js31 var input = "* A list item with code:\n\n alert('Hello world!');"; variable
H A Dtable-large.js31 var input = "| First Header | Second Header | Third Header | Fourth Header |\n| ------------- | ------------- | ------------ | ------------- |\n| Row 1 Cell 1 | Row 1 Cell 2 | Row 1 Cell 3 | Row 1 Cell 4 |\n| Row 2 Cell 1 | Row 2 Cell 2 | Row 2 Cell 3 | Row 2 Cell 4 |\n| Row 3 Cell 1 | Row 3 Cell 2 | Row 3 Cell 3 | Row 3 Cell 4 |\n| Row 4 Cell 1 | Row 4 Cell 2 | Row 4 Cell 3 | Row 4 Cell 4 |\n| Row 5 Cell 1 | Row 5 Cell 2 | Row 5 Cell 3 | Row 5 Cell 4 |\n"; variable
H A Dtable-with-equals.js31 var input = "| First Header | Second Header |\n| ============= | ============= |\n| Row 1 Cell 1 | Row 1 Cell 2 |\n| Row 2 Cell 1 | Row 2 Cell 2 |\n"; variable
H A Dtable-basic.js31 var input = "| First Header | Second Header |\n| ------------- | ------------- |\n| Row 1 Cell 1 | Row 1 Cell 2 |\n| Row 2 Cell 1 | Row 2 Cell 2 |\n"; variable
H A Dunordered-list-asterisk.js31 var input = "\n * Red\n * Green\n * Blue"; variable

Completed in 110 milliseconds

1234567891011>>