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.
Files changed (157) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +124 -0
  3. data/README.md +4 -4
  4. data/_data/authors.yml +1 -0
  5. data/_data/backlog.yml +26 -1
  6. data/_data/features.yml +73 -45
  7. data/_data/feedback_types.yml +148 -0
  8. data/_data/navigation/README.md +16 -6
  9. data/_data/navigation/main.yml +0 -8
  10. data/_data/roadmap.yml +1 -0
  11. data/_includes/README.md +10 -7
  12. data/_includes/analytics/google-analytics.html +1 -0
  13. data/_includes/analytics/google-tag-manager-body.html +1 -0
  14. data/_includes/analytics/google-tag-manager-head.html +1 -0
  15. data/_includes/analytics/posthog.html +1 -0
  16. data/_includes/components/README.md +3 -1
  17. data/_includes/components/admin-links.html +63 -0
  18. data/_includes/components/admin-tabs.html +1 -0
  19. data/_includes/components/ai-chat.html +27 -5
  20. data/_includes/components/author-eeat.html +1 -0
  21. data/_includes/components/background-customizer.html +1 -0
  22. data/_includes/components/background-settings.html +36 -37
  23. data/_includes/components/component-showcase.html +1 -0
  24. data/_includes/components/cookie-consent.html +1 -0
  25. data/_includes/components/dev-shortcuts.html +1 -8
  26. data/_includes/components/env-switcher.html +90 -138
  27. data/_includes/components/feature-card.html +1 -1
  28. data/_includes/components/halfmoon.html +22 -41
  29. data/_includes/components/info-section.html +127 -130
  30. data/_includes/components/mermaid.html +1 -0
  31. data/_includes/components/nanobar.html +1 -0
  32. data/_includes/components/page-feedback.html +252 -0
  33. data/_includes/components/post-type-badge.html +1 -0
  34. data/_includes/components/preview-image.html +1 -0
  35. data/_includes/components/search-modal.html +1 -0
  36. data/_includes/components/searchbar.html +1 -0
  37. data/_includes/components/shortcuts-modal.html +1 -0
  38. data/_includes/components/theme-info.html +21 -30
  39. data/_includes/components/theme-preview-gallery.html +1 -0
  40. data/_includes/content/backlinks.html +1 -0
  41. data/_includes/content/giscus.html +1 -0
  42. data/_includes/content/intro.html +20 -62
  43. data/_includes/content/jsonld-faq.html +1 -0
  44. data/_includes/content/seo.html +1 -0
  45. data/_includes/content/sitemap.html +1 -0
  46. data/_includes/content/toc.html +1 -0
  47. data/_includes/core/color-mode-init.html +1 -0
  48. data/_includes/core/console-capture.html +89 -0
  49. data/_includes/core/footer.html +1 -0
  50. data/_includes/core/head.html +5 -0
  51. data/_includes/core/header.html +5 -15
  52. data/_includes/navigation/admin-nav.html +1 -0
  53. data/_includes/navigation/breadcrumbs.html +1 -0
  54. data/_includes/navigation/local-graph-fab.html +3 -9
  55. data/_includes/navigation/local-graph.html +4 -9
  56. data/_includes/navigation/navbar.html +1 -0
  57. data/_includes/navigation/sidebar-categories.html +56 -14
  58. data/_includes/navigation/sidebar-config.html +115 -0
  59. data/_includes/navigation/sidebar-folders.html +168 -62
  60. data/_includes/navigation/sidebar-left.html +29 -52
  61. data/_includes/navigation/sidebar-nav.html +30 -0
  62. data/_includes/navigation/sidebar-right.html +1 -0
  63. data/_includes/navigation/toc-fab.html +3 -9
  64. data/_includes/navigation/unified-drawer.html +7 -14
  65. data/_includes/obsidian/full-graph.html +1 -0
  66. data/_includes/setup/wizard.html +1 -0
  67. data/_includes/stats/stats-categories.html +1 -0
  68. data/_includes/stats/stats-header.html +1 -0
  69. data/_includes/stats/stats-metrics.html +1 -0
  70. data/_includes/stats/stats-overview.html +1 -0
  71. data/_includes/stats/stats-tags.html +1 -0
  72. data/_layouts/admin.html +1 -0
  73. data/_layouts/article.html +1 -0
  74. data/_layouts/author.html +1 -0
  75. data/_layouts/authors.html +1 -0
  76. data/_layouts/collection.html +1 -0
  77. data/_layouts/default.html +14 -37
  78. data/_layouts/home.html +1 -0
  79. data/_layouts/index.html +1 -0
  80. data/_layouts/landing.html +1 -0
  81. data/_layouts/news.html +1 -0
  82. data/_layouts/note.html +1 -0
  83. data/_layouts/notebook.html +1 -0
  84. data/_layouts/root.html +6 -2
  85. data/_layouts/search.html +1 -0
  86. data/_layouts/section.html +1 -0
  87. data/_layouts/setup.html +1 -0
  88. data/_layouts/sitemap-collection.html +1 -0
  89. data/_layouts/stats.html +1 -0
  90. data/_layouts/tag.html +1 -0
  91. data/_layouts/welcome.html +1 -0
  92. data/_plugins/author_pages_generator.rb +1 -0
  93. data/_plugins/obsidian_links.rb +1 -0
  94. data/_plugins/preview_image_generator.rb +1 -0
  95. data/_plugins/search_and_sitemap_generator.rb +1 -0
  96. data/_plugins/theme_version.rb +1 -0
  97. data/_sass/components/_author.scss +12 -1
  98. data/_sass/components/_footer.scss +22 -0
  99. data/_sass/components/_page-feedback.scss +276 -0
  100. data/_sass/components/_ui-enhancements.scss +9 -0
  101. data/_sass/core/_docs-layout.scss +3 -78
  102. data/_sass/core/_navbar.scss +10 -27
  103. data/_sass/core/_obsidian.scss +2 -2
  104. data/_sass/core/code-copy.scss +10 -0
  105. data/_sass/custom.scss +1 -0
  106. data/_sass/notebooks.scss +1 -0
  107. data/_sass/theme/_backgrounds.scss +7 -2
  108. data/_sass/tokens/_layers.scss +4 -0
  109. data/_sass/utilities/_layout.scss +11 -0
  110. data/assets/css/main.scss +3 -1
  111. data/assets/js/ai-chat.js +1 -0
  112. data/assets/js/author-profile.js +1 -0
  113. data/assets/js/auto-hide-nav.js +1 -0
  114. data/assets/js/back-to-top.js +1 -0
  115. data/assets/js/background-customizer.js +1 -0
  116. data/assets/js/code-copy.js +1 -0
  117. data/assets/js/halfmoon.js +23 -22
  118. data/assets/js/modules/navigation/gestures.js +1 -0
  119. data/assets/js/modules/navigation/keyboard.js +1 -0
  120. data/assets/js/modules/navigation/scroll-spy.js +1 -0
  121. data/assets/js/modules/navigation/sidebar-state.js +1 -0
  122. data/assets/js/modules/navigation/sidebar-visibility.js +1 -0
  123. data/assets/js/modules/navigation/smooth-scroll.js +1 -0
  124. data/assets/js/modules/theme/appearance.js +52 -16
  125. data/assets/js/nanobar-init.js +1 -0
  126. data/assets/js/navigation.js +1 -0
  127. data/assets/js/obsidian-graph.js +1 -0
  128. data/assets/js/obsidian-wiki-links.js +1 -0
  129. data/assets/js/page-feedback.js +660 -0
  130. data/assets/js/palette-generator.js +1 -0
  131. data/assets/js/particles-source.js +1 -0
  132. data/assets/js/search-modal.js +1 -0
  133. data/assets/js/setup-wizard.js +1 -0
  134. data/assets/js/share-actions.js +1 -0
  135. data/assets/js/skin-editor.js +1 -0
  136. data/assets/js/table-copy.js +1 -0
  137. data/assets/js/theme-customizer.js +1 -0
  138. data/scripts/analyze-commits.sh +1 -0
  139. data/scripts/bin/giscus-discussions +1 -0
  140. data/scripts/bin/install +1 -0
  141. data/scripts/bin/validate +1 -0
  142. data/scripts/build +1 -0
  143. data/scripts/content-review.rb +1 -0
  144. data/scripts/convert-notebooks.sh +4 -3
  145. data/scripts/fix-markdown-format.sh +1 -0
  146. data/scripts/generate-preview-images.sh +1 -0
  147. data/scripts/generate-roadmap.sh +1 -0
  148. data/scripts/install-preview-generator.sh +1 -0
  149. data/scripts/release +1 -0
  150. data/scripts/requirements.txt +11 -0
  151. data/scripts/setup.sh +1 -0
  152. data/scripts/tag-features +136 -0
  153. data/scripts/validate-features.rb +7 -0
  154. data/scripts/vendor-install.sh +1 -0
  155. metadata +13 -4
  156. data/_data/prompts.yml +0 -302
  157. data/_plugins/admin_page_urls.rb +0 -16
