use double quotes

This commit is contained in:
Paul Mineev
2021-12-24 04:17:39 -06:00
committed by Umputun
parent ab0c29cb0c
commit f6772a7253
+1 -1
View File
@@ -28,7 +28,7 @@ function noteContainer() {
function markdownTableWrapper(md) {
md.renderer.rules.table_open = function(tokens, idx, options, _, self) {
return `<div class='overflow-x-auto'>` + self.renderToken(tokens, idx, options)
return `<div class="overflow-x-auto">` + self.renderToken(tokens, idx, options)
}
md.renderer.rules.table_close = function(tokens, idx, options, _, self) {
return self.renderToken(tokens, idx, options) + `</div>`