diff --git a/escape.html b/escape.html index bbb0295..8ecd6e8 100644 --- a/escape.html +++ b/escape.html @@ -34,6 +34,12 @@ $('pre code').each(function(i, block) { hljs.highlightBlock(block); }); + + var hash = window.location.hash; + if(hash != '') { + location.href = hash; + } + });