diff options
-rw-r--r-- | README.md | 10 | ||||
-rw-r--r-- | zencoding-mode.el | 2 |
2 files changed, 11 insertions, 1 deletions
@@ -143,6 +143,16 @@ you'll transform your snippet into the appropriate tag structure. <c><d></d></c> </a> +## Climb-up + + a>b^c <a><b></b></a><c></c> + a>b>c^d <a> + <b><c></c></b> + <d></d> + </a> + a>b>c^^d <a><b><c></c></b></a> + <d></d> + ## Multiplication a*1 <a></a> diff --git a/zencoding-mode.el b/zencoding-mode.el index 561d597..8b02383 100644 --- a/zencoding-mode.el +++ b/zencoding-mode.el @@ -830,7 +830,7 @@ "</p>" "<a>here</a>" " to continue") - ;; ClimbUp + ;; Climb-up ("a>b>c^d" "<a>" " <b><c></c></b>" " <d></d>" |