1{ 2 "question": "Replace all bold text with italic in markdown files.", 3 "isRegex": true, 4 "exampleIncludeGlobs": ["*.md"], 5 "queryShouldFind": [ 6 ["foo.md", [ 7 "**This text will be bold**", 8 "__This will also be bold__", 9 "**can**" 10 ]] 11 ], 12 "replaceResult": [ 13 ["foo.md", "foo.replace2.md"] 14 ] 15} 16