
GITHUB . COM {
}
Detected CMS Systems:
- Wordpress (2 occurrences)
Title:
Additional path levels added to extra CSS and JavaScript Β· Issue #841 Β· squidfunk/mkdocs-material
Description:
Description When building a site using mkdocs build (and a specified output directory), the relative paths to extra JavaScript and CSS have more added levels. This disables the extra JavaScript and CSS on all pages that are not at root l...
Website Age:
17 years and 9 months (reg. 2007-10-09).
Matching Content Categories {π}
- Technology & Computing
- Video & Online Content
- DIY & Home Improvement
Content Management System {π}
What CMS is github.com built with?
Github.com is built with WORDPRESS.
Traffic Estimate {π}
What is the average monthly size of github.com audience?
ππ Tremendous Traffic: 10M - 20M visitors per month
Based on our best estimate, this website will receive around 10,666,394 visitors per month in the current month.
check SE Ranking
check Ahrefs
check Similarweb
check Ubersuggest
check Semrush
How Does Github.com Make Money? {πΈ}
Subscription Packages {π³}
We've located a dedicated page on github.com that might include details about subscription plans or recurring payments. We identified it based on the word pricing in one of its internal links. Below, you'll find additional estimates for its monthly recurring revenues.How Much Does Github.com Make? {π°}
Subscription Packages {π³}
Prices on github.com are in US Dollars ($).
They range from $4.00/month to $21.00/month.
We estimate that the site has approximately 5,347,507 paying customers.
The estimated monthly recurring revenue (MRR) is $22,459,531.
The estimated annual recurring revenues (ARR) are $269,514,368.
Wordpress Themes and Plugins {π¨}
What WordPress theme does this site use?
What WordPress plugins does this website use?
It is strange but we were not able to detect any plugins on the page.
Keywords {π}
squidfunk, issue, theme, mkdocs, material, commented, version, configextracss, css, extracss, path, added, site, owner, extra, javascript, docs, bug, sign, levels, build, level, behavior, link, relstylesheet, extrajavascript, filter, input, waylan, projects, additional, martinbira, directory, expected, filecmkdocssiteapiindexhtml, true, overview, information, url, default, readthedocs, release, navigation, pull, requests, actions, security, closed, description, building,
Topics {βοΈ}
/mkdocs/mkdocs/blob/4076d7de433bd5bca8938283b8c9535d9333f6e3/mkdocs/themes/mkdocs/base additional path levels multi-level page structure /mkdocs/site/api/index /mkdocs/site/stylesheets/extra added levels squidfunk edits owner /mkdocs/site/javascripts/extra source-code bug projects system information os level-1/level-2/index package versions python comment metadata assignees squidfunk closed original theme implements /stylesheets/application-custom 'stylesheets/application-custom feature-1/level-1/index bug add css linux build machines stanzillamanticore added projects milestone /stylesheets/custom-extra mkdocs issue extra_css variables continue url filter proposed url template filter mkdocs build mkdocs version 0 mkdocs version 1 doubled path level-1/index default theme api/index themes manage 'stylesheets/extra issue locally material theme feature-1/index docs folder build site extra javascript input issue site directory 'site' use_directory_urls material implemented root level /javascripts/extra
Payment Methods {π}
- Braintree
Questions {β}
- Already have an account?
- Does this also happen with other themes?
Schema {πΊοΈ}
DiscussionForumPosting:
context:https://schema.org
headline:Additional path levels added to extra CSS and JavaScript
articleBody:## Description
When building a site using `mkdocs build` (and a specified output directory), the relative paths to extra JavaScript and CSS have more added levels. This disables the extra JavaScript and CSS on all pages that are not at root level.
### Expected behavior
Building a site to the `site` directory from `docs` with folders for `stylesheets` and `javascripts` placed within `docs` will produce a structure in the style of:
`file:///C:/MKDocs/site/api/index.html`
`file:///C:/MKDocs/site/stylesheets/extra.css`
`file:///C:/MKDocs/site/javascripts/extra.js`
The source-code of `file:///C:/MKDocs/site/api/index.html` should include the following:
```html
<link rel="stylesheet" href="../stylesheets/application-custom.palette.css">
<link rel="stylesheet" href="../stylesheets/custom-extra.css">
...
<script>app.initialize({version:"1.0",url:{base:".."}})</script>
<script src="../javascripts/extra.js"></script>
```
### Actual behavior
The source-code of `file:///C:/MKDocs/site/api/index.html` includes the following:
```html
<link rel="stylesheet" href="../../stylesheets/application-custom.palette.css">
<link rel="stylesheet" href="../../stylesheets/custom-extra.css">
...
<script>app.initialize({version:"1.0",url:{base:".."}})</script>
<script src="../../javascripts/extra.js"></script>
```
### Steps to reproduce the bug
1. Add CSS and JavaScript files to respective folders placed withing the `docs` folder.
2. Have a multi-level page structure.
3. Build site to desired directory.
### Package versions
* Python: `3.6.1`
* MkDocs: `1.0`
* Material: `3.0.2`
### Project configuration
``` yaml
site_dir: 'site'
use_directory_urls: true
...
theme:
name: 'material'
palette:
primary: 'custom'
accent: 'custom'
...
extra_css:
- 'stylesheets/application-custom.palette.css'
- 'stylesheets/extra.css'
extra_javascript:
- 'javascripts/extra.js'
...
nav:
- API:
- Overview: api/index.md
...
```
### System information
* OS: Win 10
author:
url:https://github.com/martinbira
type:Person
name:martinbira
datePublished:2018-08-06T14:28:35.000Z
interactionStatistic:
type:InteractionCounter
interactionType:https://schema.org/CommentAction
userInteractionCount:8
url:https://github.com/841/mkdocs-material/issues/841
context:https://schema.org
headline:Additional path levels added to extra CSS and JavaScript
articleBody:## Description
When building a site using `mkdocs build` (and a specified output directory), the relative paths to extra JavaScript and CSS have more added levels. This disables the extra JavaScript and CSS on all pages that are not at root level.
### Expected behavior
Building a site to the `site` directory from `docs` with folders for `stylesheets` and `javascripts` placed within `docs` will produce a structure in the style of:
`file:///C:/MKDocs/site/api/index.html`
`file:///C:/MKDocs/site/stylesheets/extra.css`
`file:///C:/MKDocs/site/javascripts/extra.js`
The source-code of `file:///C:/MKDocs/site/api/index.html` should include the following:
```html
<link rel="stylesheet" href="../stylesheets/application-custom.palette.css">
<link rel="stylesheet" href="../stylesheets/custom-extra.css">
...
<script>app.initialize({version:"1.0",url:{base:".."}})</script>
<script src="../javascripts/extra.js"></script>
```
### Actual behavior
The source-code of `file:///C:/MKDocs/site/api/index.html` includes the following:
```html
<link rel="stylesheet" href="../../stylesheets/application-custom.palette.css">
<link rel="stylesheet" href="../../stylesheets/custom-extra.css">
...
<script>app.initialize({version:"1.0",url:{base:".."}})</script>
<script src="../../javascripts/extra.js"></script>
```
### Steps to reproduce the bug
1. Add CSS and JavaScript files to respective folders placed withing the `docs` folder.
2. Have a multi-level page structure.
3. Build site to desired directory.
### Package versions
* Python: `3.6.1`
* MkDocs: `1.0`
* Material: `3.0.2`
### Project configuration
``` yaml
site_dir: 'site'
use_directory_urls: true
...
theme:
name: 'material'
palette:
primary: 'custom'
accent: 'custom'
...
extra_css:
- 'stylesheets/application-custom.palette.css'
- 'stylesheets/extra.css'
extra_javascript:
- 'javascripts/extra.js'
...
nav:
- API:
- Overview: api/index.md
...
```
### System information
* OS: Win 10
author:
url:https://github.com/martinbira
type:Person
name:martinbira
datePublished:2018-08-06T14:28:35.000Z
interactionStatistic:
type:InteractionCounter
interactionType:https://schema.org/CommentAction
userInteractionCount:8
url:https://github.com/841/mkdocs-material/issues/841
Person:
url:https://github.com/martinbira
name:martinbira
url:https://github.com/martinbira
name:martinbira
InteractionCounter:
interactionType:https://schema.org/CommentAction
userInteractionCount:8
interactionType:https://schema.org/CommentAction
userInteractionCount:8
External Links {π}(6)
- What's https://github.blog's gross income?
- How much does https://user-images.githubusercontent.com/932156/43761715-27d3c760-9a26-11e8-9e30-b7543b029059.png bring in each month?
- How much does https://user-images.githubusercontent.com/22232681/43763750-d9f690ee-9a2b-11e8-904d-30ccf986c33b.png generate monthly?
- What is the monthly revenue of https://user-images.githubusercontent.com/22232681/43763755-dd2a6d62-9a2b-11e8-9104-0fdce717140e.png?
- How much does https://user-images.githubusercontent.com/22232681/43763770-e9a52410-9a2b-11e8-8381-1a91504f38cf.png make?
- https://www.githubstatus.com/'s financial summary
Analytics and Tracking {π}
- Site Verification - Google
Libraries {π}
- Clipboard.js
- D3.js
- GSAP
- Lodash
Emails and Hosting {βοΈ}
Mail Servers:
- aspmx.l.google.com
- alt1.aspmx.l.google.com
- alt2.aspmx.l.google.com
- alt3.aspmx.l.google.com
- alt4.aspmx.l.google.com
Name Servers:
- dns1.p08.nsone.net
- dns2.p08.nsone.net
- dns3.p08.nsone.net
- dns4.p08.nsone.net
- ns-1283.awsdns-32.org
- ns-1707.awsdns-21.co.uk
- ns-421.awsdns-52.com
- ns-520.awsdns-01.net