Skip to content

Commit a3c2a35

Browse files
Fix compatibility issues with [email protected] (iissnan#1175)
1 parent 5b6dbe7 commit a3c2a35

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

layout/_partials/pagination.swig

+2-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@
44
paginator({
55
prev_text: '<i class="fa fa-angle-left" aria-label="'+__('accessibility.prev_page')+'"></i>',
66
next_text: '<i class="fa fa-angle-right" aria-label="'+__('accessibility.next_page')+'"></i>',
7-
mid_size: 1
7+
mid_size : 1,
8+
escape : false
89
})
910
}}
1011
</nav>

scripts/helpers/next-url.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -66,5 +66,5 @@ hexo.extend.helper.register('next_url', function(path, text, options) {
6666
}
6767
}
6868

69-
return htmlTag(tag, attrs, text);
69+
return htmlTag(tag, attrs, text, false);
7070
});

0 commit comments

Comments
 (0)