Zuletzt bearbeitet vor 4 Tagen
von Xineohp1506

Modul:Publikation/Buch: Unterschied zwischen den Versionen

Keine Bearbeitungszusammenfassung
Keine Bearbeitungszusammenfassung
 
(130 dazwischenliegende Versionen desselben Benutzers werden nicht angezeigt)
Zeile 1: Zeile 1:
local buch = {}
local buch = {}
local getArgs = require('Module:Arguments').getArgs
local helper = require("Modul:Publikation/Helper")
local related = require("Modul:Publikation/Related")


function buch.render(args, main)
-- Funktion zur Generierung von Kategorien
     local output = '<table class="publikation buch">'
local function addCategories(args)
    local categories = ""
   
    -- Kategorie "Bücher"
    categories = categories .. "[[Kategorie:Bücher|" .. args["Titel"] .. "]]\n"
 
    -- Kategorie "Alle Publikationen"
    categories = categories .. "[[Kategorie:Alle Publikationen|" .. args["Titel"] .. "]]\n"
   
    -- Kategorie für Genre
    if args["Keyword"] and args["Keyword"] ~= "" then
        for genre in mw.text.gsplit(args["Keyword"], ",") do
            genre = mw.text.trim(genre)
            categories = categories .. "[[Category:" .. genre .. "|" .. args["Titel"] .. "]]\n"
        end
    end
 
    -- Kategorie für Sprache
    if args["Sprache"] and args["Sprache"] ~= "" then
        categories = categories .. "[[Category:" .. args["Sprache"] .. "|" .. args["Titel"] .. "]]\n"
    end
 
    -- Kategorie für Verlag
    if args["Verlag"] and args["Verlag"] ~= "" then
        categories = categories .. "[[Category:" .. args["Verlag"] .. "|" .. args["Titel"] .. "]]\n"
    end
 
    -- Kategorie für Serie
    if args["Hat Serie"] and args["Hat Serie"] ~= "" then
        categories = categories .. "[[Category:Serie:" .. args["Hat Serie"] .. "|" .. args["Titel"] .. "]]\n"
    end
 
    -- Kategorie für Autor(en)
    if args["Autor"] and args["Autor"] ~= "" then
        for author in mw.text.gsplit(args["Autor"], ",") do
            author = mw.text.trim(author)
            categories = categories .. "[[Category:Autor:" .. author .. "|" .. args["Titel"] .. "]]\n"
        end
    end
 
    -- Kategorie für Standort
    if args["Standort"] and args["Standort"] ~= "" then
        categories = categories .. "[[Category:Standort:" .. args["Standort"] .. "|" .. args["Titel"] .. "]]\n"
    end
 
    return categories
end
 
function buch.render(frame)
    local args = getArgs(frame) -- Argumente aus dem Frame extrahieren
    local output = "" -- Initialisierung von output
   
    -- Setze den DISPLAYTITLE basierend auf dem Titel des Buches
    if args["Titel"] then
        helper.setDisplayTitle({title = args["Titel"]})
    end
   
    -- Setze das semantische Attribut "Hat Serie", falls es definiert ist
    if args["Hat Serie"] and args["Hat Serie"] ~= "" then
        helper.setProperty({ args = { ["Hat Serie"] = args["Hat Serie"] } })
    end
   
    -- Setze das semantische Attribut "Typ", falls es definiert ist
    if args["Typ"] and args["Typ"] ~= "" then
        helper.setProperty({ args = { ["Typ"] = args["Typ"] } })
    end
 
    -- Setze die Inhaltszusammenfassung als semantischen Wert
    if args["Inhaltszusammenfassung"] and args["Inhaltszusammenfassung"] ~= "" then
        local rawSummary = mw.text.unstripNoWiki(args["Inhaltszusammenfassung"]):gsub("<.->", ""):gsub("%[%[.-%]%]", ""):gsub("%{.-%}", "") -- Entferne HTML-Tags und MediaWiki-Markierungen, bewahre geschützte Bereiche wie <nowiki>
        local truncatedSummary = mw.ustring.sub(rawSummary, 1, 250) -- Begrenze auf 250 Zeichen
        helper.setProperty({ args = { ["Inhaltszusammenfassung"] = truncatedSummary } }) -- Setze den semantischen Wert
        mw.ext.seo.set{description = truncatedSummary} -- Setze die Beschreibung
    end
   
    -- OpenGraph-Bild für SEO
     local coverImage = args["Coverbild"] or "DefaultBuchCover.webp"
    mw.ext.seo.set{["og:image"] = mw.uri.fullUrl("File:Library:" .. coverImage)}
   
    -- Coverbild semantisch setzen
