Skip to content

Commit

Permalink
Add tag &pc, fixes #418
Browse files Browse the repository at this point in the history
  • Loading branch information
mcmonkey4eva committed Sep 15, 2013
1 parent 9c2121f commit 4fc51bf
Showing 1 changed file with 9 additions and 0 deletions.
Expand Up @@ -118,6 +118,15 @@ else if (event.getName().equalsIgnoreCase("&lc"))
else if (event.getName().equalsIgnoreCase("&ns"))
event.setReplaced(new Element("#").getAttribute(attribute.fulfill(1)));

// <--[tag]
// @attribute <&pc>
// @returns Element
// @description
// Returns a percent symbol: %
// -->
else if (event.getName().equalsIgnoreCase("&pc"))
event.setReplaced(new Element("%").getAttribute(attribute.fulfill(1)));

}

}

0 comments on commit 4fc51bf

Please sign in to comment.