From 1769e61159804e42db802e7d7057ff60f033ad5e Mon Sep 17 00:00:00 2001 From: Krzysztof Tomasz Zembrowski Date: Sun, 14 May 2017 12:40:01 +0200 Subject: [PATCH] Level 12 escape * and # * and # should be escaped with \ for proper Markdown rendering --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 835f643..c8f871a 100644 --- a/README.md +++ b/README.md @@ -235,8 +235,8 @@ solutions to puzzles in Vim Adventures - G → `dG` when it is anywhere below you - ( → `d(` when it is within the previous sentence - ) → `d)` when it is within the next sentence - - * → `d*` when it is anywhere above you - - # → `d#` when it is anywhere above you + - \* → `d*` when it is anywhere above you + - \# → `d#` when it is anywhere above you - get the '[{, [(, ]), and ]}' motions for finding unmatched braces and parenthesis - puzzle with t and ^ bugs - kill the 2 bugs