if args["Coverbild"] and args["Coverbild"] ~= "" then
    helper.setProperty({ args = { ["Hat Cover"] = args["Coverbild"] } })
end
   
    -- Erstelle die Ausgabe
    output = output .. '<table class="publikation buch table">'


     -- Coverbild
     -- Coverbild
    local defaultCover = args["Typ"] == "Buch" and "Library:Cover:DefaultBook.webp" or "Library:Cover:DefaultSeries.webp"
output = output .. '<tr><td colspan="2" style="text-align: center;">' .. helper.getCoverImage({cover = args["Coverbild"], defaultCover = "DefaultBuchCover.webp"}) .. '</td></tr>'
    output = output .. '<tr><td colspan="2" style="text-align: center;">' .. main.getCoverImage(args["Coverbild"], defaultCover) .. '</td></tr>'
   
 
     -- Titel
     -- Titel
     output = output .. '<tr><td><strong>Titel</strong></td><td>[[Hat Titel::' .. (args["Titel"] or "Unbekannt") .. ']]</td></tr>'
     output = output .. '<tr><td><strong>Titel</strong></td><td>[[Hat Titel::' .. (args["Titel"] or "Unbekannt") .. ']]</td></tr>'
   
    -- Original Titel
    if args["Original Titel"] and args["Original Titel"] ~= "" then
        output = output .. '<tr><td><strong>Original Titel</strong></td><td>[[Original Titel::' .. args["Original Titel"] .. ']]</td></tr>'
    end


     -- Autoren (Mehrfachwerte als Liste)
     -- Autoren mit separater semantischer Speicherung und Links
     if args["Autor"] then
     if args["Autor"] then
         output = output .. '<tr><td><strong>Autor(en)</strong></td><td>'
         output = output .. '<tr><td><strong>Autor(en)</strong></td><td>'
         for author in mw.text.gsplit(args["Autor"], ",") do
         for author in mw.text.gsplit(args["Autor"], ",") do
             output = output .. '[[Hat Autor::' .. author .. ']], '
            author = mw.text.trim(author)
            local authorPage = "Library:Autor:" .. author:gsub(" ", "_")
            helper.setProperty({ args = { ["Hat Autor"] = author } }) -- Semantischen Wert setzen
             output = output .. '[[' .. authorPage .. '|' .. author .. ']], ' -- Link erstellen
         end
         end
         output = output:sub(1, -3) .. '</td></tr>' -- Entfernt das letzte Komma
         output = output:sub(1, -3) .. '</td></tr>' -- Entfernt das letzte Komma
