A handful of domain descriptions have a sentence that refers to the examples, which makes no sense in a context where the example words and sentences are omitted (which is the case in The Combine and the normal RWC best practice). They are sentences that begin:
- An example
- Example
- Several example
- The example
- Two example
(Note: There is a "For example" sentence that shouldn't be removed.)
The following regex could be used to find and remove them in English:
(An e|E|Several e|The e|Two e)xample[^.]*\.
However, that doesn't handle the various translations, so it would need to be done upstream. (Related: #1456.)
A handful of domain descriptions have a sentence that refers to the examples, which makes no sense in a context where the example words and sentences are omitted (which is the case in The Combine and the normal RWC best practice). They are sentences that begin:
(Note: There is a "For example" sentence that shouldn't be removed.)
The following regex could be used to find and remove them in English:
However, that doesn't handle the various translations, so it would need to be done upstream. (Related: #1456.)