Searched defs:input (Results 1 - 25 of 562) sorted by relevance

1234567891011>>

/openjdk9/nashorn/test/script/markdown/
H A Dordered-list-wrong-numbers.js31 var input = "\n 8. Red\n 1. Green\n 3. Blue"; 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.js31 var input = "\n 1. Red\n 2. Green\n 3. Blue"; variable
H A Dsimple-paragraph.js31 var input = "\nHello, world!"; variable
H A Danchors-by-reference.js31 var input = "\nThis is [an example][id] reference-style link.\nThis is [another] [foo] reference-style link.\nThis is [a third][bar] reference-style link.\nThis is [a fourth][4] reference-style link.\n\n [id]: http://example.com/ \"Optional Title Here\"\n [foo]: http://example.com/ (Optional Title Here)\n [bar]: http://example.com/ (Optional Title Here)\n [4]: <http://example.com/>\n \"Optional Title Here\""; variable
H A Dautomatic-anchors.js31 var input = "\n<http://example.com/>"; variable
H A Dblockquote-nested-markdown.js31 var input = "> ## This is a header.\n>\n> 1. This is the first list item.\n> 2. This is the second list item.\n>\n> Here's some example code:\n>\n> return shell_exec(\"echo $input | $markdown_script\");"; variable
H A Dcode-block-html-escape.js31 var input = "\nThis is some HTML:\n\n <h1>Heading</h1>"; variable
H A Dblockquote.js31 var input = " \n > This is a multi line blockquote test\n >\n > With more than one line."; variable
H A Dcode-block.js31 var input = "\nThis is a normal paragraph:\n\n This is a code block."; variable
H A Ddoubline-list.js31 var input = "\n * Bird\n\n * Magic"; variable
H A Dgithub-style-codeblock.js31 var input = "\nDefine a function in javascript:\n\n```\nfunction MyFunc(a) {\n var s = '`';\n}\n```\n\nAnd some HTML\n\n```html\n<div>HTML!</div>\n```"; variable
H A Dgithub-style-linebreaks.js31 var input = "```\ncode can go here\nthis is rendered on a second line\n```"; variable
H A Dh1-with-equals.js31 var input = "This is an H1\n============="; variable
H A Dh1-with-double-hash.js31 var input = "# This is an H1 #"; variable
H A Dh1-with-single-hash.js31 var input = "# This is an H1"; variable
H A Dhorizontal-rules.js31 var input = "\n* * *\n\n***\n\n*****\n\n- - -\n\n---------------------------------------\n"; variable
H A Dh4-with-single-hash.js31 var input = "#### This is an H4"; variable
H A Dh5-with-single-hash.js31 var input = "##### This is an H5"; variable
H A Dh6-with-single-hash.js31 var input = "###### This is an H6"; variable
H A Dh3-with-single-hash.js31 var input = "### This is an H3"; 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 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 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

Completed in 128 milliseconds

1234567891011>>