Zeile 21: Zeile 116:


     -- Verlag
     -- Verlag
     output = output .. (args["Verlag"] and '<tr><td><strong>Verlag</strong></td><td>[[Verlag::' .. args["Verlag"] .. ']]</td></tr>' or "")
     if args["Verlag"] then
        output = output .. '<tr><td><strong>Verlag</strong></td><td>[[Verlag::' .. args["Verlag"] .. ']]</td></tr>'
    end


     -- Band und Serie
     -- Band und Serie
     if args["Band"] then
     if args["Band"] then
         local bandText = 'Band ' .. args["Band"]
         local seriesID = args["SerienID"]
         if args["Hat Serie"] then
         local bandText = args["Band"]
            local seriesPage = 'Library:Serie:' .. args["Hat Serie"]:gsub(" ", "_")
        helper.setProperty({ args = { ["Band"] = args["Band"] } }) -- Semantischen Wert setzen
             local totalVolumes = buch.getTotalVolumes(seriesPage)
 
             local serienLink = '[[' .. seriesPage .. '|' .. args["Hat Serie"] .. ']]'
        if seriesID then
             local seriesPageTitle = helper.getSeriesPageTitle({ args = { SerienID = seriesID } })
             local completeVolumes = "Keine Ergebnisse gefunden."


             if totalVolumes then
             if seriesPageTitle ~= "Keine Ergebnisse gefunden." then
                 bandText = bandText .. ' von ' .. totalVolumes .. ' (' .. serienLink .. ')'
                 completeVolumes = helper.getCompleteVolumesByTitle({ args = { seriesPageTitle, "Complete volumes" } })
            else
                bandText = bandText .. ' (' .. serienLink .. ')'
             end
             end


             -- Semantische Verbindung setzen
             bandText = bandText .. " von " .. (completeVolumes or "?") .. ' ([[' .. mw.uri.anchorEncode(seriesPageTitle) .. '|' .. (args["Hat Serie"] or "Serie") .. "]])"
            output = output .. '<tr><td><strong>Band</strong></td><td>[[Hat Serie::' .. args["Hat Serie"] .. ']] ' .. bandText .. '</td></tr>'
        else
            output = output .. '<tr><td><strong>Band</strong></td><td>' .. bandText .. '</td></tr>'
         end
         end
    elseif args["Hat Serie"] then
         output = output .. '<tr><td><strong>Band</strong></td><td>' .. bandText .. '</td></tr>'
        local seriesPage = 'Library:Serie:' .. args["Hat Serie"]:gsub(" ", "_")
        local serienLink = '[[' .. seriesPage .. '|' .. args["Hat Serie"] .. ']]'
         output = output .. '<tr><td><strong>Serie</strong></td><td>[[Hat Serie::' .. args["Hat Serie"] .. ']] ' .. serienLink .. '</td></tr>'
     end
     end


     -- Erscheinungsjahr
     -- Erscheinungsjahr
     output = output .. (args["Erscheinungsjahr"] and '<tr><td><strong>Erscheinungsjahr</strong></td><td>[[Erscheinungsjahr::' .. args["Erscheinungsjahr"] .. ']]</td></tr>' or "")
     if args["Erscheinungsjahr"] then
 
        output = output .. '<tr><td><strong>Erscheinungsjahr</strong></td><td>[[Erscheinungsjahr::' .. args["Erscheinungsjahr"] .. ']]</td></tr>'
    -- ISBN
    if args["ISBN-10"] or args["ISBN-13"] then
        local isbn10 = main.getIsbnLink(args["ISBN-10"], "ISBN-10")
        local isbn13 = main.getIsbnLink(args["ISBN-13"], "ISBN-13")
        output = output .. '<tr><td><strong>ISBN</strong></td><td>' .. isbn10 .. (isbn10 ~= "" and isbn13 ~= "" and " / " or "") .. isbn13 .. '</td></tr>'
     end
     end


-- ISBN
if args["ISBN-10"] or args["ISBN-13"] then
    local isbn10 = args["ISBN-10"] and helper.getIsbnLink({isbn = args["ISBN-10"], version = "ISBN-10"}) or ""
    local isbn13 = args["ISBN-13"] and helper.getIsbnLink({isbn = args["ISBN-13"], version = "ISBN-13"}) or ""
    -- Semantische Werte setzen
    if args["ISBN-10"] and args["ISBN-10"] ~= "" then
        helper.setProperty({args = {["ISBN-10"] = args["ISBN-10"]}})
    end
    if args["ISBN-13"] and args["ISBN-13"] ~= "" then
        helper.setProperty({args = {["ISBN-13"] = args["ISBN-13"]}})
    end
    -- Anzeige der ISBN
    output = output .. '<tr><td><strong>ISBN</strong></td><td>' .. isbn10 .. (isbn10 ~= "" and isbn13 ~= "" and " / " or "") .. isbn13 .. '</td></tr>'
