Searched defs:input (Results 1 - 25 of 562) sorted by last modified time

1234567891011>>

/openjdk9/nashorn/test/script/markdown/
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-minus.js31 var input = "\n - Red\n - Green\n - Blue"; variable
H A Dunordered-list-plus.js31 var input = "\n + Red\n + Green\n + Blue"; 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
H A Dsimple-paragraph.js31 var input = "\nHello, world!"; variable
H A Dordered-list.js31 var input = "\n 1. Red\n 2. Green\n 3. Blue"; 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 Dstrong.js31 var input = "\n**important**\n\n__important__\n\nreally **freaking**strong"; variable
H A Drelative-anchors.js31 var input = "\nSee my [About](/about/) page for details."; variable
H A Dordered-list-same-number.js31 var input = "\n 1. Red\n 1. Green\n 1. Blue"; variable
H A Dmultiline-unordered-list.js31 var input = "\n - This line spans\n more than one line and is lazy\n - Similar to this line"; variable
H A Dordered-list-wrong-numbers.js31 var input = "\n 8. Red\n 1. Green\n 3. Blue"; variable
H A Dlist-with-code.js31 var input = "* A list item with code:\n\n alert('Hello world!');"; variable
H A Dnested-blockquote.js31 var input = "\n > This is a multi line blockquote test\n >\n > > And nesting!\n >\n > With more than one line."; variable
H A Dmulti-paragraph-list.js31 var input = "\n 1. This is a major bullet point.\n\n That contains multiple paragraphs.\n\n 2. And another line"; 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 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 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 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 Dinline-style-tag.js31 var input = "\n<style>\n p { line-height: 20px; }\n</style>\n\nAn exciting sentence."; 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 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

Completed in 110 milliseconds

1234567891011>>