/*
* @title TAB visualizer
* @description visualize hard-tab
* @include http://*
* @include https://*
* @license MIT License
* @require
*/
// e.g. http://ltsv.org or related sites
(function () {
var symbol = '<TAB>';
Array.prototype.slice.call(document.querySelectorAll('code, pre')).forEach(function (area) {
area.textContent = area.textContent.replace(/\t/, symbol);
});
})();