end
     -- Sprache
     -- Sprache
     output = output .. (args["Sprache"] and '<tr><td><strong>Sprache</strong></td><td>[[Sprache::' .. args["Sprache"] .. ']]</td></tr>' or "")
     if args["Sprache"] then
        output = output .. '<tr><td><strong>Sprache</strong></td><td>[[Sprache::' .. args["Sprache"] .. ']]</td></tr>'
    end


     -- Standort
     -- Standort
     output = output .. (args["Standort"] and '<tr><td><strong>Standort</strong></td><td>[[Standort::' .. args["Standort"] .. ']]</td></tr>' or "")
     if args["Standort"] then
        output = output .. '<tr><td><strong>Standort</strong></td><td>[[Standort::' .. args["Standort"] .. ']]</td></tr>'
    end


     -- Umfang (Seitenanzahl)
     -- Umfang (Seitenanzahl)
     output = output .. (args["Umfang"] and '<tr><td><strong>Umfang</strong></td><td>[[Umfang::' .. args["Umfang"] .. ']] Seiten</td></tr>' or "")
     if args["Umfang"] then
        output = output .. '<tr><td><strong>Umfang</strong></td><td>[[Umfang::' .. args["Umfang"] .. ']] Seiten</td></tr>'
    end


     -- Preis
     -- Preis
     output = output .. (args["Preis"] and '<tr><td><strong>Preis</strong></td><td>[[Preis::' .. args["Preis"] .. ']]</td></tr>' or "")
     if args["Preis"] then
        output = output .. '<tr><td><strong>Preis</strong></td><td>[[Preis::' .. args["Preis"] .. ']]</td></tr>'
    end
   
    -- Genre (Mehrfachwerte als Liste)
    if args["Keyword"] and args["Keyword"] ~= "" then
        output = output .. '<tr><td><strong>Genre</strong></td><td>'
        for genre in mw.text.gsplit(args["Keyword"], ",") do
            genre = mw.text.trim(genre) -- Entfernt führende/trailing Whitespaces
            output = output .. '[[Keyword::' .. genre .. ']], '
        end
        output = output:sub(1, -3) .. '</td></tr>' -- Entfernt das letzte Komma
    end


    -- Datensatz ID (z. B. DNB-ID)
    if args["Datensatz ID"] then
        local dnbLink = "https://d-nb.info/" .. args["Datensatz ID"]
        output = output .. '<tr><td><strong>Datensatz ID</strong></td><td>' .. args["Datensatz ID"] .. ' ([' .. dnbLink .. ' DNB])</td></tr>'
        helper.setProperty({args = {["Datensatz ID"] = args["Datensatz ID"]}})
    end
   
     -- Inhaltszusammenfassung
     -- Inhaltszusammenfassung
     output = output .. (args["Inhaltszusammenfassung"] and '<tr><td><strong>Inhaltszusammenfassung</strong></td><td>' .. args["Inhaltszusammenfassung"] .. '</td></tr>' or "")
     if args["Inhaltszusammenfassung"] then
        output = output .. '<tr><td><strong>Inhaltszusammenfassung</strong></td><td>' .. args["Inhaltszusammenfassung"] .. '</td></tr>'
    end


     output = output .. '</table>'
     output = output .. '</table>'
   
    -- Weitere Bücher in der Serie (unterhalb der Tabelle)
    if args["Hat Serie"] then
        local relatedBooks = related.buchRelated({
    series = args["Hat Serie"],
    limit = 5,
    defaultCover = "DefaultBuchCover.webp" -- Default-Cover
})
        output = output .. '<div class="related-books">' ..
                '<h2>Weitere Bücher in der Serie:</h2>' ..
                  (relatedBooks or "<p>Keine weiteren Bände verfügbar.</p>") ..
                  '</div>'
    end


    -- Kategorien hinzufügen
    output = output .. addCategories(args)
     return output
     return output
