diff --git a/MT Enhanced Provider/README.md b/MT Enhanced Provider/README.md index 046cb63117..dbd5cbaf7c 100644 --- a/MT Enhanced Provider/README.md +++ b/MT Enhanced Provider/README.md @@ -49,7 +49,23 @@ After the list of EditItems nodes, the other nodes are closed with the correspon ## Example -The following is a complete example of the content for a find/replace list file: ![](https://raw.githubusercontent.com/sdl/Sdl-Community/master/EditCollection2.PNG) +The following is a complete example of the content for a find/replace list file: + +``` + + + +Hello World +Hello world! + + +\bhello\b +Hello! + + + +``` + Here, there is one plain text pair specifying to find the string “Hello World” and replace it with “Hello world!”. There is also a regular expression pair specifying to find the regular expression “\bhello\b” (a whole-word match for “hello”) and replace it with “Hello!”.