Skip to content

Commit

Permalink
Remove \escaping, fixes #872
Browse files Browse the repository at this point in the history
Nobody uses \escaping, plus it's buggy and conflicts with YAML
\escaping.
  • Loading branch information
mcmonkey4eva committed Oct 31, 2014
1 parent bb0376c commit 0cd0a8a
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions src/main/java/net/aufdemrand/denizen/tags/TagManager.java
Expand Up @@ -220,9 +220,6 @@ public static String tag(String arg, TagContext context) {
// confirm there are/is a replaceable TAG(s), if not, return the arg.
if (arg.indexOf('>') == -1 || arg.length() < 3) return cleanOutput(arg);

// Parse \escaping down to internal escaping.
if (!context.instant) arg = arg.replace("\\<", String.valueOf((char)0x01)).replace("\\>", String.valueOf((char)0x02));

// Find location of the first tag
int[] positions = locateTag(arg);
if (positions == null) {
Expand Down

0 comments on commit 0cd0a8a

Please sign in to comment.