Skip to content

Instantly share code, notes, and snippets.

@cawal
Last active December 27, 2023 14:13
Show Gist options
  • Save cawal/560cb226438a4c2c180e11f75ecbfdcc to your computer and use it in GitHub Desktop.
Save cawal/560cb226438a4c2c180e11f75ecbfdcc to your computer and use it in GitHub Desktop.
Cleaner python docs
// ==UserScript==
// @name cawal's Python Docs 2
// @namespace Violentmonkey Scripts
// @match https://docs.python.org/*
// @grant GM_addStyle
// @version 1.0
// @author https://github.com/cawal/
// @description Cleaner Python docs
// ==/UserScript==
// CAWAL
GM_addStyle(`
pre {
background-color: #ffffff00 ! important;
border: 0px solid #ac9 ! important;
padding-left: 2em ! important;
}
div.body h1,div.body h2,div.body h3,div.body h4,div.body h5{
padding: 2em 0 0 0
}
dl.function {
margin-top: 4em;
}
`)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment