| No Recursion | |
| Text from specification | |
|
A parsed entity must not contain a recursive reference to itself, either directly or indirectly. |
|
| Explanation | |
|
Be careful how you structure your entities; make sure you don't inadvertently create a circular reference: <!ENTITY a "&b;"> <!ENTITY b "&c;"> <!ENTITY c "&a;"> <!--wrong!--> |
|