Last active
April 18, 2025 05:35
-
-
Save moriwaka/2732228b4ce4baf7f107f5f258f6e3cf to your computer and use it in GitHub Desktop.
Hide TOC and format selector and make content in full width on docs.redhat.com
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
javascript:(function(){var leftContent=document.getElementById('left-content');if(leftContent){leftContent.style.display='none';}var layout=document.getElementById('layout');if(layout){layout.style.display='none';}var article=document.querySelector('article');if(article){article.removeAttribute('class');}document.querySelectorAll('.docs-content-container').forEach(function(el){el.style.paddingLeft='1rem';el.style.paddingRight='1rem';el.style.paddingTop='0';});document.querySelectorAll('div').forEach(function(el){el.classList.remove('grid');});})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment