Searched refs:input (Results 1 - 25 of 810) sorted by relevance

1234567891011>>

/openjdk10/nashorn/test/script/markdown/
H A Dblockquote.js31 var input = " \n > This is a multi line blockquote test\n >\n > With more than one line."; variable
32 var output = converter.makeHtml(input);
H A Dautomatic-anchors.js31 var input = "\n<http://example.com/>"; variable
32 var output = converter.makeHtml(input);
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
32 var output = converter.makeHtml(input);
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
32 var output = converter.makeHtml(input);
H A Dlazy-blockquote.js31 var input = "\n > This is a multi line blockquote test\n\n > With more than one line."; variable
32 var output = converter.makeHtml(input);
H A Dlist-with-code.js31 var input = "* A list item with code:\n\n alert('Hello world!');"; variable
32 var output = converter.makeHtml(input);
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
32 var output = converter.makeHtml(input);
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
32 var output = converter.makeHtml(input);
H A Dunordered-list-asterisk.js31 var input = "\n * Red\n * Green\n * Blue"; variable
32 var output = converter.makeHtml(input);
H A Dunordered-list-plus.js31 var input = "\n + Red\n + Green\n + Blue"; variable
32 var output = converter.makeHtml(input);
H A Dunordered-list-minus.js31 var input = "\n - Red\n - Green\n - Blue"; variable
32 var output = converter.makeHtml(input);
H A Dcode-block-html-escape.js31 var input = "\nThis is some HTML:\n\n <h1>Heading</h1>"; variable
32 var output = converter.makeHtml(input);
H A Descaped-number-period.js31 var input = "It happened in 1986\. What a great season."; variable
32 var output = converter.makeHtml(input);
H A Dcode-block.js31 var input = "\nThis is a normal paragraph:\n\n This is a code block."; variable
32 var output = converter.makeHtml(input);
H A Demphasis.js31 var input = "\n*important*\n\n_important_\n\nthis mid*important*sentence"; variable
32 var output = converter.makeHtml(input);
H A Ddoubline-list.js31 var input = "\n * Bird\n\n * Magic"; variable
32 var output = converter.makeHtml(input);
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
32 var output = converter.makeHtml(input);
H A Dhorizontal-rules.js31 var input = "\n* * *\n\n***\n\n*****\n\n- - -\n\n---------------------------------------\n"; variable
32 var output = converter.makeHtml(input);
H A Dh5-with-single-hash.js31 var input = "##### This is an H5"; variable
32 var output = converter.makeHtml(input);
H A Dh6-with-single-hash.js31 var input = "###### This is an H6"; variable
32 var output = converter.makeHtml(input);
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
32 var output = converter.makeHtml(input);
H A Dstrong.js31 var input = "\n**important**\n\n__important__\n\nreally **freaking**strong"; variable
32 var output = converter.makeHtml(input);
H A Drelative-anchors.js31 var input = "\nSee my [About](/about/) page for details."; variable
32 var output = converter.makeHtml(input);
H A Dsimple-paragraph.js31 var input = "\nHello, world!"; variable
32 var output = converter.makeHtml(input);
H A Dh1-with-equals.js31 var input = "This is an H1\n============="; variable
32 var output = converter.makeHtml(input);

Completed in 51 milliseconds

1234567891011>>