Merge pull request #122 from pmarsceill/v0.2.4-release

v0.2.4 release branch
This commit is contained in:
Patrick Marsceill 2019-04-30 18:17:36 -07:00 committed by GitHub
commit 9a076b48ac
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
10 changed files with 708 additions and 2237 deletions

View File

@ -35,3 +35,6 @@ color_scheme: nil
# Google Analytics Tracking (optional)
# e.g, UA-1234567-89
ga_tracking: UA-2709176-10
plugins:
- jekyll-seo-tag

View File

@ -23,4 +23,6 @@
<script type="text/javascript" src="{{ "/assets/js/just-the-docs.js" | absolute_url }}"></script>
<meta name="viewport" content="width=device-width, initial-scale=1">
{% seo %}
</head>

View File

@ -1,6 +1,6 @@
<!DOCTYPE html>
<html lang="en-us">
<html lang="{{ site.lang | default: "en-US" }}">
{% include head.html %}
<body>

View File

@ -120,7 +120,8 @@
}
}
// stylelint-disable selector-no-type
// stylelint-disable selector-max-type
body {
position: relative;
padding-bottom: $sp-10;
@ -130,7 +131,8 @@ body {
padding-bottom: 0;
}
}
// stylelint-enable selector-no-type
// stylelint-enable selector-max-type
.site-footer {
position: absolute;

View File

@ -16,6 +16,12 @@
// Support
@import "./support/support";
//
// Import custom overrides
//
@import "./custom/custom";
//
// Import custom color scheme scss
//
@ -36,8 +42,3 @@
@import "./tables";
@import "./code";
@import "./utilities/utilities";
//
// Import custom overrides
//
@import "./custom/custom";

View File

@ -153,7 +153,6 @@ function initSearch() {
function pageFocus() {
var mainContent = document.querySelector('.js-main-content');
mainContent.focus();
console.log(mainContent)
}

View File

@ -58,6 +58,8 @@ $ bundle exec jekyll serve
```
4. Point your web browser to [http://localhost:4000](http://localhost:4000)
If you're hosting your site on GitHub Pages, [set up GitHub Pages and Jekyll locally](https://help.github.com/en/articles/setting-up-your-github-pages-site-locally-with-jekyll) so that you can more easily work in your development environment.
### Configure Just the Docs
- [See configuration options]({{ site.baseurl }}{% link docs/configuration.md %})

View File

@ -2,7 +2,7 @@
Gem::Specification.new do |spec|
spec.name = "just-the-docs"
spec.version = "0.2.3"
spec.version = "0.2.4"
spec.authors = ["Patrick Marsceill"]
spec.email = ["patrick.marsceill@gmail.com"]
@ -14,6 +14,7 @@ Gem::Specification.new do |spec|
spec.executables << 'just-the-docs'
spec.add_runtime_dependency "jekyll", "~> 3.8.5"
spec.add_runtime_dependency "jekyll-seo-tag", "~> 2.0"
spec.add_runtime_dependency "rake", "~> 12.3.1"
spec.add_development_dependency "bundler", "~> 2.0.1"

2904
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -1,15 +1,18 @@
{
"name": "just-the-docs",
"version": "0.2.3",
"version": "0.2.4",
"description": "A modern Jekyll theme for documentation",
"repository": "pmarsceill/just-the-docs",
"license": "MIT",
"bugs": "https://github.com/pmarsceill/just-the-docs/issues",
"devDependencies": {
"stylelint": "^9.10.1",
"stylelint-config-primer": "^3.0.1"
"stylelint": "^10.0.1",
"stylelint-config-primer": "^6.0.0",
"stylelint-selector-no-utility": "^4.0.0"
},
"dependencies": {
"@primer/css": "^12.2.3"
},
"dependencies": {},
"scripts": {
"test": "stylelint '**/*.scss'"
}