diff --git a/Readme.md b/Readme.md index ac3604d..d37c881 100644 --- a/Readme.md +++ b/Readme.md @@ -20,4 +20,18 @@ It is recommended to name the file as `*.rs.djv`. |----------------:|------------:| | `.rs.djv` | `.rs` | | `.djv` | `.rs` | -| `mod.djv` | `` | \ No newline at end of file +| `mod.djv` | `` | + +# WhiteSpace and NewLine Control + +| Symbol | Control | +|:-------|:-------------------------------------------| +| `<%` | `<%=` if expression, `<%-` if statement | +| `<%=` | Destroy nothing | +| `<%_` | Destroy `WS`, except `NL` | +| `<%-` | Destroy `WS` and recent `NL` | +| `<%~` | Destroy `WS` and `NL` except farthest `NL` | +| `<%+` | Destroy `WS` and `NL`, all | + + +