diff --git a/demo/index.html b/demo/index.html
index 46ae152..5ac2187 100644
--- a/demo/index.html
+++ b/demo/index.html
@@ -787,8 +787,11 @@
Author/
Contributors
});
// set all github links
- // $('body').html().matchAll(/#\d{1,4}/)
-
+ var res = $('section.changelog').html().replace(/(#\d{1,})/gi, function (x) {
+ var num = x.substr(1);
+ return ''+x+'';
+ });
+ $('section.changelog').html(res);
})();