diff options
author | ot <ot@localhost> | 2005-06-21 06:09:41 +0000 |
---|---|---|
committer | ot <ot@localhost> | 2005-06-21 06:09:41 +0000 |
commit | d19efc91cde7cebf06dd443af5e4619308750660 (patch) | |
tree | 5f476ac84bb38ad0f2c85d51198c3726b7fa1005 | |
parent | 63417ef371ea1a70f06ecec29a5cc9cc698075ee (diff) | |
download | markup-validator-d19efc91cde7cebf06dd443af5e4619308750660.zip markup-validator-d19efc91cde7cebf06dd443af5e4619308750660.tar.gz markup-validator-d19efc91cde7cebf06dd443af5e4619308750660.tar.bz2 |
adding explanations for ampersand as data
-rw-r--r-- | share/templates/en_US/error_messages.cfg | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/share/templates/en_US/error_messages.cfg b/share/templates/en_US/error_messages.cfg index 06e6377..de4e2de 100644 --- a/share/templates/en_US/error_messages.cfg +++ b/share/templates/en_US/error_messages.cfg @@ -1730,9 +1730,14 @@ verbose <<.EOF. <div class="ve mid-404"> <p> - If you wish to include the "<" character in your output, you should escape it as "&lt;". - Another possibility is that you forgot to close quotes in a previous tag. + This message may appear in several cases: </p> + <ul> + <li>You tried to include the "<" character in your page: you should escape it as "&lt;"</li> + <li>You used an unescaped ampersand "&": this may be valid in some contexts, + but it is recommended to use "&amp;", which is always safe.</li> + <li>Another possibility is that you forgot to close quotes in a previous tag.</li> + </ul> </div> .EOF. </msg> |