Edit File by line

Deprecated: str_replace(): Passing null to parameter #2 ($replace) of type array|string is deprecated in /home/sportsfever/public_html/filemanger/function.php on line 93

Warning: Undefined array key "page_file_edit_line" in /home/sportsfever/public_html/filemanger/edit_text_line.php on line 32
/home/sportsfe.../httpdocs/wp-conte.../plugins/wp-file-.../lib/codemirr.../mode/markdown
File: test.js
[500] Fix | Delete
MT("listAsteriskNested",
[501] Fix | Delete
"[variable-2 * foo]",
[502] Fix | Delete
"",
[503] Fix | Delete
" [variable-3 * bar]");
[504] Fix | Delete
[505] Fix | Delete
MT("listPlusNested",
[506] Fix | Delete
"[variable-2 + foo]",
[507] Fix | Delete
"",
[508] Fix | Delete
" [variable-3 + bar]");
[509] Fix | Delete
[510] Fix | Delete
MT("listDashNested",
[511] Fix | Delete
"[variable-2 - foo]",
[512] Fix | Delete
"",
[513] Fix | Delete
" [variable-3 - bar]");
[514] Fix | Delete
[515] Fix | Delete
MT("listNumberNested",
[516] Fix | Delete
"[variable-2 1. foo]",
[517] Fix | Delete
"",
[518] Fix | Delete
" [variable-3 2. bar]");
[519] Fix | Delete
[520] Fix | Delete
MT("listMixed",
[521] Fix | Delete
"[variable-2 * foo]",
[522] Fix | Delete
"",
[523] Fix | Delete
" [variable-3 + bar]",
[524] Fix | Delete
"",
[525] Fix | Delete
" [keyword - hello]",
[526] Fix | Delete
"",
[527] Fix | Delete
" [variable-2 1. world]");
[528] Fix | Delete
[529] Fix | Delete
MT("listBlockquote",
[530] Fix | Delete
"[variable-2 * foo]",
[531] Fix | Delete
"",
[532] Fix | Delete
" [variable-3 + bar]",
[533] Fix | Delete
"",
[534] Fix | Delete
" [quote&quote-1&variable-3 > hello]");
[535] Fix | Delete
[536] Fix | Delete
MT("listCode",
[537] Fix | Delete
"[variable-2 * foo]",
[538] Fix | Delete
"",
[539] Fix | Delete
" [variable-3 + bar]",
[540] Fix | Delete
"",
[541] Fix | Delete
" [comment hello]");
[542] Fix | Delete
[543] Fix | Delete
// Code with internal indentation
[544] Fix | Delete
MT("listCodeIndentation",
[545] Fix | Delete
"[variable-2 * foo]",
[546] Fix | Delete
"",
[547] Fix | Delete
" [comment bar]",
[548] Fix | Delete
" [comment hello]",
[549] Fix | Delete
" [comment world]",
[550] Fix | Delete
" [comment foo]",
[551] Fix | Delete
" [variable-2 bar]");
[552] Fix | Delete
[553] Fix | Delete
// List nesting edge cases
[554] Fix | Delete
MT("listNested",
[555] Fix | Delete
"[variable-2 * foo]",
[556] Fix | Delete
"",
[557] Fix | Delete
" [variable-3 * bar]",
[558] Fix | Delete
"",
[559] Fix | Delete
" [variable-3 hello]"
[560] Fix | Delete
);
[561] Fix | Delete
MT("listNested",
[562] Fix | Delete
"[variable-2 * foo]",
[563] Fix | Delete
"",
[564] Fix | Delete
" [variable-3 * bar]",
[565] Fix | Delete
"",
[566] Fix | Delete
" [keyword * foo]"
[567] Fix | Delete
);
[568] Fix | Delete
[569] Fix | Delete
// Code followed by text
[570] Fix | Delete
MT("listCodeText",
[571] Fix | Delete
"[variable-2 * foo]",
[572] Fix | Delete
"",
[573] Fix | Delete
" [comment bar]",
[574] Fix | Delete
"",
[575] Fix | Delete
"hello");
[576] Fix | Delete
[577] Fix | Delete
// Following tests directly from official Markdown documentation
[578] Fix | Delete
// http://daringfireball.net/projects/markdown/syntax#hr
[579] Fix | Delete
[580] Fix | Delete
MT("hrSpace",
[581] Fix | Delete
"[hr * * *]");
[582] Fix | Delete
[583] Fix | Delete
MT("hr",
[584] Fix | Delete
"[hr ***]");
[585] Fix | Delete
[586] Fix | Delete
MT("hrLong",
[587] Fix | Delete
"[hr *****]");
[588] Fix | Delete
[589] Fix | Delete
MT("hrSpaceDash",
[590] Fix | Delete
"[hr - - -]");
[591] Fix | Delete
[592] Fix | Delete
MT("hrDashLong",
[593] Fix | Delete
"[hr ---------------------------------------]");
[594] Fix | Delete
[595] Fix | Delete
//Images
[596] Fix | Delete
MT("Images",
[597] Fix | Delete
"[image&image-marker !][image&image-alt-text&link [[alt text]]][string&url (http://link.to/image.jpg)]")
[598] Fix | Delete
[599] Fix | Delete
//Images with highlight alt text
[600] Fix | Delete
MT("imageEm",
[601] Fix | Delete
"[image&image-marker !][image&image-alt-text&link [[][image-alt-text&em&image&link *alt text*][image&image-alt-text&link ]]][string&url (http://link.to/image.jpg)]");
[602] Fix | Delete
[603] Fix | Delete
MT("imageStrong",
[604] Fix | Delete
"[image&image-marker !][image&image-alt-text&link [[][image-alt-text&strong&image&link **alt text**][image&image-alt-text&link ]]][string&url (http://link.to/image.jpg)]");
[605] Fix | Delete
[606] Fix | Delete
MT("imageEmStrong",
[607] Fix | Delete
"[image&image-marker !][image&image-alt-text&link [[][image-alt-text&image&strong&link **][image&image-alt-text&em&strong&link *alt text**][image&image-alt-text&em&link *][image&image-alt-text&link ]]][string&url (http://link.to/image.jpg)]");
[608] Fix | Delete
[609] Fix | Delete
// Inline link with title
[610] Fix | Delete
MT("linkTitle",
[611] Fix | Delete
"[link [[foo]]][string&url (http://example.com/ \"bar\")] hello");
[612] Fix | Delete
[613] Fix | Delete
// Inline link without title
[614] Fix | Delete
MT("linkNoTitle",
[615] Fix | Delete
"[link [[foo]]][string&url (http://example.com/)] bar");
[616] Fix | Delete
[617] Fix | Delete
// Inline link with image
[618] Fix | Delete
MT("linkImage",
[619] Fix | Delete
"[link [[][link&image&image-marker !][link&image&image-alt-text&link [[alt text]]][string&url (http://link.to/image.jpg)][link ]]][string&url (http://example.com/)] bar");
[620] Fix | Delete
[621] Fix | Delete
// Inline link with Em
[622] Fix | Delete
MT("linkEm",
[623] Fix | Delete
"[link [[][link&em *foo*][link ]]][string&url (http://example.com/)] bar");
[624] Fix | Delete
[625] Fix | Delete
// Inline link with Strong
[626] Fix | Delete
MT("linkStrong",
[627] Fix | Delete
"[link [[][link&strong **foo**][link ]]][string&url (http://example.com/)] bar");
[628] Fix | Delete
[629] Fix | Delete
// Inline link with EmStrong
[630] Fix | Delete
MT("linkEmStrong",
[631] Fix | Delete
"[link [[][link&strong **][link&em&strong *foo**][link&em *][link ]]][string&url (http://example.com/)] bar");
[632] Fix | Delete
[633] Fix | Delete
// Image with title
[634] Fix | Delete
MT("imageTitle",
[635] Fix | Delete
"[image&image-marker !][image&image-alt-text&link [[alt text]]][string&url (http://example.com/ \"bar\")] hello");
[636] Fix | Delete
[637] Fix | Delete
// Image without title
[638] Fix | Delete
MT("imageNoTitle",
[639] Fix | Delete
"[image&image-marker !][image&image-alt-text&link [[alt text]]][string&url (http://example.com/)] bar");
[640] Fix | Delete
[641] Fix | Delete
// Image with asterisks
[642] Fix | Delete
MT("imageAsterisks",
[643] Fix | Delete
"[image&image-marker !][image&image-alt-text&link [[ ][image&image-alt-text&em&link *alt text*][image&image-alt-text&link ]]][string&url (http://link.to/image.jpg)] bar");
[644] Fix | Delete
[645] Fix | Delete
// Not a link. Should be normal text due to square brackets being used
[646] Fix | Delete
// regularly in text, especially in quoted material, and no space is allowed
[647] Fix | Delete
// between square brackets and parentheses (per Dingus).
[648] Fix | Delete
MT("notALink",
[649] Fix | Delete
"[[foo]] (bar)");
[650] Fix | Delete
[651] Fix | Delete
// Reference-style links
[652] Fix | Delete
MT("linkReference",
[653] Fix | Delete
"[link [[foo]]][string&url [[bar]]] hello");
[654] Fix | Delete
[655] Fix | Delete
// Reference-style links with Em
[656] Fix | Delete
MT("linkReferenceEm",
[657] Fix | Delete
"[link [[][link&em *foo*][link ]]][string&url [[bar]]] hello");
[658] Fix | Delete
[659] Fix | Delete
// Reference-style links with Strong
[660] Fix | Delete
MT("linkReferenceStrong",
[661] Fix | Delete
"[link [[][link&strong **foo**][link ]]][string&url [[bar]]] hello");
[662] Fix | Delete
[663] Fix | Delete
// Reference-style links with EmStrong
[664] Fix | Delete
MT("linkReferenceEmStrong",
[665] Fix | Delete
"[link [[][link&strong **][link&em&strong *foo**][link&em *][link ]]][string&url [[bar]]] hello");
[666] Fix | Delete
[667] Fix | Delete
// Reference-style links with optional space separator (per documentation)
[668] Fix | Delete
// "You can optionally use a space to separate the sets of brackets"
[669] Fix | Delete
MT("linkReferenceSpace",
[670] Fix | Delete
"[link [[foo]]] [string&url [[bar]]] hello");
[671] Fix | Delete
[672] Fix | Delete
// Should only allow a single space ("...use *a* space...")
[673] Fix | Delete
MT("linkReferenceDoubleSpace",
[674] Fix | Delete
"[[foo]] [[bar]] hello");
[675] Fix | Delete
[676] Fix | Delete
// Reference-style links with implicit link name
[677] Fix | Delete
MT("linkImplicit",
[678] Fix | Delete
"[link [[foo]]][string&url [[]]] hello");
[679] Fix | Delete
[680] Fix | Delete
// @todo It would be nice if, at some point, the document was actually
[681] Fix | Delete
// checked to see if the referenced link exists
[682] Fix | Delete
[683] Fix | Delete
// Link label, for reference-style links (taken from documentation)
[684] Fix | Delete
[685] Fix | Delete
MT("labelNoTitle",
[686] Fix | Delete
"[link [[foo]]:] [string&url http://example.com/]");
[687] Fix | Delete
[688] Fix | Delete
MT("labelIndented",
[689] Fix | Delete
" [link [[foo]]:] [string&url http://example.com/]");
[690] Fix | Delete
[691] Fix | Delete
MT("labelSpaceTitle",
[692] Fix | Delete
"[link [[foo bar]]:] [string&url http://example.com/ \"hello\"]");
[693] Fix | Delete
[694] Fix | Delete
MT("labelDoubleTitle",
[695] Fix | Delete
"[link [[foo bar]]:] [string&url http://example.com/ \"hello\"] \"world\"");
[696] Fix | Delete
[697] Fix | Delete
MT("labelTitleDoubleQuotes",
[698] Fix | Delete
"[link [[foo]]:] [string&url http://example.com/ \"bar\"]");
[699] Fix | Delete
[700] Fix | Delete
MT("labelTitleSingleQuotes",
[701] Fix | Delete
"[link [[foo]]:] [string&url http://example.com/ 'bar']");
[702] Fix | Delete
[703] Fix | Delete
MT("labelTitleParentheses",
[704] Fix | Delete
"[link [[foo]]:] [string&url http://example.com/ (bar)]");
[705] Fix | Delete
[706] Fix | Delete
MT("labelTitleInvalid",
[707] Fix | Delete
"[link [[foo]]:] [string&url http://example.com/] bar");
[708] Fix | Delete
[709] Fix | Delete
MT("labelLinkAngleBrackets",
[710] Fix | Delete
"[link [[foo]]:] [string&url <http://example.com/> \"bar\"]");
[711] Fix | Delete
[712] Fix | Delete
MT("labelTitleNextDoubleQuotes",
[713] Fix | Delete
"[link [[foo]]:] [string&url http://example.com/]",
[714] Fix | Delete
"[string \"bar\"] hello");
[715] Fix | Delete
[716] Fix | Delete
MT("labelTitleNextSingleQuotes",
[717] Fix | Delete
"[link [[foo]]:] [string&url http://example.com/]",
[718] Fix | Delete
"[string 'bar'] hello");
[719] Fix | Delete
[720] Fix | Delete
MT("labelTitleNextParentheses",
[721] Fix | Delete
"[link [[foo]]:] [string&url http://example.com/]",
[722] Fix | Delete
"[string (bar)] hello");
[723] Fix | Delete
[724] Fix | Delete
MT("labelTitleNextMixed",
[725] Fix | Delete
"[link [[foo]]:] [string&url http://example.com/]",
[726] Fix | Delete
"(bar\" hello");
[727] Fix | Delete
[728] Fix | Delete
MT("labelEscape",
[729] Fix | Delete
"[link [[foo \\]] ]]:] [string&url http://example.com/]");
[730] Fix | Delete
[731] Fix | Delete
MT("labelEscapeColon",
[732] Fix | Delete
"[link [[foo \\]]: bar]]:] [string&url http://example.com/]");
[733] Fix | Delete
[734] Fix | Delete
MT("labelEscapeEnd",
[735] Fix | Delete
"[[foo\\]]: http://example.com/");
[736] Fix | Delete
[737] Fix | Delete
MT("linkWeb",
[738] Fix | Delete
"[link <http://example.com/>] foo");
[739] Fix | Delete
[740] Fix | Delete
MT("linkWebDouble",
[741] Fix | Delete
"[link <http://example.com/>] foo [link <http://example.com/>]");
[742] Fix | Delete
[743] Fix | Delete
MT("linkEmail",
[744] Fix | Delete
"[link <user@example.com>] foo");
[745] Fix | Delete
[746] Fix | Delete
MT("linkEmailDouble",
[747] Fix | Delete
"[link <user@example.com>] foo [link <user@example.com>]");
[748] Fix | Delete
[749] Fix | Delete
MT("emAsterisk",
[750] Fix | Delete
"[em *foo*] bar");
[751] Fix | Delete
[752] Fix | Delete
MT("emUnderscore",
[753] Fix | Delete
"[em _foo_] bar");
[754] Fix | Delete
[755] Fix | Delete
MT("emInWordAsterisk",
[756] Fix | Delete
"foo[em *bar*]hello");
[757] Fix | Delete
[758] Fix | Delete
MT("emInWordUnderscore",
[759] Fix | Delete
"foo[em _bar_]hello");
[760] Fix | Delete
[761] Fix | Delete
// Per documentation: "...surround an * or _ with spaces, it’ll be
[762] Fix | Delete
// treated as a literal asterisk or underscore."
[763] Fix | Delete
[764] Fix | Delete
MT("emEscapedBySpaceIn",
[765] Fix | Delete
"foo [em _bar _ hello_] world");
[766] Fix | Delete
[767] Fix | Delete
MT("emEscapedBySpaceOut",
[768] Fix | Delete
"foo _ bar[em _hello_]world");
[769] Fix | Delete
[770] Fix | Delete
MT("emEscapedByNewline",
[771] Fix | Delete
"foo",
[772] Fix | Delete
"_ bar[em _hello_]world");
[773] Fix | Delete
[774] Fix | Delete
// Unclosed emphasis characters
[775] Fix | Delete
// Instead of simply marking as EM / STRONG, it would be nice to have an
[776] Fix | Delete
// incomplete flag for EM and STRONG, that is styled slightly different.
[777] Fix | Delete
MT("emIncompleteAsterisk",
[778] Fix | Delete
"foo [em *bar]");
[779] Fix | Delete
[780] Fix | Delete
MT("emIncompleteUnderscore",
[781] Fix | Delete
"foo [em _bar]");
[782] Fix | Delete
[783] Fix | Delete
MT("strongAsterisk",
[784] Fix | Delete
"[strong **foo**] bar");
[785] Fix | Delete
[786] Fix | Delete
MT("strongUnderscore",
[787] Fix | Delete
"[strong __foo__] bar");
[788] Fix | Delete
[789] Fix | Delete
MT("emStrongAsterisk",
[790] Fix | Delete
"[em *foo][em&strong **bar*][strong hello**] world");
[791] Fix | Delete
[792] Fix | Delete
MT("emStrongUnderscore",
[793] Fix | Delete
"[em _foo][em&strong __bar_][strong hello__] world");
[794] Fix | Delete
[795] Fix | Delete
// "...same character must be used to open and close an emphasis span.""
[796] Fix | Delete
MT("emStrongMixed",
[797] Fix | Delete
"[em _foo][em&strong **bar*hello__ world]");
[798] Fix | Delete
[799] Fix | Delete
MT("emStrongMixed",
[800] Fix | Delete
"[em *foo][em&strong __bar_hello** world]");
[801] Fix | Delete
[802] Fix | Delete
MT("linkWithNestedParens",
[803] Fix | Delete
"[link [[foo]]][string&url (bar(baz))]")
[804] Fix | Delete
[805] Fix | Delete
// These characters should be escaped:
[806] Fix | Delete
// \ backslash
[807] Fix | Delete
// ` backtick
[808] Fix | Delete
// * asterisk
[809] Fix | Delete
// _ underscore
[810] Fix | Delete
// {} curly braces
[811] Fix | Delete
// [] square brackets
[812] Fix | Delete
// () parentheses
[813] Fix | Delete
// # hash mark
[814] Fix | Delete
// + plus sign
[815] Fix | Delete
// - minus sign (hyphen)
[816] Fix | Delete
// . dot
[817] Fix | Delete
// ! exclamation mark
[818] Fix | Delete
[819] Fix | Delete
MT("escapeBacktick",
[820] Fix | Delete
"foo \\`bar\\`");
[821] Fix | Delete
[822] Fix | Delete
MT("doubleEscapeBacktick",
[823] Fix | Delete
"foo \\\\[comment `bar\\\\`]");
[824] Fix | Delete
[825] Fix | Delete
MT("escapeAsterisk",
[826] Fix | Delete
"foo \\*bar\\*");
[827] Fix | Delete
[828] Fix | Delete
MT("doubleEscapeAsterisk",
[829] Fix | Delete
"foo \\\\[em *bar\\\\*]");
[830] Fix | Delete
[831] Fix | Delete
MT("escapeUnderscore",
[832] Fix | Delete
"foo \\_bar\\_");
[833] Fix | Delete
[834] Fix | Delete
MT("doubleEscapeUnderscore",
[835] Fix | Delete
"foo \\\\[em _bar\\\\_]");
[836] Fix | Delete
[837] Fix | Delete
MT("escapeHash",
[838] Fix | Delete
"\\# foo");
[839] Fix | Delete
[840] Fix | Delete
MT("doubleEscapeHash",
[841] Fix | Delete
"\\\\# foo");
[842] Fix | Delete
[843] Fix | Delete
MT("escapeNewline",
[844] Fix | Delete
"\\",
[845] Fix | Delete
"[em *foo*]");
[846] Fix | Delete
[847] Fix | Delete
// Class override tests
[848] Fix | Delete
TokenTypeOverrideTest("overrideHeader1",
[849] Fix | Delete
"[override-header&override-header-1 # Foo]");
[850] Fix | Delete
[851] Fix | Delete
TokenTypeOverrideTest("overrideHeader2",
[852] Fix | Delete
"[override-header&override-header-2 ## Foo]");
[853] Fix | Delete
[854] Fix | Delete
TokenTypeOverrideTest("overrideHeader3",
[855] Fix | Delete
"[override-header&override-header-3 ### Foo]");
[856] Fix | Delete
[857] Fix | Delete
TokenTypeOverrideTest("overrideHeader4",
[858] Fix | Delete
"[override-header&override-header-4 #### Foo]");
[859] Fix | Delete
[860] Fix | Delete
TokenTypeOverrideTest("overrideHeader5",
[861] Fix | Delete
"[override-header&override-header-5 ##### Foo]");
[862] Fix | Delete
[863] Fix | Delete
TokenTypeOverrideTest("overrideHeader6",
[864] Fix | Delete
"[override-header&override-header-6 ###### Foo]");
[865] Fix | Delete
[866] Fix | Delete
TokenTypeOverrideTest("overrideCode",
[867] Fix | Delete
"[override-code `foo`]");
[868] Fix | Delete
[869] Fix | Delete
TokenTypeOverrideTest("overrideCodeBlock",
[870] Fix | Delete
"[override-code ```]",
[871] Fix | Delete
"[override-code foo]",
[872] Fix | Delete
"[override-code ```]");
[873] Fix | Delete
[874] Fix | Delete
TokenTypeOverrideTest("overrideQuote",
[875] Fix | Delete
"[override-quote&override-quote-1 > foo]",
[876] Fix | Delete
"[override-quote&override-quote-1 > bar]");
[877] Fix | Delete
[878] Fix | Delete
TokenTypeOverrideTest("overrideQuoteNested",
[879] Fix | Delete
"[override-quote&override-quote-1 > foo]",
[880] Fix | Delete
"[override-quote&override-quote-1 >][override-quote&override-quote-2 > bar]",
[881] Fix | Delete
"[override-quote&override-quote-1 >][override-quote&override-quote-2 >][override-quote&override-quote-3 > baz]");
[882] Fix | Delete
[883] Fix | Delete
TokenTypeOverrideTest("overrideLists",
[884] Fix | Delete
"[override-list1 - foo]",
[885] Fix | Delete
"",
[886] Fix | Delete
" [override-list2 + bar]",
[887] Fix | Delete
"",
[888] Fix | Delete
" [override-list3 * baz]",
[889] Fix | Delete
"",
[890] Fix | Delete
" [override-list1 1. qux]",
[891] Fix | Delete
"",
[892] Fix | Delete
" [override-list2 - quux]");
[893] Fix | Delete
[894] Fix | Delete
TokenTypeOverrideTest("overrideHr",
[895] Fix | Delete
"[override-hr * * *]");
[896] Fix | Delete
[897] Fix | Delete
TokenTypeOverrideTest("overrideImage",
[898] Fix | Delete
"[override-image&override-image-marker !][override-image&override-image-alt-text&link [[alt text]]][override-link-href&url (http://link.to/image.jpg)]");
[899] Fix | Delete
[900] Fix | Delete
TokenTypeOverrideTest("overrideLinkText",
[901] Fix | Delete
"[override-link-text [[foo]]][override-link-href&url (http://example.com)]");
[902] Fix | Delete
[903] Fix | Delete
TokenTypeOverrideTest("overrideLinkEmailAndInline",
[904] Fix | Delete
"[override-link-email <][override-link-inline foo@example.com>]");
[905] Fix | Delete
[906] Fix | Delete
TokenTypeOverrideTest("overrideEm",
[907] Fix | Delete
"[override-em *foo*]");
[908] Fix | Delete
[909] Fix | Delete
TokenTypeOverrideTest("overrideStrong",
[910] Fix | Delete
"[override-strong **foo**]");
[911] Fix | Delete
[912] Fix | Delete
TokenTypeOverrideTest("overrideStrikethrough",
[913] Fix | Delete
"[override-strikethrough ~~foo~~]");
[914] Fix | Delete
[915] Fix | Delete
FormatTokenTypeOverrideTest("overrideFormatting",
[916] Fix | Delete
"[override-formatting-escape \\*]");
[917] Fix | Delete
[918] Fix | Delete
// Tests to make sure GFM-specific things aren't getting through
[919] Fix | Delete
[920] Fix | Delete
MT("taskList",
[921] Fix | Delete
"[variable-2 * [ ]] bar]");
[922] Fix | Delete
[923] Fix | Delete
MT("noFencedCodeBlocks",
[924] Fix | Delete
"~~~",
[925] Fix | Delete
"foo",
[926] Fix | Delete
"~~~");
[927] Fix | Delete
[928] Fix | Delete
FencedTest("fencedCodeBlocks",
[929] Fix | Delete
"[comment ```]",
[930] Fix | Delete
"[comment foo]",
[931] Fix | Delete
"[comment ```]",
[932] Fix | Delete
"bar");
[933] Fix | Delete
[934] Fix | Delete
FencedTest("fencedCodeBlocksMultipleChars",
[935] Fix | Delete
"[comment `````]",
[936] Fix | Delete
"[comment foo]",
[937] Fix | Delete
"[comment ```]",
[938] Fix | Delete
"[comment foo]",
[939] Fix | Delete
"[comment `````]",
[940] Fix | Delete
"bar");
[941] Fix | Delete
[942] Fix | Delete
FencedTest("fencedCodeBlocksTildes",
[943] Fix | Delete
"[comment ~~~]",
[944] Fix | Delete
"[comment foo]",
[945] Fix | Delete
"[comment ~~~]",
[946] Fix | Delete
"bar");
[947] Fix | Delete
[948] Fix | Delete
FencedTest("fencedCodeBlocksTildesMultipleChars",
[949] Fix | Delete
"[comment ~~~~~]",
[950] Fix | Delete
"[comment ~~~]",
[951] Fix | Delete
"[comment foo]",
[952] Fix | Delete
"[comment ~~~~~]",
[953] Fix | Delete
"bar");
[954] Fix | Delete
[955] Fix | Delete
FencedTest("fencedCodeBlocksMultipleChars",
[956] Fix | Delete
"[comment `````]",
[957] Fix | Delete
"[comment foo]",
[958] Fix | Delete
"[comment ```]",
[959] Fix | Delete
"[comment foo]",
[960] Fix | Delete
"[comment `````]",
[961] Fix | Delete
"bar");
[962] Fix | Delete
[963] Fix | Delete
FencedTest("fencedCodeBlocksMixed",
[964] Fix | Delete
"[comment ~~~]",
[965] Fix | Delete
"[comment ```]",
[966] Fix | Delete
"[comment foo]",
[967] Fix | Delete
"[comment ~~~]",
[968] Fix | Delete
"bar");
[969] Fix | Delete
[970] Fix | Delete
// Tests that require XML mode
[971] Fix | Delete
[972] Fix | Delete
MT("xmlMode",
[973] Fix | Delete
"[tag&bracket <][tag div][tag&bracket >]",
[974] Fix | Delete
"*foo*",
[975] Fix | Delete
"[tag&bracket <][tag http://github.com][tag&bracket />]",
[976] Fix | Delete
"[tag&bracket </][tag div][tag&bracket >]",
[977] Fix | Delete
"[link <http://github.com/>]");
[978] Fix | Delete
[979] Fix | Delete
MT("xmlModeWithMarkdownInside",
[980] Fix | Delete
"[tag&bracket <][tag div] [attribute markdown]=[string 1][tag&bracket >]",
[981] Fix | Delete
"[em *foo*]",
[982] Fix | Delete
"[link <http://github.com/>]",
[983] Fix | Delete
"[tag </div>]",
[984] Fix | Delete
"[link <http://github.com/>]",
[985] Fix | Delete
"[tag&bracket <][tag div][tag&bracket >]",
[986] Fix | Delete
"[tag&bracket </][tag div][tag&bracket >]");
[987] Fix | Delete
[988] Fix | Delete
})();
[989] Fix | Delete
[990] Fix | Delete
12
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function