diff --git a/convert.sh b/convert.sh
deleted file mode 100755
index 60e004f..0000000
--- a/convert.sh
+++ /dev/null
@@ -1,104 +0,0 @@
-#!/bin/bash
-
-set -euo pipefail
-
-# Error handling
-handle_error() {
- echo "Error: $1"
- cleanup
- exit 1
-}
-
-# Cleanup function
-cleanup() {
- rm -f header.html template.html
-}
-
-# Check requirements
-if ! command -v pandoc &> /dev/null; then
- handle_error "pandoc is not installed. Please install it first."
-fi
-
-# Create template
-cat > template.html << 'EOL'
-
-
-
- $header-includes$
-
-
-
-
-
-
- $body$
-
-
-
-
-
-
-
-
-EOL
-
-# Create header with improved meta tags
-cat > header.html << 'EOL'
-
-
-
-
-
-Debrid Services Comparison
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-EOL
-
-# Convert markdown with progress
-echo "Starting conversion process..."
-echo "→ Generating HTML from markdown..."
-pandoc README.md \
- --from gfm \
- --to html5 \
- --standalone \
- --template=template.html \
- --include-in-header=header.html \
- --metadata title="Debrid Services Comparison" \
- --shift-heading-level-by=-1 \
- --toc-depth=2 \
- -o docs/index.html || handle_error "Conversion failed"
-
-# Cleanup
-cleanup
-
-echo "✓ Conversion complete! Output saved as docs/index.html"
\ No newline at end of file