Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file modified docs/assets/favicon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ copyright: |
theme:
name: material
logo: assets/favicon.png
favicon: assets/favicon.png
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🔴 Critical

🧩 Analysis chain

🏁 Script executed:

#!/bin/bash
# First, check if favicon.png exists in the repository
echo "=== Checking for favicon.png ==="
find . -name 'favicon.png' -type f 2>/dev/null

echo ""
echo "=== Checking assets directory structure ==="
find . -name 'assets' -type d 2>/dev/null | head -10

echo ""
echo "=== Full path to any png files in assets directories ==="
find . -path '*/assets/*.png' 2>/dev/null

Repository: qdrant/fastembed

Length of output: 261


🏁 Script executed:

#!/bin/bash
# Read the full mkdocs.yml file to verify structure and completeness
echo "=== Full mkdocs.yml file content ==="
cat -n mkdocs.yml

Repository: qdrant/fastembed

Length of output: 3006


Fix duplicate markdown_extensions section causing first block to be ignored.

The favicon asset exists and is correctly configured. However, the mkdocs.yml file has duplicate markdown_extensions: blocks at lines 50 and 89. In YAML, the second declaration overrides the first, meaning the extensions from lines 50-58 (abbr, admonition, attr_list, def_list, toc) are not loaded. Merge both blocks into a single markdown_extensions: section to preserve all extensions.

🤖 Prompt for AI Agents
In mkdocs.yml (around lines 50-58 and 89), there are two markdown_extensions:
blocks causing the first block (lines ~50-58: abbr, admonition, attr_list,
def_list, toc) to be ignored by the later block at ~89; merge both declarations
into a single markdown_extensions: section that includes all unique entries from
both blocks (preserve order where relevant), remove the duplicate block, and
ensure YAML syntax/indentation is correct so all extensions are loaded.

custom_dir: docs/overrides
icon:
repo: fontawesome/brands/github
Expand Down