CONVERSION TOOLS - Konvertierungs-Werkzeuge
===========================================

ÜBERSICHT
Die Conversion-Tools in BACH wandeln Dateiformate um
und reparieren/standardisieren Dateien.

UNIVERSAL CONVERTER
-------------------
c_universal_converter.py

Universelles Konvertierungs-Tool für viele Formate.
Unterstützt:
  - Text -> PDF
  - Markdown -> PDF/HTML
  - JSON -> CSV
  - Excel -> CSV
  - Bilder (Resize, Format)

Aufruf: python tools/c_universal_converter.py <eingabe> <ausgabe>

MARKDOWN -> PDF
---------------
c_md_to_pdf.py

Konvertiert Markdown-Dateien in PDF mit Styling.
Features:
  - Code-Highlighting
  - Tabellen
  - Bilder einbetten

Aufruf: python tools/c_md_to_pdf.py <md-datei> [--output <pdf>]

ENCODING & TEXT
---------------

c_encoding_fixer.py
  Repariert Encoding-Probleme (UTF-8, Latin-1, etc.)
  Erkennt automatisch falsche Kodierung.
  Aufruf: python tools/c_encoding_fixer.py <datei>

c_umlaut_fixer.py
  Repariert deutsche Umlaute in Dateien.
  Ersetzt kaputte Zeichen (ae->ä, ue->ü, etc.)
  Aufruf: python tools/c_umlaut_fixer.py <datei>

c_standard_fixer.py
  Standardisiert Code-Formatierung.
  Entfernt trailing whitespace, vereinheitlicht Zeilenenden.
  Aufruf: python tools/c_standard_fixer.py <datei>

JSON TOOLS
----------

c_json_repair.py
  Repariert kaputte JSON-Dateien.
  Fixiert fehlende Kommas, Quotes, Klammern.
  Aufruf: python tools/c_json_repair.py <datei>

json_fixer.py
  Alternative JSON-Reparatur mit erweiterten Optionen.
  Aufruf: python tools/json_fixer.py <datei>

CODE TOOLS
----------

c_import_organizer.py
  Sortiert und organisiert Python-Imports.
  Gruppiert: Standard, Third-Party, Local.
  Aufruf: python tools/c_import_organizer.py <datei>

c_indent_checker.py
  Prüft und korrigiert Einrückung.
  Optionen: --tabs, --spaces N
  Aufruf: python tools/c_indent_checker.py <datei>

EXPORT
------

export_txt.py
  Exportiert Dateien als Plain Text.
  Aufruf: python tools/export_txt.py <datei>

exporter.py
  Allgemeiner Exporter für verschiedene Formate.
  Aufruf: python tools/exporter.py <datei> --format <fmt>

BATCH-OPERATIONEN
-----------------

batch_file_ops.py
  Führt Datei-Operationen auf mehreren Dateien aus.
  Operationen: rename, copy, move, convert
  Aufruf: python tools/batch_file_ops.py <operation> <pattern>

SIEHE AUCH
----------
bach --help tools         Tool-Übersicht
bach --help backup        Backup-Tools
bach --help maintain      Wartungs-Tools
