Skip to content

Commit

Permalink
update by workspace
Browse files Browse the repository at this point in the history
  • Loading branch information
eq19 committed Nov 10, 2024
1 parent a330a23 commit f3ae6a5
Show file tree
Hide file tree
Showing 168 changed files with 16,620 additions and 19,056 deletions.
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,10 @@ $RECYCLE.BIN/
#.jekyll-cache
#.jekyll-metadata


# bundler
*.gem
vendor/
.bundle/
Gemfile.lock


Expand All @@ -51,6 +52,7 @@ package-lock.json


# build
.env
.github/
.devcontainer/
.devcontainer.json
Expand Down
Binary file modified .jekyll-metadata
Binary file not shown.
35 changes: 35 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
source "https://rubygems.org" # gems.ruby-china.com
# Hello! This is where you manage which Jekyll version is used to run.
# When you want to use a different version, change it below, save the
# file and run `bundle install`. Run Jekyll with `bundle exec`, like so:
#
# bundle exec jekyll build
#
# This will help ensure the proper Jekyll version is running.
# Happy Jekylling!
#gem "jekyll", "~> 4.2.2"

# If you want to use GitHub Pages, remove the "gem "jekyll"" above and
# uncomment the line below. To upgrade, run `bundle update github-pages`.
gem "github-pages", group: :jekyll_plugins

# If you have any plugins, put them here!
group :jekyll_plugins do
gem "faraday-retry"
end

# Windows and JRuby does not include zoneinfo files, so bundle the tzinfo-data gem
# and associated library.
platforms :mingw, :x64_mingw, :mswin, :jruby do
gem "tzinfo", ">= 1", "< 3"
gem "tzinfo-data"
end

# Performance-booster for watching directories on Windows
#gem "wdm", "~> 0.1.0", :platforms => [:mingw, :x64_mingw, :mswin]

# Lock `http_parser.rb` gem to `v0.6.x` on JRuby builds since newer versions of the gem
# do not have a Java counterpart.
gem "http_parser.rb", "~> 0.6.0", :platforms => [:jruby]

#gemspec
3 changes: 2 additions & 1 deletion _config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ span: span14
title: eQuantum
baseurl: /parser
repository: eq19/parser
action: eq19/lexer/actions/runs/11652508325
action: eq19/lexer/actions/runs/11767435575
description: An attempt to discover the Final Theory

#debug:
Expand All @@ -27,6 +27,7 @@ readme_index:
with_frontmatter: true

exclude:
- vendor
- LICENSE
- action.yml
- Dockerfile
Expand Down
20 changes: 0 additions & 20 deletions _data/wiki.json

This file was deleted.

20 changes: 10 additions & 10 deletions _includes/extra/script.js
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
/* set _blank for outside links */
$('.external-link').unbind('click');
$(document.links).filter(function() {
var cond = 0;
cond += (this.hostname.indexOf("eq19.com") === -1)? 1: 0;
cond += (this.hostname.indexOf("github.io") === -1)? 1: 0;
cond += (this.hostname != window.location.hostname)? 1: 0;
return cond == 3;
}).attr('target', '_blank')
/* set _blank for outside links */
$('.external-link').unbind('click');
$(document.links).filter(function() {
var cond = 0;
cond += (this.hostname.indexOf("eq19.com") === -1)? 1: 0;
cond += (this.hostname.indexOf("github.io") === -1)? 1: 0;
cond += (this.hostname != window.location.hostname)? 1: 0;
return cond == 3;
}).attr('target', '_blank')

2 changes: 1 addition & 1 deletion _includes/list.liquid
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
append: "as below." -%}

```tip
{{ tip1 }}{% source inherited %}{{ tip2 }}
{{ tip1 }}{{ source inherited }}{{ tip2 }}
```

{{ item_baseline }}
Expand Down
78 changes: 39 additions & 39 deletions _sass/core/addons.scss
Original file line number Diff line number Diff line change
@@ -1,39 +1,39 @@
.addons-wrap {
background-color: darken($theme-menu-background, 8%);

.status {
cursor: pointer;
background-color: darken($theme-menu-background, 5%);

.branch {
.fa {
color: $theme-white;
}

.name {
color: $green;
}
}
&:active {
background: $theme-menu-active-background;
}
}

.addons {
color: grey;

dl {
margin: 0;
}

dd {
display: inline-block;

a {
display: inline-block;
padding: 6px;
color: $theme-white;
}
}
}
}
.addons-wrap {
background-color: darken($theme-menu-background, 8%);

.status {
cursor: pointer;
background-color: darken($theme-menu-background, 5%);

.branch {
.fa {
color: $theme-white;
}

.name {
color: $green;
}
}
&:active {
background: $theme-menu-active-background;
}
}

.addons {
color: grey;

dl {
margin: 0;
}

dd {
display: inline-block;

a {
display: inline-block;
padding: 6px;
color: $theme-white;
}
}
}
}
22 changes: 11 additions & 11 deletions _sass/core/container.scss
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
.container {
font-weight: $font-weight-normal;
color: $theme-black;
background: $theme-white;
}

@include breakpoint(xl) {
.container {
background: $theme-mask-black;
}
}
.container {
font-weight: $font-weight-normal;
color: $theme-black;
background: $theme-white;
}

@include breakpoint(xl) {
.container {
background: $theme-mask-black;
}
}
8 changes: 4 additions & 4 deletions _sass/core/content.scss
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.content-wrap {
font-size: $h4-size;
background: $theme-white;
}
.content-wrap {
font-size: $h4-size;
background: $theme-white;
}
20 changes: 10 additions & 10 deletions _sass/core/header.scss
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
.header {
color: $theme-white;
background: $theme-blue;

input {
border-radius: 50px;
border: 1px solid #2472a4;
font-size: 80%;
}
}
.header {
color: $theme-white;
background: $theme-blue;

input {
border-radius: 50px;
border: 1px solid #2472a4;
font-size: 80%;
}
}
Loading

0 comments on commit f3ae6a5

Please sign in to comment.