end
-- Funktion zur dynamischen Abfrage der Gesamtbände
function buch.getTotalVolumes(seriesPage)
    local query = "[[" .. seriesPage .. "]][[Gesamtbände::+]]"
    local result = mw.smw.getQueryResult(query)
    if result and result.results and next(result.results) then
        local key = next(result.results)
        local data = result.results[key]
        return data.properties["Gesamtbände"] and data.properties["Gesamtbände"][1] or nil
    end
    return nil
end
end


return buch
return buch

Aktuelle Version vom 30. November 2024, 00:40 Uhr

Die Dokumentation für dieses Modul kann unter Modul:Publikation/Buch/Doku erstellt werden

local buch = {}
local getArgs = require('Module:Arguments').getArgs
local helper = require("Modul:Publikation/Helper")
local related = require("Modul:Publikation/Related")

-- Funktion zur Generierung von Kategorien
local function addCategories(args)
    local categories = ""
    
    -- Kategorie "Bücher"
    categories = categories .. "[[Kategorie:Bücher|" .. args["Titel"] .. "]]\n"

    -- Kategorie "Alle Publikationen"
    categories = categories .. "[[Kategorie:Alle Publikationen|" .. args["Titel"] .. "]]\n"
    
    -- Kategorie für Genre
    if args["Keyword"] and args["Keyword"] ~= "" then
        for genre in mw.text.gsplit(args["Keyword"], ",") do
            genre = mw.text.trim(genre)
            categories = categories .. "[[Category:" .. genre .. "|" .. args["Titel"] .. "]]\n"
        end
    end

    -- Kategorie für Sprache
    if args["Sprache"] and args["Sprache"] ~= "" then
        categories = categories .. "[[Category:" .. args["Sprache"] .. "|" .. args["Titel"] .. "]]\n"
    end

    -- Kategorie für Verlag
    if args["Verlag"] and args["Verlag"] ~= "" then
        categories = categories .. "[[Category:" .. args["Verlag"] .. "|" .. args["Titel"] .. "]]\n"
    end

    -- Kategorie für Serie
    if args["Hat Serie"] and args["Hat Serie"] ~= "" then
        categories = categories .. "[[Category:Serie:" .. args["Hat Serie"] .. "|" .. args["Titel"] .. "]]\n"
    end

    -- Kategorie für Autor(en)
    if args["Autor"] and args["Autor"] ~= "" then
        for author in mw.text.gsplit(args["Autor"], ",") do
            author = mw.text.trim(author)
            categories = categories .. "[[Category:Autor:" .. author .. "|" .. args["Titel"] .. "]]\n"
        end
    end

    -- Kategorie für Standort
    if args["Standort"] and args["Standort"] ~= "" then
        categories = categories .. "[[Category:Standort:" .. args["Standort"] .. "|" .. args["Titel"] .. "]]\n"
    end

    return categories
end

