From 8661d8ddf2e351063ea03d3d8080714756a288aa Mon Sep 17 00:00:00 2001 From: mikethetexan <73663385+mikethetexan@users.noreply.github.com> Date: Wed, 4 Jan 2023 14:06:25 -0600 Subject: [PATCH] Update README.md The link to the PNG was not found, so the documentation is not understandable. I did find the original documentation at https://web.archive.org/web/20160801062708/http://www.linguisticproductions.com/mtenhancedplugin/doc/findreplacelist-tutorial and pasted the missing codeblock. --- MT Enhanced Provider/README.md | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) 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!”.