jekyll-theme-zer0 1.24.0 → 1.26.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +124 -0
- data/README.md +4 -4
- data/_data/authors.yml +1 -0
- data/_data/backlog.yml +26 -1
- data/_data/features.yml +73 -45
- data/_data/feedback_types.yml +148 -0
- data/_data/navigation/README.md +16 -6
- data/_data/navigation/main.yml +0 -8
- data/_data/roadmap.yml +1 -0
- data/_includes/README.md +10 -7
- data/_includes/analytics/google-analytics.html +1 -0
- data/_includes/analytics/google-tag-manager-body.html +1 -0
- data/_includes/analytics/google-tag-manager-head.html +1 -0
- data/_includes/analytics/posthog.html +1 -0
- data/_includes/components/README.md +3 -1
- data/_includes/components/admin-links.html +63 -0
- data/_includes/components/admin-tabs.html +1 -0
- data/_includes/components/ai-chat.html +27 -5
- data/_includes/components/author-eeat.html +1 -0
- data/_includes/components/background-customizer.html +1 -0
- data/_includes/components/background-settings.html +36 -37
- data/_includes/components/component-showcase.html +1 -0
- data/_includes/components/cookie-consent.html +1 -0
- data/_includes/components/dev-shortcuts.html +1 -8
- data/_includes/components/env-switcher.html +90 -138
- data/_includes/components/feature-card.html +1 -1
- data/_includes/components/halfmoon.html +22 -41
- data/_includes/components/info-section.html +127 -130
- data/_includes/components/mermaid.html +1 -0
- data/_includes/components/nanobar.html +1 -0
- data/_includes/components/page-feedback.html +252 -0
- data/_includes/components/post-type-badge.html +1 -0
- data/_includes/components/preview-image.html +1 -0
- data/_includes/components/search-modal.html +1 -0
- data/_includes/components/searchbar.html +1 -0
- data/_includes/components/shortcuts-modal.html +1 -0
- data/_includes/components/theme-info.html +21 -30
- data/_includes/components/theme-preview-gallery.html +1 -0
- data/_includes/content/backlinks.html +1 -0
- data/_includes/content/giscus.html +1 -0
- data/_includes/content/intro.html +20 -62
- data/_includes/content/jsonld-faq.html +1 -0
- data/_includes/content/seo.html +1 -0
- data/_includes/content/sitemap.html +1 -0
- data/_includes/content/toc.html +1 -0
- data/_includes/core/color-mode-init.html +1 -0
- data/_includes/core/console-capture.html +89 -0
- data/_includes/core/footer.html +1 -0
- data/_includes/core/head.html +5 -0
- data/_includes/core/header.html +5 -15
- data/_includes/navigation/admin-nav.html +1 -0
- data/_includes/navigation/breadcrumbs.html +1 -0
- data/_includes/navigation/local-graph-fab.html +3 -9
- data/_includes/navigation/local-graph.html +4 -9
- data/_includes/navigation/navbar.html +1 -0
- data/_includes/navigation/sidebar-categories.html +56 -14
- data/_includes/navigation/sidebar-config.html +115 -0
- data/_includes/navigation/sidebar-folders.html +168 -62
- data/_includes/navigation/sidebar-left.html +29 -52
- data/_includes/navigation/sidebar-nav.html +30 -0
- data/_includes/navigation/sidebar-right.html +1 -0
- data/_includes/navigation/toc-fab.html +3 -9
- data/_includes/navigation/unified-drawer.html +7 -14
- data/_includes/obsidian/full-graph.html +1 -0
- data/_includes/setup/wizard.html +1 -0
- data/_includes/stats/stats-categories.html +1 -0
- data/_includes/stats/stats-header.html +1 -0
- data/_includes/stats/stats-metrics.html +1 -0
- data/_includes/stats/stats-overview.html +1 -0
- data/_includes/stats/stats-tags.html +1 -0
- data/_layouts/admin.html +1 -0
- data/_layouts/article.html +1 -0
- data/_layouts/author.html +1 -0
- data/_layouts/authors.html +1 -0
- data/_layouts/collection.html +1 -0
- data/_layouts/default.html +14 -37
- data/_layouts/home.html +1 -0
- data/_layouts/index.html +1 -0
- data/_layouts/landing.html +1 -0
- data/_layouts/news.html +1 -0
- data/_layouts/note.html +1 -0
- data/_layouts/notebook.html +1 -0
- data/_layouts/root.html +6 -2
- data/_layouts/search.html +1 -0
- data/_layouts/section.html +1 -0
- data/_layouts/setup.html +1 -0
- data/_layouts/sitemap-collection.html +1 -0
- data/_layouts/stats.html +1 -0
- data/_layouts/tag.html +1 -0
- data/_layouts/welcome.html +1 -0
- data/_plugins/author_pages_generator.rb +1 -0
- data/_plugins/obsidian_links.rb +1 -0
- data/_plugins/preview_image_generator.rb +1 -0
- data/_plugins/search_and_sitemap_generator.rb +1 -0
- data/_plugins/theme_version.rb +1 -0
- data/_sass/components/_author.scss +12 -1
- data/_sass/components/_footer.scss +22 -0
- data/_sass/components/_page-feedback.scss +276 -0
- data/_sass/components/_ui-enhancements.scss +9 -0
- data/_sass/core/_docs-layout.scss +3 -78
- data/_sass/core/_navbar.scss +10 -27
- data/_sass/core/_obsidian.scss +2 -2
- data/_sass/core/code-copy.scss +10 -0
- data/_sass/custom.scss +1 -0
- data/_sass/notebooks.scss +1 -0
- data/_sass/theme/_backgrounds.scss +7 -2
- data/_sass/tokens/_layers.scss +4 -0
- data/_sass/utilities/_layout.scss +11 -0
- data/assets/css/main.scss +3 -1
- data/assets/js/ai-chat.js +1 -0
- data/assets/js/author-profile.js +1 -0
- data/assets/js/auto-hide-nav.js +1 -0
- data/assets/js/back-to-top.js +1 -0
- data/assets/js/background-customizer.js +1 -0
- data/assets/js/code-copy.js +1 -0
- data/assets/js/halfmoon.js +23 -22
- data/assets/js/modules/navigation/gestures.js +1 -0
- data/assets/js/modules/navigation/keyboard.js +1 -0
- data/assets/js/modules/navigation/scroll-spy.js +1 -0
- data/assets/js/modules/navigation/sidebar-state.js +1 -0
- data/assets/js/modules/navigation/sidebar-visibility.js +1 -0
- data/assets/js/modules/navigation/smooth-scroll.js +1 -0
- data/assets/js/modules/theme/appearance.js +52 -16
- data/assets/js/nanobar-init.js +1 -0
- data/assets/js/navigation.js +1 -0
- data/assets/js/obsidian-graph.js +1 -0
- data/assets/js/obsidian-wiki-links.js +1 -0
- data/assets/js/page-feedback.js +660 -0
- data/assets/js/palette-generator.js +1 -0
- data/assets/js/particles-source.js +1 -0
- data/assets/js/search-modal.js +1 -0
- data/assets/js/setup-wizard.js +1 -0
- data/assets/js/share-actions.js +1 -0
- data/assets/js/skin-editor.js +1 -0
- data/assets/js/table-copy.js +1 -0
- data/assets/js/theme-customizer.js +1 -0
- data/scripts/analyze-commits.sh +1 -0
- data/scripts/bin/giscus-discussions +1 -0
- data/scripts/bin/install +1 -0
- data/scripts/bin/validate +1 -0
- data/scripts/build +1 -0
- data/scripts/content-review.rb +1 -0
- data/scripts/convert-notebooks.sh +4 -3
- data/scripts/fix-markdown-format.sh +1 -0
- data/scripts/generate-preview-images.sh +1 -0
- data/scripts/generate-roadmap.sh +1 -0
- data/scripts/install-preview-generator.sh +1 -0
- data/scripts/release +1 -0
- data/scripts/requirements.txt +11 -0
- data/scripts/setup.sh +1 -0
- data/scripts/tag-features +136 -0
- data/scripts/validate-features.rb +7 -0
- data/scripts/vendor-install.sh +1 -0
- metadata +13 -4
- data/_data/prompts.yml +0 -302
- data/_plugins/admin_page_urls.rb +0 -16
data/assets/js/skin-editor.js
CHANGED
data/assets/js/table-copy.js
CHANGED
data/scripts/analyze-commits.sh
CHANGED
data/scripts/bin/install
CHANGED
data/scripts/bin/validate
CHANGED
data/scripts/build
CHANGED
data/scripts/content-review.rb
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
#!/bin/bash
|
|
2
|
+
# Features: ZER0-012, ZER0-028
|
|
2
3
|
#
|
|
3
4
|
# Script Name: convert-notebooks.sh
|
|
4
5
|
# Description: Converts Jupyter notebooks (.ipynb) to Jekyll-compatible Markdown
|
|
@@ -339,7 +340,7 @@ clean_converted() {
|
|
|
339
340
|
rm -f "$md_file"
|
|
340
341
|
info "Removed: $md_file"
|
|
341
342
|
fi
|
|
342
|
-
((count
|
|
343
|
+
count=$((count + 1))
|
|
343
344
|
fi
|
|
344
345
|
done < <(find "$OUTPUT_DIR" -name "*.md" -print0 2>/dev/null)
|
|
345
346
|
|
|
@@ -364,7 +365,7 @@ list_notebooks() {
|
|
|
364
365
|
else
|
|
365
366
|
while IFS= read -r -d '' notebook_file; do
|
|
366
367
|
echo "$notebook_file"
|
|
367
|
-
((count
|
|
368
|
+
count=$((count + 1))
|
|
368
369
|
done < <(find "$NOTEBOOKS_DIR" -name "*.ipynb" -print0 2>/dev/null)
|
|
369
370
|
fi
|
|
370
371
|
|
|
@@ -400,7 +401,7 @@ main() {
|
|
|
400
401
|
local count=0
|
|
401
402
|
while IFS= read -r -d '' notebook_file; do
|
|
402
403
|
convert_notebook "$notebook_file"
|
|
403
|
-
((count
|
|
404
|
+
count=$((count + 1))
|
|
404
405
|
done < <(find "$NOTEBOOKS_DIR" -name "*.ipynb" -print0 2>/dev/null)
|
|
405
406
|
|
|
406
407
|
if [[ $count -eq 0 ]]; then
|
data/scripts/generate-roadmap.sh
CHANGED
data/scripts/release
CHANGED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
# Python toolchain for repository automation scripts.
|
|
2
|
+
#
|
|
3
|
+
# Currently the notebook-conversion pipeline: scripts/convert-notebooks.sh and
|
|
4
|
+
# .github/workflows/convert-notebooks.yml use nbconvert to render
|
|
5
|
+
# pages/_notebooks/*.ipynb into Jekyll-compatible Markdown.
|
|
6
|
+
#
|
|
7
|
+
# This file also acts as the pip cache key for actions/setup-python in that
|
|
8
|
+
# workflow (see `cache-dependency-path`). Keep it in sync with the toolchain the
|
|
9
|
+
# scripts import; a missing file here makes `cache: pip` hard-fail the run.
|
|
10
|
+
jupyter
|
|
11
|
+
nbconvert
|
data/scripts/setup.sh
CHANGED
|
@@ -0,0 +1,136 @@
|
|
|
1
|
+
#!/usr/bin/env ruby
|
|
2
|
+
# frozen_string_literal: true
|
|
3
|
+
|
|
4
|
+
# ---------------------------------------------------------------------------
|
|
5
|
+
# tag-features — reverse-traceability enforcement for the feature registry.
|
|
6
|
+
#
|
|
7
|
+
# Every source file a feature lists under `references:` carries a top-of-file
|
|
8
|
+
# `Feature: ZER0-NNN` comment, so the link runs both ways (registry -> code and
|
|
9
|
+
# code -> registry). This tool is the single source of truth for that rule:
|
|
10
|
+
#
|
|
11
|
+
# ruby scripts/tag-features # --check (default): exit 1 + list any
|
|
12
|
+
# # referenced source file missing its tag
|
|
13
|
+
# ruby scripts/tag-features --write # insert the missing tags (idempotent,
|
|
14
|
+
# # line-ending-preserving)
|
|
15
|
+
#
|
|
16
|
+
# The `features` test suite runs `--check`, so a new feature that forgets to tag
|
|
17
|
+
# its files fails CI. Governance: .github/instructions/features.instructions.md.
|
|
18
|
+
#
|
|
19
|
+
# Scope (mirrors what a feature's references implement, and only what can carry a
|
|
20
|
+
# comment): .rb .js .mjs .scss .sh .html .yml, plus Dockerfile/Makefile and the
|
|
21
|
+
# scripts/{bin/*,build,release} wrappers. Excluded by design: markdown docs,
|
|
22
|
+
# JSON (no comment syntax), vendored/minified third-party libs, directory refs,
|
|
23
|
+
# and _config.yml (it has an exact-copy admin mirror enforced elsewhere).
|
|
24
|
+
#
|
|
25
|
+
# Portable across Ruby 2.6 (macOS system) and 3.x (CI/Docker).
|
|
26
|
+
# ---------------------------------------------------------------------------
|
|
27
|
+
|
|
28
|
+
require 'date'
|
|
29
|
+
require 'yaml'
|
|
30
|
+
|
|
31
|
+
MIRROR = '_data/features.yml'
|
|
32
|
+
MODE = ARGV.include?('--write') ? :write : :check
|
|
33
|
+
|
|
34
|
+
CODE_EXT = %w[.rb .js .mjs .scss .sh .html .yml].freeze
|
|
35
|
+
SLASH_EXT = %w[.js .mjs .scss].freeze
|
|
36
|
+
NOEXT_FILES = %w[docker/Dockerfile Makefile scripts/release scripts/build].freeze
|
|
37
|
+
EXCLUDE_FILES = %w[_config.yml assets/js/particles.js assets/js/halfmoon.js].freeze
|
|
38
|
+
|
|
39
|
+
def load_yaml(path)
|
|
40
|
+
YAML.load_file(path, permitted_classes: [Date, Time], aliases: true)
|
|
41
|
+
rescue ArgumentError
|
|
42
|
+
YAML.load_file(path)
|
|
43
|
+
end
|
|
44
|
+
|
|
45
|
+
def ref_paths(refs)
|
|
46
|
+
return [] unless refs.is_a?(Hash)
|
|
47
|
+
|
|
48
|
+
refs.values.flat_map { |v| v.is_a?(Array) ? v : [v] }.select { |v| v.is_a?(String) }
|
|
49
|
+
end
|
|
50
|
+
|
|
51
|
+
def vendored?(path)
|
|
52
|
+
path.include?('/vendor/') || path.end_with?('.min.js') || EXCLUDE_FILES.include?(path)
|
|
53
|
+
end
|
|
54
|
+
|
|
55
|
+
# Which referenced paths must carry a tag.
|
|
56
|
+
def taggable?(path)
|
|
57
|
+
return false if path.end_with?('/') || vendored?(path)
|
|
58
|
+
|
|
59
|
+
ext = File.extname(path)
|
|
60
|
+
return false if %w[.md .json].include?(ext)
|
|
61
|
+
|
|
62
|
+
CODE_EXT.include?(ext) || NOEXT_FILES.include?(path) || (path.start_with?('scripts/bin/') && ext.empty?)
|
|
63
|
+
end
|
|
64
|
+
|
|
65
|
+
def tag_text(ids)
|
|
66
|
+
(ids.length == 1 ? 'Feature: ' : 'Features: ') + ids.join(', ')
|
|
67
|
+
end
|
|
68
|
+
|
|
69
|
+
def already_tagged?(raw, ids)
|
|
70
|
+
head = raw[0, 500].to_s
|
|
71
|
+
ids.any? { |id| head.include?(id) }
|
|
72
|
+
end
|
|
73
|
+
|
|
74
|
+
# Insert the tag with type-aware placement, preserving the file's line endings.
|
|
75
|
+
def insert_tag(path, ids)
|
|
76
|
+
raw = File.binread(path).force_encoding('UTF-8')
|
|
77
|
+
return :skipped if already_tagged?(raw, ids)
|
|
78
|
+
|
|
79
|
+
nl = raw.include?("\r\n") ? "\r\n" : "\n"
|
|
80
|
+
ext = File.extname(path)
|
|
81
|
+
tag = tag_text(ids)
|
|
82
|
+
lines = raw.each_line.to_a
|
|
83
|
+
|
|
84
|
+
if ext == '.html' && raw.lstrip.start_with?('---')
|
|
85
|
+
idx = lines.index { |l| l.strip == '---' } || 0
|
|
86
|
+
lines.insert(idx + 1, "# #{tag}#{nl}") # invisible YAML front-matter comment
|
|
87
|
+
elsif ext == '.html'
|
|
88
|
+
lines.unshift("{% comment %} #{tag} {% endcomment %}#{nl}") # stripped at build
|
|
89
|
+
else
|
|
90
|
+
prefix = SLASH_EXT.include?(ext) ? '//' : '#'
|
|
91
|
+
line = "#{prefix} #{tag}#{nl}"
|
|
92
|
+
first = lines[0].to_s
|
|
93
|
+
if first.start_with?('#!') || first.lstrip.start_with?('# syntax=') || first.lstrip.start_with?('# escape=')
|
|
94
|
+
lines.insert(1, line) # keep shebang / Dockerfile directive on line 1
|
|
95
|
+
else
|
|
96
|
+
lines.unshift(line)
|
|
97
|
+
end
|
|
98
|
+
end
|
|
99
|
+
|
|
100
|
+
File.binwrite(path, lines.join)
|
|
101
|
+
:written
|
|
102
|
+
end
|
|
103
|
+
|
|
104
|
+
data = load_yaml(MIRROR)
|
|
105
|
+
feats = data && data['features']
|
|
106
|
+
abort 'tag-features: could not read features registry' unless feats.is_a?(Array)
|
|
107
|
+
|
|
108
|
+
by_file = Hash.new { |h, k| h[k] = [] }
|
|
109
|
+
feats.each do |f|
|
|
110
|
+
next if f['implemented'] == false # removed features keep (absent) refs; nothing to tag
|
|
111
|
+
|
|
112
|
+
ref_paths(f['references']).each do |p|
|
|
113
|
+
by_file[p] << f['id'] if taggable?(p) && File.exist?(p)
|
|
114
|
+
end
|
|
115
|
+
end
|
|
116
|
+
|
|
117
|
+
if MODE == :write
|
|
118
|
+
written = 0
|
|
119
|
+
by_file.each { |path, ids| written += 1 if insert_tag(path, ids.uniq.sort) == :written }
|
|
120
|
+
puts "tag-features: wrote #{written} tag(s); #{by_file.size - written} already current"
|
|
121
|
+
exit 0
|
|
122
|
+
end
|
|
123
|
+
|
|
124
|
+
missing = by_file.reject do |path, ids|
|
|
125
|
+
already_tagged?(File.binread(path).force_encoding('UTF-8'), ids.uniq.sort)
|
|
126
|
+
end
|
|
127
|
+
|
|
128
|
+
if missing.empty?
|
|
129
|
+
puts "tag-features: all #{by_file.size} referenced source files carry their Feature tag"
|
|
130
|
+
exit 0
|
|
131
|
+
end
|
|
132
|
+
|
|
133
|
+
warn "tag-features: #{missing.length} referenced source file(s) missing a `Feature: ZER0-NNN` comment:"
|
|
134
|
+
missing.each { |path, ids| warn " - #{path} (needs #{ids.uniq.sort.join(', ')})" }
|
|
135
|
+
warn 'Fix: run `ruby scripts/tag-features --write` (or add the comment by hand).'
|
|
136
|
+
exit 1
|
|
@@ -81,6 +81,13 @@ feats.each_with_index do |f, i|
|
|
|
81
81
|
die "#{id}: required field `#{key}` is missing/empty" if val.nil? || (val.respond_to?(:empty?) && val.empty?)
|
|
82
82
|
end
|
|
83
83
|
|
|
84
|
+
# Title/description are rendered UNwrapped into HTML on /features/; a raw
|
|
85
|
+
# angle bracket (e.g. "/authors/<key>/") becomes a stray tag that swallows
|
|
86
|
+
# every following card. Keep them plain prose.
|
|
87
|
+
%w[title description].each do |key|
|
|
88
|
+
die "#{id}: `#{key}` must not contain raw `<`/`>` (breaks HTML on /features/ — use :key or <)" if f[key].to_s =~ /[<>]/
|
|
89
|
+
end
|
|
90
|
+
|
|
84
91
|
die "#{id}: id must match ZER0-NNN" unless f['id'] =~ /\AZER0-\d{3}\z/
|
|
85
92
|
die "#{id}: duplicate id" if seen[f['id']]
|
|
86
93
|
seen[f['id']] = true
|
data/scripts/vendor-install.sh
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: jekyll-theme-zer0
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.26.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Amr Abdel
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-07-
|
|
11
|
+
date: 2026-07-07 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: jekyll
|
|
@@ -83,6 +83,7 @@ files:
|
|
|
83
83
|
- _data/backlog.yml
|
|
84
84
|
- _data/content_statistics.yml
|
|
85
85
|
- _data/features.yml
|
|
86
|
+
- _data/feedback_types.yml
|
|
86
87
|
- _data/generate_statistics.rb
|
|
87
88
|
- _data/generate_statistics.sh
|
|
88
89
|
- _data/github-actions-example.yml
|
|
@@ -98,7 +99,6 @@ files:
|
|
|
98
99
|
- _data/navigation/quickstart.yml
|
|
99
100
|
- _data/posts_organization.yml
|
|
100
101
|
- _data/prerequisites.yml
|
|
101
|
-
- _data/prompts.yml
|
|
102
102
|
- _data/roadmap.yml
|
|
103
103
|
- _data/roadmap_plan.yml
|
|
104
104
|
- _data/routing.yml
|
|
@@ -114,6 +114,7 @@ files:
|
|
|
114
114
|
- _includes/analytics/google-tag-manager-head.html
|
|
115
115
|
- _includes/analytics/posthog.html
|
|
116
116
|
- _includes/components/README.md
|
|
117
|
+
- _includes/components/admin-links.html
|
|
117
118
|
- _includes/components/admin-tabs.html
|
|
118
119
|
- _includes/components/ai-chat.html
|
|
119
120
|
- _includes/components/analytics-dashboard.html
|
|
@@ -143,6 +144,7 @@ files:
|
|
|
143
144
|
- _includes/components/nav-editor.html
|
|
144
145
|
- _includes/components/nav-export.html
|
|
145
146
|
- _includes/components/nav-overview.html
|
|
147
|
+
- _includes/components/page-feedback.html
|
|
146
148
|
- _includes/components/post-card.html
|
|
147
149
|
- _includes/components/post-type-badge.html
|
|
148
150
|
- _includes/components/powered-by.html
|
|
@@ -173,6 +175,7 @@ files:
|
|
|
173
175
|
- _includes/content/transclude.html
|
|
174
176
|
- _includes/core/branding.html
|
|
175
177
|
- _includes/core/color-mode-init.html
|
|
178
|
+
- _includes/core/console-capture.html
|
|
176
179
|
- _includes/core/footer-fabs.html
|
|
177
180
|
- _includes/core/footer.html
|
|
178
181
|
- _includes/core/head.html
|
|
@@ -191,8 +194,10 @@ files:
|
|
|
191
194
|
- _includes/navigation/navbar.html
|
|
192
195
|
- _includes/navigation/section-sidebar.html
|
|
193
196
|
- _includes/navigation/sidebar-categories.html
|
|
197
|
+
- _includes/navigation/sidebar-config.html
|
|
194
198
|
- _includes/navigation/sidebar-folders.html
|
|
195
199
|
- _includes/navigation/sidebar-left.html
|
|
200
|
+
- _includes/navigation/sidebar-nav.html
|
|
196
201
|
- _includes/navigation/sidebar-right.html
|
|
197
202
|
- _includes/navigation/toc-fab.html
|
|
198
203
|
- _includes/navigation/unified-drawer.html
|
|
@@ -227,7 +232,6 @@ files:
|
|
|
227
232
|
- _layouts/stats.html
|
|
228
233
|
- _layouts/tag.html
|
|
229
234
|
- _layouts/welcome.html
|
|
230
|
-
- _plugins/admin_page_urls.rb
|
|
231
235
|
- _plugins/author_pages_generator.rb
|
|
232
236
|
- _plugins/content_statistics_generator.rb
|
|
233
237
|
- _plugins/obsidian_links.rb
|
|
@@ -243,6 +247,7 @@ files:
|
|
|
243
247
|
- _sass/components/_footer.scss
|
|
244
248
|
- _sass/components/_notes-index.scss
|
|
245
249
|
- _sass/components/_notes.scss
|
|
250
|
+
- _sass/components/_page-feedback.scss
|
|
246
251
|
- _sass/components/_post-navigation.scss
|
|
247
252
|
- _sass/components/_search-modal.scss
|
|
248
253
|
- _sass/components/_skeleton.scss
|
|
@@ -282,6 +287,7 @@ files:
|
|
|
282
287
|
- _sass/tokens/_spacing.scss
|
|
283
288
|
- _sass/tokens/_typography.scss
|
|
284
289
|
- _sass/utilities/_focus.scss
|
|
290
|
+
- _sass/utilities/_layout.scss
|
|
285
291
|
- _sass/utilities/_motion.scss
|
|
286
292
|
- assets/css/custom.css
|
|
287
293
|
- assets/css/main.scss
|
|
@@ -322,6 +328,7 @@ files:
|
|
|
322
328
|
- assets/js/obsidian-graph.js
|
|
323
329
|
- assets/js/obsidian-local-graph.js
|
|
324
330
|
- assets/js/obsidian-wiki-links.js
|
|
331
|
+
- assets/js/page-feedback.js
|
|
325
332
|
- assets/js/palette-generator.js
|
|
326
333
|
- assets/js/particles-source.js
|
|
327
334
|
- assets/js/particles.js
|
|
@@ -498,11 +505,13 @@ files:
|
|
|
498
505
|
- scripts/platform/setup-wsl.sh
|
|
499
506
|
- scripts/post-template-setup.sh
|
|
500
507
|
- scripts/release
|
|
508
|
+
- scripts/requirements.txt
|
|
501
509
|
- scripts/setup.sh
|
|
502
510
|
- scripts/sync-backlog.rb
|
|
503
511
|
- scripts/sync-backlog.sh
|
|
504
512
|
- scripts/sync-plan.rb
|
|
505
513
|
- scripts/sync-plan.sh
|
|
514
|
+
- scripts/tag-features
|
|
506
515
|
- scripts/test-auto-version.sh
|
|
507
516
|
- scripts/test-mermaid.sh
|
|
508
517
|
- scripts/test-notebook-conversion.sh
|