function buch.render(frame)
    local args = getArgs(frame) -- Argumente aus dem Frame extrahieren
    local output = "" -- Initialisierung von output
    
    -- Setze den DISPLAYTITLE basierend auf dem Titel des Buches
    if args["Titel"] then
        helper.setDisplayTitle({title = args["Titel"]})
    end
    
    -- Setze das semantische Attribut "Hat Serie", falls es definiert ist
    if args["Hat Serie"] and args["Hat Serie"] ~= "" then
        helper.setProperty({ args = { ["Hat Serie"] = args["Hat Serie"] } })
    end
    
    -- Setze das semantische Attribut "Typ", falls es definiert ist
    if args["Typ"] and args["Typ"] ~= "" then
        helper.setProperty({ args = { ["Typ"] = args["Typ"] } })
    end

    -- Setze die Inhaltszusammenfassung als semantischen Wert
    if args["Inhaltszusammenfassung"] and args["Inhaltszusammenfassung"] ~= "" then
        local rawSummary = mw.text.unstripNoWiki(args["Inhaltszusammenfassung"]):gsub("<.->", ""):gsub("%[%[.-%]%]", ""):gsub("%{.-%}", "") -- Entferne HTML-Tags und MediaWiki-Markierungen, bewahre geschützte Bereiche wie <nowiki>
        local truncatedSummary = mw.ustring.sub(rawSummary, 1, 250) -- Begrenze auf 250 Zeichen
        helper.setProperty({ args = { ["Inhaltszusammenfassung"] = truncatedSummary } }) -- Setze den semantischen Wert
        mw.ext.seo.set{description = truncatedSummary} -- Setze die Beschreibung
    end
    
    -- OpenGraph-Bild für SEO
    local coverImage = args["Coverbild"] or "DefaultBuchCover.webp"
    mw.ext.seo.set{["og:image"] = mw.uri.fullUrl("File:Library:" .. coverImage)}
    
    -- Coverbild semantisch setzen
	if args["Coverbild"] and args["Coverbild"] ~= "" then
    	helper.setProperty({ args = { ["Hat Cover"] = args["Coverbild"] } })
	end
    
    -- Erstelle die Ausgabe
    output = output .. '<table class="publikation buch table">'

    -- Coverbild
	output = output .. '<tr><td colspan="2" style="text-align: center;">' .. helper.getCoverImage({cover = args["Coverbild"], defaultCover = "DefaultBuchCover.webp"}) .. '</td></tr>'
    
    -- Titel
    output = output .. '<tr><td><strong>Titel</strong></td><td>[[Hat Titel::' .. (args["Titel"] or "Unbekannt") .. ']]</td></tr>'
    
    -- Original Titel
    if args["Original Titel"] and args["Original Titel"] ~= "" then
        output = output .. '<tr><td><strong>Original Titel</strong></td><td>[[Original Titel::' .. args["Original Titel"] .. ']]</td></tr>'
    end

    -- Autoren mit separater semantischer Speicherung und Links
    if args["Autor"] then
        output = output .. '<tr><td><strong>Autor(en)</strong></td><td>'
        for author in mw.text.gsplit(args["Autor"], ",") do
            author = mw.text.trim(author)
            local authorPage = "Library:Autor:" .. author:gsub(" ", "_")
            helper.setProperty({ args = { ["Hat Autor"] = author } }) -- Semantischen Wert setzen
            output = output .. '[[' .. authorPage .. '|' .. author .. ']], ' -- Link erstellen
        end
        output = output:sub(1, -3) .. '</td></tr>' -- Entfernt das letzte Komma
    end

    -- Verlag
    if args["Verlag"] then
        output = output .. '<tr><td><strong>Verlag</strong></td><td>[[Verlag::' .. args["Verlag"] .. ']]</td></tr>'
    end

    -- Band und Serie
    if args["Band"] then
        local seriesID = args["SerienID"]
        local bandText = args["Band"]
        helper.setProperty({ args = { ["Band"] = args["Band"] } }) -- Semantischen Wert setzen

        if seriesID then
            local seriesPageTitle = helper.getSeriesPageTitle({ args = { SerienID = seriesID } })
            local completeVolumes = "Keine Ergebnisse gefunden."

            if seriesPageTitle ~= "Keine Ergebnisse gefunden." then
                completeVolumes = helper.getCompleteVolumesByTitle({ args = { seriesPageTitle, "Complete volumes" } })
            end

            bandText = bandText .. " von " .. (completeVolumes or "?") .. ' ([[' .. mw.uri.anchorEncode(seriesPageTitle) .. '|' .. (args["Hat Serie"] or "Serie") .. "]])"
        end
        output = output .. '<tr><td><strong>Band</strong></td><td>' .. bandText .. '</td></tr>'
    end

    -- Erscheinungsjahr
    if args["Erscheinungsjahr"] then
        output = output .. '<tr><td><strong>Erscheinungsjahr</strong></td><td>[[Erscheinungsjahr::' .. args["Erscheinungsjahr"] .. ']]</td></tr>'
    end

	-- ISBN
	if args["ISBN-10"] or args["ISBN-13"] then
	    local isbn10 = args["ISBN-10"] and helper.getIsbnLink({isbn = args["ISBN-10"], version = "ISBN-10"}) or ""
	    local isbn13 = args["ISBN-13"] and helper.getIsbnLink({isbn = args["ISBN-13"], version = "ISBN-13"}) or ""
	
	    -- Semantische Werte setzen
	    if args["ISBN-10"] and args["ISBN-10"] ~= "" then
	        helper.setProperty({args = {["ISBN-10"] = args["ISBN-10"]}})
	    end
	    if args["ISBN-13"] and args["ISBN-13"] ~= "" then
	        helper.setProperty({args = {["ISBN-13"] = args["ISBN-13"]}})
	    end
	
	    -- Anzeige der ISBN
	    output = output .. '<tr><td><strong>ISBN</strong></td><td>' .. isbn10 .. (isbn10 ~= "" and isbn13 ~= "" and " / " or "") .. isbn13 .. '</td></tr>'
	end
	
    -- Sprache
    if args["Sprache"] then
        output = output .. '<tr><td><strong>Sprache</strong></td><td>[[Sprache::' .. args["Sprache"] .. ']]</td></tr>'
    end

    -- Standort
    if args["Standort"] then
        output = output .. '<tr><td><strong>Standort</strong></td><td>[[Standort::' .. args["Standort"] .. ']]</td></tr>'
    end

    -- Umfang (Seitenanzahl)
    if args["Umfang"] then
        output = output .. '<tr><td><strong>Umfang</strong></td><td>[[Umfang::' .. args["Umfang"] .. ']] Seiten</td></tr>'
    end

    -- Preis
    if args["Preis"] then
        output = output .. '<tr><td><strong>Preis</strong></td><td>[[Preis::' .. args["Preis"] .. ']]</td></tr>'
    end
    
    -- Genre (Mehrfachwerte als Liste)
    if args["Keyword"] and args["Keyword"] ~= "" then
        output = output .. '<tr><td><strong>Genre</strong></td><td>'
        for genre in mw.text.gsplit(args["Keyword"], ",") do
            genre = mw.text.trim(genre) -- Entfernt führende/trailing Whitespaces
            output = output .. '[[Keyword::' .. genre .. ']], '
        end
        output = output:sub(1, -3) .. '</td></tr>' -- Entfernt das letzte Komma
    end

    -- Datensatz ID (z. B. DNB-ID)
    if args["Datensatz ID"] then
        local dnbLink = "https://d-nb.info/" .. args["Datensatz ID"]
        output = output .. '<tr><td><strong>Datensatz ID</strong></td><td>' .. args["Datensatz ID"] .. ' ([' .. dnbLink .. ' DNB])</td></tr>'
        helper.setProperty({args = {["Datensatz ID"] = args["Datensatz ID"]}})
    end
    
    -- Inhaltszusammenfassung
    if args["Inhaltszusammenfassung"] then
        output = output .. '<tr><td><strong>Inhaltszusammenfassung</strong></td><td>' .. args["Inhaltszusammenfassung"] .. '</td></tr>'
    end

    output = output .. '</table>'
    
    -- Weitere Bücher in der Serie (unterhalb der Tabelle)
    if args["Hat Serie"] then
        local relatedBooks = related.buchRelated({ 
    		series = args["Hat Serie"], 
    		limit = 5,
    		defaultCover = "DefaultBuchCover.webp" -- Default-Cover
		})
        output = output .. '<div class="related-books">' ..
                 '<h2>Weitere Bücher in der Serie:</h2>' ..
                  (relatedBooks or "<p>Keine weiteren Bände verfügbar.</p>") ..
                  '</div>'
    end

    -- Kategorien hinzufügen
    output = output .. addCategories(args)
    return output
end

return buch