Feature: Map authors as tags in Vorname_Nachname format
- Added format_author_as_tag() function to convert author names to tag format - Author names automatically added to tags with spaces replaced by underscores - Example: 'Jörg Lohrer' → 'Jörg_Lohrer' tag - Enables author filtering via WordPress tag taxonomy - Updated documentation to reflect new author handling approach - Version bump to 0.3.0
This commit is contained in:
parent
141b847e97
commit
85f58e2528
3 changed files with 72 additions and 3 deletions
|
|
@ -7,9 +7,10 @@ Automatisierter Workflow zum Erstellen von WordPress-Beiträgen aus Markdown-Dat
|
|||
## ⚠️ Bekannte Einschränkungen
|
||||
|
||||
**Autor-Zuordnung:**
|
||||
- Beiträge werden aktuell immer dem importierenden WordPress-Benutzer zugeordnet
|
||||
- Der `author` aus dem Frontmatter wird extrahiert, aber nicht mit WordPress-Benutzern abgeglichen
|
||||
- **Zu entwickeln:** Automatisches Mapping von Frontmatter-Autoren zu WordPress-User-IDs oder manuelle Zuordnungs-Konfiguration
|
||||
- Beiträge werden immer dem importierenden WordPress-Benutzer zugeordnet (WordPress REST-API Limitation)
|
||||
- Der `author` aus dem Frontmatter wird automatisch als **Tag** im Format `Vorname_Nachname` hinzugefügt
|
||||
- Beispiel: `author: Jörg Lohrer` → Tag: `Jörg_Lohrer`
|
||||
- Dies ermöglicht die Filterung nach Autoren über die WordPress-Tag-Taxonomie
|
||||
|
||||
**Forgejo-Repository-Import:**
|
||||
- Die Batch-Verarbeitung ganzer Repositories wurde noch nicht ausreichend getestet
|
||||
|
|
@ -21,6 +22,7 @@ Automatisierter Workflow zum Erstellen von WordPress-Beiträgen aus Markdown-Dat
|
|||
## Features
|
||||
|
||||
- ✅ **Automatische Metadaten-Extraktion**: name, description, tags, image, author aus YAML-Frontmatter
|
||||
- ✅ **Autor-zu-Tag-Mapping**: Autoren werden automatisch als Tags im Format `Vorname_Nachname` hinzugefügt
|
||||
- ✅ **Drei Verwendungsmodi**: Einzelne URL, YAML-Batch, Forgejo-Repository
|
||||
- ✅ **Duplikatsprüfung**: Verhindert das doppelte Erstellen von Beiträgen und Medien
|
||||
- ✅ **Markdown zu HTML**: Automatische Konvertierung von Markdown-Inhalten
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue