themes/docsy/assets/js/markmap.js (15 lines of code) (raw):

{{ with .Site.Params.markmap }} {{ if .enable }} (function($) { var needMarkmap = false; $('.language-markmap').parent().replaceWith(function() { needMarkmap = true; return $('<div class="markmap">').text($(this).text()); }); const { markmap } = window; if(needMarkmap) { markmap.autoLoader.renderAll(); } })(jQuery); {{ end }} {{ end }}