contents/glyph/book/troubleshooting/errors_parser.html
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 |
----- title: "Glyph – Parsing Errors" content-type: page ----- <nav class="navigation"><a href="/glyph/book/troubleshooting/errors_generic.html">← Generic Errors</a> | <a href="/glyph/book/index.html">Contents</a> | <a href="/glyph/book/troubleshooting/errors_command.html">Command Errors →</a></nav> <table style="width:100%;"> <tr> <th style="width:30%">Error Message</th> <th>Description</th> </tr> <tr> <td>Macro delimiter '<em>delimiter</em>' not escaped</td> <td>Returned in case of unescaped <code>[</code>or <code>]</code>.</td> </tr> <tr> <td><em>macro_name</em>[...] - A macro cannot start with '@' or a digit.</td> <td>Returned if an invalid macro name was specified.</td> </tr> <tr> <td>Macro '<em>macro_name</em>' not closed</td> <td>Returned if a macro lacks its end delimiter <code>=]</code>.</td> </tr> <tr> <td>Escaping macro '<em>macro_name</em>' not closed</td> <td>Returned if an escaping macro lacks its end delimiter <code>=]</code>.</td> </tr> <tr> <td>Attribute @<em>attribute_name</em> not closed</td> <td>Returned if a macro attribute lacks its end delimiter <code>]</code>.</td> </tr> <tr> <td>Attributes cannot be nested</td> <td>Returned if a macro attribute was found immediately within another attribute.</td> </tr> <tr> <td>Cannot nest escaping macro '<em>macro_name_1</em>' within escaping macro '<em>macro_name_2</em>'</td> <td>Returned if an escaping macro contains another escaping macro.</td> </tr> <tr> <td>Parameter delimiter '|' not allowed here</td> <td>Returned if a parameter delimiter is outside a macro or inside an attribute.</td> </tr> </table> <nav class="navigation"><a href="/glyph/book/troubleshooting/errors_generic.html">← Generic Errors</a> | <a href="/glyph/book/index.html">Contents</a> | <a href="/glyph/book/troubleshooting/errors_command.html">Command Errors →</a></nav> |