Searched refs:input (Results 26 - 50 of 810) sorted by relevance

1234567891011>>

/openjdk10/nashorn/test/script/markdown/
H A Dh2-with-dashes.js31 var input = "This is an H2\n-------------"; variable
32 var output = converter.makeHtml(input);
H A Dh1-with-double-hash.js31 var input = "# This is an H1 #"; variable
32 var output = converter.makeHtml(input);
H A Dh1-with-single-hash.js31 var input = "# This is an H1"; variable
32 var output = converter.makeHtml(input);
H A Dh3-with-double-hash.js31 var input = "### This is an H3 ###"; variable
32 var output = converter.makeHtml(input);
H A Dh2-with-double-hash.js31 var input = "## This is an H2 ##"; variable
32 var output = converter.makeHtml(input);
H A Dh4-with-single-hash.js31 var input = "#### This is an H4"; variable
32 var output = converter.makeHtml(input);
H A Dh3-with-single-hash.js31 var input = "### This is an H3"; variable
32 var output = converter.makeHtml(input);
H A Dh2-with-single-hash.js31 var input = "## This is an H2"; variable
32 var output = converter.makeHtml(input);
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
32 var output = converter.makeHtml(input);
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
32 var output = converter.makeHtml(input);
H A Dordered-list-wrong-numbers.js31 var input = "\n 8. Red\n 1. Green\n 3. Blue"; variable
32 var output = converter.makeHtml(input);
H A Dordered-list-same-number.js31 var input = "\n 1. Red\n 1. Green\n 1. Blue"; variable
32 var output = converter.makeHtml(input);
H A Dordered-list.js31 var input = "\n 1. Red\n 2. Green\n 3. Blue"; variable
32 var output = converter.makeHtml(input);
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
32 var output = converter.makeHtml(input);
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
32 var output = converter.makeHtml(input);
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
32 var output = converter.makeHtml(input);
H A Dgithub-style-linebreaks.js31 var input = "```\ncode can go here\nthis is rendered on a second line\n```"; variable
32 var output = converter.makeHtml(input);
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
32 var output = converter.makeHtml(input);
H A Dgithub-style-at-start.js31 var input = "```\nfunction MyFunc(a) {\n // ...\n}\n```\n\nThat is some code!"; variable
32 var output = converter.makeHtml(input);
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
32 var output = converter.makeHtml(input);
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
32 var output = converter.makeHtml(input);
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
32 var output = converter.makeHtml(input);
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
32 var output = converter.makeHtml(input);
H A Dinline-style-tag.js31 var input = "\n<style>\n p { line-height: 20px; }\n</style>\n\nAn exciting sentence."; variable
32 var output = converter.makeHtml(input);
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
32 var output = converter.makeHtml(input);

Completed in 56 milliseconds

1234567891011>>