@@ -1,3 +1,4 @@
1
+ // Feature: ZER0-065
1
2
  /**
2
3
  * skin-editor.js — Colorffy-inspired skin editor for zer0-mistakes theme
3
4
  *
@@ -1,3 +1,4 @@
1
+ // Feature: ZER0-068
1
2
  /**
2
3
  * Content table CSV copy — injects a toolbar button on markdown/HTML tables
3
4
  * in main reading areas. Scoped to content wrappers; skips admin and sitemap.
@@ -1,3 +1,4 @@
1
+ // Feature: ZER0-065
1
2
  /**
2
3
  * theme-customizer.js
3
4
  * Powers the Theme Customizer admin page.
@@ -1,4 +1,5 @@
1
1
  #!/bin/bash
2
+ # Features: ZER0-015, ZER0-028
2
3
 
3
4
  # ============================================================================
4
5
  # WRAPPER: This script forwards to scripts/utils/analyze-commits
@@ -1,4 +1,5 @@
1
1
  #!/bin/bash
2
+ # Features: ZER0-035, ZER0-073
2
3
 
3
4
  # giscus-discussions — read, draft, and post the GitHub Discussions that back
4
5
  # the site's Giscus comment threads. This is the engine the Claude Code
data/scripts/bin/install CHANGED
@@ -1,4 +1,5 @@
1
1
  #!/usr/bin/env bash
2
+ # Feature: ZER0-003
2
3
  # scripts/bin/install — zer0-mistakes installer entrypoint (v2)
3
4
  #
4
5
  # Routes to scripts/install/cli.sh (new spec-driven architecture).
data/scripts/bin/validate CHANGED
@@ -1,4 +1,5 @@
1
1
  #!/bin/bash
2
+ # Feature: ZER0-048
2
3
 
3
4
  # Canonical preflight validator for zer0-mistakes.
4
5
  # Usage: ./scripts/bin/validate [options]
data/scripts/build CHANGED
@@ -1,4 +1,5 @@
1
1
  #!/bin/bash
2
+ # Feature: ZER0-028
2
3
 
3
4
  # ============================================================================
4
5
  # WRAPPER: This script forwards to scripts/bin/build
@@ -1,4 +1,5 @@
1
1
  #!/usr/bin/env ruby
2
+ # Feature: ZER0-072
2
3
  # frozen_string_literal: true
3
4
 
4
5
  # =============================================================================
@@ -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
@@ -1,4 +1,5 @@
1
1
  #!/bin/bash
2
+ # Feature: ZER0-028
2
3
 
3
4
  # ============================================================================
4
5
  # WRAPPER: This script forwards to scripts/utils/fix-markdown
@@ -1,4 +1,5 @@
1
1
  #!/bin/bash
2
+ # Features: ZER0-004, ZER0-028
2
3
 
3
4
  # ============================================================================
4
5
  # WRAPPER: This script forwards to scripts/features/generate-preview-images
@@ -1,4 +1,5 @@
1
1
  #!/usr/bin/env bash
2
+ # Feature: ZER0-052
2
3
  # =============================================================================
3
4
  # generate-roadmap.sh
4
5
  # =============================================================================
@@ -1,4 +1,5 @@
1
1
  #!/bin/bash
2
+ # Feature: ZER0-004
2
3
 
3
4
  # ============================================================================
4
5
  # WRAPPER: This script forwards to scripts/features/install-preview-generator
data/scripts/release CHANGED
@@ -1,4 +1,5 @@
1
1
  #!/bin/bash
2
+ # Features: ZER0-015, ZER0-028
2
3
 
3
4
  # ============================================================================
4
5
  # WRAPPER: This script forwards to scripts/bin/release
@@ -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
@@ -1,4 +1,5 @@
1
1
  #!/bin/bash
2
+ # Features: ZER0-002, ZER0-028
2
3
 
3
4
  # ============================================================================
4
5
  # WRAPPER: This script forwards to scripts/utils/setup
@@ -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 &lt;)" 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
@@ -1,4 +1,5 @@
1
1
  #!/bin/bash
2
+ # Feature: ZER0-053
2
3
 
3
4
  # Vendor asset installer for zer0-mistakes Jekyll theme
4
5
  # Downloads third-party JS/CSS libraries defined in vendor-manifest.json
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.24.0
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-01 00:00:00.000000000 Z
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