Skip to content

Commit

Permalink
Fixing issue #78: Incorrect rendering of backslashes in attribute values
Browse files Browse the repository at this point in the history
  • Loading branch information
chbloemer committed Jun 17, 2016
1 parent 28ef534 commit 9f0871e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/de/neuland/jade4j/lexer/Lexer.java
Expand Up @@ -941,7 +941,7 @@ private Token attrs() {

for (int i = 0; i <= str.length(); i++) {
if (isEndOfAttribute(i, str, key, val, loc, state)) {
// val = val.trim();
val = val.trim();
if (!val.isEmpty())
try {
expressionHandler.assertExpression(val);
Expand Down

0 comments on commit 9f0871e

Please sign in to comment.