Fix header alignment in Python (issue #808)

pull/822/merge
Beau Carnes 7 years ago committed by Thibaut Courouble
parent 68bd35c1bc
commit 22fa7c81b6

@ -79,6 +79,7 @@
'pages/phpunit', 'pages/phpunit',
'pages/postgres', 'pages/postgres',
'pages/pug', 'pages/pug',
'pages/python',
'pages/ramda', 'pages/ramda',
'pages/rdoc', 'pages/rdoc',
'pages/react_native', 'pages/react_native',

@ -79,6 +79,7 @@
'pages/phpunit', 'pages/phpunit',
'pages/postgres', 'pages/postgres',
'pages/pug', 'pages/pug',
'pages/python',
'pages/ramda', 'pages/ramda',
'pages/rdoc', 'pages/rdoc',
'pages/react_native', 'pages/react_native',

@ -0,0 +1,6 @@
._python {
@extend %sphinx;
h2 > a, h3 > a, dt[id] > a.external, dt[id] > a.internal { float: none !important; }
}

@ -1,6 +1,6 @@
module Docs module Docs
class Python < FileScraper class Python < FileScraper
self.type = 'sphinx' self.type = 'python'
self.root_path = 'library/index.html' self.root_path = 'library/index.html'
self.links = { self.links = {
home: 'https://www.python.org/', home: 'https://www.python.org/',

Loading…
Cancel
Save