<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://twainframe.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Michel+TwainFrame</id>
	<title>TwainFrame - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://twainframe.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Michel+TwainFrame"/>
	<link rel="alternate" type="text/html" href="https://twainframe.org/Special:Contributions/Michel_TwainFrame"/>
	<updated>2026-06-18T06:42:16Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.43.1</generator>
	<entry>
		<id>https://twainframe.org/index.php?title=MediaWiki:Common.js&amp;diff=254</id>
		<title>MediaWiki:Common.js</title>
		<link rel="alternate" type="text/html" href="https://twainframe.org/index.php?title=MediaWiki:Common.js&amp;diff=254"/>
		<updated>2025-06-25T00:50:48Z</updated>

		<summary type="html">&lt;p&gt;Michel TwainFrame: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;// DataTables CSS laden&lt;br /&gt;
mw.loader.load(&#039;https://cdn.datatables.net/1.13.6/css/jquery.dataTables.min.css&#039;, &#039;text/css&#039;);&lt;br /&gt;
&lt;br /&gt;
// DataTables JS laden und initialisieren&lt;br /&gt;
//mw.loader.getScript(&#039;https://cdn.datatables.net/1.13.6/js/jquery.dataTables.min.js&#039;)&lt;br /&gt;
  .then(function () {&lt;br /&gt;
    $(function () {&lt;br /&gt;
      var table = $(&#039;#example&#039;);&lt;br /&gt;
&lt;br /&gt;
      if (table.length) {&lt;br /&gt;
        // Füge zusätzliche Kopfzeile mit Input-Feldern hinzu&lt;br /&gt;
        $(&#039;#example thead&#039;).append(&#039;&amp;lt;tr&amp;gt;&amp;lt;/tr&amp;gt;&#039;);&lt;br /&gt;
        $(&#039;#example thead tr:eq(0) th&#039;).each(function () {&lt;br /&gt;
          var title = $(this).text();&lt;br /&gt;
          $(&#039;#example thead tr:eq(1)&#039;).append(&#039;&amp;lt;th&amp;gt;&amp;lt;input type=&amp;quot;text&amp;quot; placeholder=&amp;quot;Suche &#039; + title + &#039;&amp;quot; /&amp;gt;&amp;lt;/th&amp;gt;&#039;);&lt;br /&gt;
        });&lt;br /&gt;
&lt;br /&gt;
        // DataTable initialisieren&lt;br /&gt;
        var dataTable = table.DataTable();&lt;br /&gt;
&lt;br /&gt;
        // Spaltensuche aktivieren&lt;br /&gt;
        dataTable.columns().every(function () {&lt;br /&gt;
          var that = this;&lt;br /&gt;
          $(&#039;input&#039;, this.header()).on(&#039;keyup change clear&#039;, function () {&lt;br /&gt;
            if (that.search() !== this.value) {&lt;br /&gt;
              that.search(this.value).draw();&lt;br /&gt;
            }&lt;br /&gt;
          });&lt;br /&gt;
        });&lt;br /&gt;
      }&lt;br /&gt;
    });&lt;br /&gt;
  });&lt;/div&gt;</summary>
		<author><name>Michel TwainFrame</name></author>
	</entry>
	<entry>
		<id>https://twainframe.org/index.php?title=MediaWiki:Common.js&amp;diff=253</id>
		<title>MediaWiki:Common.js</title>
		<link rel="alternate" type="text/html" href="https://twainframe.org/index.php?title=MediaWiki:Common.js&amp;diff=253"/>
		<updated>2025-06-25T00:50:22Z</updated>

		<summary type="html">&lt;p&gt;Michel TwainFrame: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;// DataTables CSS laden&lt;br /&gt;
mw.loader.load(&#039;https://cdn.datatables.net/1.13.6/css/jquery.dataTables.min.css&#039;, &#039;text/css&#039;);&lt;br /&gt;
&lt;br /&gt;
// DataTables JS laden und initialisieren&lt;br /&gt;
mw.loader.getScript(&#039;https://cdn.datatables.net/1.13.6/js/jquery.dataTables.min.js&#039;)&lt;br /&gt;
  .then(function () {&lt;br /&gt;
    $(function () {&lt;br /&gt;
      var table = $(&#039;#example&#039;);&lt;br /&gt;
&lt;br /&gt;
      if (table.length) {&lt;br /&gt;
        // Füge zusätzliche Kopfzeile mit Input-Feldern hinzu&lt;br /&gt;
        $(&#039;#example thead&#039;).append(&#039;&amp;lt;tr&amp;gt;&amp;lt;/tr&amp;gt;&#039;);&lt;br /&gt;
        $(&#039;#example thead tr:eq(0) th&#039;).each(function () {&lt;br /&gt;
          var title = $(this).text();&lt;br /&gt;
          $(&#039;#example thead tr:eq(1)&#039;).append(&#039;&amp;lt;th&amp;gt;&amp;lt;input type=&amp;quot;text&amp;quot; placeholder=&amp;quot;Suche &#039; + title + &#039;&amp;quot; /&amp;gt;&amp;lt;/th&amp;gt;&#039;);&lt;br /&gt;
        });&lt;br /&gt;
&lt;br /&gt;
        // DataTable initialisieren&lt;br /&gt;
        var dataTable = table.DataTable();&lt;br /&gt;
&lt;br /&gt;
        // Spaltensuche aktivieren&lt;br /&gt;
        dataTable.columns().every(function () {&lt;br /&gt;
          var that = this;&lt;br /&gt;
          $(&#039;input&#039;, this.header()).on(&#039;keyup change clear&#039;, function () {&lt;br /&gt;
            if (that.search() !== this.value) {&lt;br /&gt;
              that.search(this.value).draw();&lt;br /&gt;
            }&lt;br /&gt;
          });&lt;br /&gt;
        });&lt;br /&gt;
      }&lt;br /&gt;
    });&lt;br /&gt;
  });&lt;/div&gt;</summary>
		<author><name>Michel TwainFrame</name></author>
	</entry>
	<entry>
		<id>https://twainframe.org/index.php?title=MediaWiki:Common.js&amp;diff=252</id>
		<title>MediaWiki:Common.js</title>
		<link rel="alternate" type="text/html" href="https://twainframe.org/index.php?title=MediaWiki:Common.js&amp;diff=252"/>
		<updated>2025-06-25T00:43:52Z</updated>

		<summary type="html">&lt;p&gt;Michel TwainFrame: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;// DataTables CSS laden&lt;br /&gt;
mw.loader.load(&#039;https://cdn.datatables.net/1.13.6/css/jquery.dataTables.min.css&#039;, &#039;text/css&#039;);&lt;br /&gt;
&lt;br /&gt;
// DataTables JS laden und initialisieren&lt;br /&gt;
//mw.loader.getScript(&#039;https://cdn.datatables.net/1.13.6/js/jquery.dataTables.min.js&#039;)&lt;br /&gt;
  .then(function () {&lt;br /&gt;
    $(function () {&lt;br /&gt;
      var table = $(&#039;#example&#039;);&lt;br /&gt;
&lt;br /&gt;
      if (table.length) {&lt;br /&gt;
        // Füge zusätzliche Kopfzeile mit Input-Feldern hinzu&lt;br /&gt;
        $(&#039;#example thead&#039;).append(&#039;&amp;lt;tr&amp;gt;&amp;lt;/tr&amp;gt;&#039;);&lt;br /&gt;
        $(&#039;#example thead tr:eq(0) th&#039;).each(function () {&lt;br /&gt;
          var title = $(this).text();&lt;br /&gt;
          $(&#039;#example thead tr:eq(1)&#039;).append(&#039;&amp;lt;th&amp;gt;&amp;lt;input type=&amp;quot;text&amp;quot; placeholder=&amp;quot;Suche &#039; + title + &#039;&amp;quot; /&amp;gt;&amp;lt;/th&amp;gt;&#039;);&lt;br /&gt;
        });&lt;br /&gt;
&lt;br /&gt;
        // DataTable initialisieren&lt;br /&gt;
        var dataTable = table.DataTable();&lt;br /&gt;
&lt;br /&gt;
        // Spaltensuche aktivieren&lt;br /&gt;
        dataTable.columns().every(function () {&lt;br /&gt;
          var that = this;&lt;br /&gt;
          $(&#039;input&#039;, this.header()).on(&#039;keyup change clear&#039;, function () {&lt;br /&gt;
            if (that.search() !== this.value) {&lt;br /&gt;
              that.search(this.value).draw();&lt;br /&gt;
            }&lt;br /&gt;
          });&lt;br /&gt;
        });&lt;br /&gt;
      }&lt;br /&gt;
    });&lt;br /&gt;
  });&lt;/div&gt;</summary>
		<author><name>Michel TwainFrame</name></author>
	</entry>
	<entry>
		<id>https://twainframe.org/index.php?title=TestTable&amp;diff=251</id>
		<title>TestTable</title>
		<link rel="alternate" type="text/html" href="https://twainframe.org/index.php?title=TestTable&amp;diff=251"/>
		<updated>2025-06-25T00:43:39Z</updated>

		<summary type="html">&lt;p&gt;Michel TwainFrame: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;html&amp;gt;&lt;br /&gt;
&amp;lt;table id=&amp;quot;example&amp;quot; class=&amp;quot;wikitable&amp;quot; style=&amp;quot;width:100%&amp;quot;&amp;gt;&lt;br /&gt;
  &amp;lt;thead&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
      &amp;lt;th&amp;gt;Illustrator&amp;lt;/th&amp;gt;&lt;br /&gt;
      &amp;lt;th&amp;gt;Title&amp;lt;/th&amp;gt;&lt;br /&gt;
      &amp;lt;th&amp;gt;Tags&amp;lt;/th&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
  &amp;lt;/thead&amp;gt;&lt;br /&gt;
  &amp;lt;tbody&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;H. Schrödter&amp;lt;/td&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;Pap&amp;lt;/td&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;-huck -drawing -papfinn -2p&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;E. W. Kemble&amp;lt;/td&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;A Fair Fit&amp;lt;/td&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;-huck -2p -jim -drawing&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;E. Hirth&amp;lt;/td&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;Tragedy&amp;lt;/td&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;-king -1p -drawing&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
  &amp;lt;/tbody&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;script&amp;gt;&lt;br /&gt;
  $(document).ready(function() {&lt;br /&gt;
    $(&#039;#example&#039;).DataTable();&lt;br /&gt;
  });&lt;br /&gt;
&amp;lt;/script&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/html&amp;gt;&lt;/div&gt;</summary>
		<author><name>Michel TwainFrame</name></author>
	</entry>
	<entry>
		<id>https://twainframe.org/index.php?title=MediaWiki:Common.css&amp;diff=250</id>
		<title>MediaWiki:Common.css</title>
		<link rel="alternate" type="text/html" href="https://twainframe.org/index.php?title=MediaWiki:Common.css&amp;diff=250"/>
		<updated>2025-06-25T00:43:25Z</updated>

		<summary type="html">&lt;p&gt;Michel TwainFrame: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;/* MediaWiki:Common.css */&lt;br /&gt;
&lt;br /&gt;
/* Tabelle mit ID &#039;example&#039; */&lt;br /&gt;
#example {&lt;br /&gt;
  border: 2px solid #0077cc;&lt;br /&gt;
  border-collapse: collapse;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
#example td,&lt;br /&gt;
#example th {&lt;br /&gt;
  border: 1px solid #ccc;&lt;br /&gt;
  padding: 8px;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
#example tbody tr:nth-child(even) {&lt;br /&gt;
  background-color: #f5f5f5;&lt;br /&gt;
}&lt;br /&gt;
#example td {&lt;br /&gt;
  font-family: &amp;quot;Georgia&amp;quot;, serif;&lt;br /&gt;
  font-size: 0.7em;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* Alle Tabellen mit Klasse &#039;display&#039; (DataTables-Standardklasse) */&lt;br /&gt;
table.display {&lt;br /&gt;
  font-size: 1.5em;&lt;br /&gt;
  width: 100%;&lt;br /&gt;
  border-collapse: collapse;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* Tabellenköpfe */&lt;br /&gt;
table.display th {&lt;br /&gt;
  background-color: #e0e0e0;&lt;br /&gt;
  color: #333;&lt;br /&gt;
  padding: 10px;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* Tabellenzellen */&lt;br /&gt;
table.display td {&lt;br /&gt;
  padding: 18px;&lt;br /&gt;
  border-bottom: 11px solid #ddd;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* Hover-Effekt für Zeilen */&lt;br /&gt;
table.display tbody tr:hover {&lt;br /&gt;
  background-color: #fcffcc;&lt;br /&gt;
}&lt;/div&gt;</summary>
		<author><name>Michel TwainFrame</name></author>
	</entry>
	<entry>
		<id>https://twainframe.org/index.php?title=TestTable&amp;diff=249</id>
		<title>TestTable</title>
		<link rel="alternate" type="text/html" href="https://twainframe.org/index.php?title=TestTable&amp;diff=249"/>
		<updated>2025-06-25T00:40:47Z</updated>

		<summary type="html">&lt;p&gt;Michel TwainFrame: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;html&amp;gt;&lt;br /&gt;
&amp;lt;table id=&amp;quot;stylingtext&amp;quot; class=&amp;quot;wikitable&amp;quot; style=&amp;quot;width:100%&amp;quot;&amp;gt;&lt;br /&gt;
  &amp;lt;thead&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
      &amp;lt;th&amp;gt;Illustrator&amp;lt;/th&amp;gt;&lt;br /&gt;
      &amp;lt;th&amp;gt;Title&amp;lt;/th&amp;gt;&lt;br /&gt;
      &amp;lt;th&amp;gt;Tags&amp;lt;/th&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
  &amp;lt;/thead&amp;gt;&lt;br /&gt;
  &amp;lt;tbody&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;H. Schrödter&amp;lt;/td&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;Pap&amp;lt;/td&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;-huck -drawing -papfinn -2p&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;E. W. Kemble&amp;lt;/td&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;A Fair Fit&amp;lt;/td&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;-huck -2p -jim -drawing&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;E. Hirth&amp;lt;/td&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;Tragedy&amp;lt;/td&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;-king -1p -drawing&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
  &amp;lt;/tbody&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;script&amp;gt;&lt;br /&gt;
  $(document).ready(function() {&lt;br /&gt;
    $(&#039;#example&#039;).DataTable();&lt;br /&gt;
  });&lt;br /&gt;
&amp;lt;/script&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/html&amp;gt;&lt;/div&gt;</summary>
		<author><name>Michel TwainFrame</name></author>
	</entry>
	<entry>
		<id>https://twainframe.org/index.php?title=MediaWiki:Common.css&amp;diff=248</id>
		<title>MediaWiki:Common.css</title>
		<link rel="alternate" type="text/html" href="https://twainframe.org/index.php?title=MediaWiki:Common.css&amp;diff=248"/>
		<updated>2025-06-25T00:40:22Z</updated>

		<summary type="html">&lt;p&gt;Michel TwainFrame: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;/* MediaWiki:Common.css */&lt;br /&gt;
&lt;br /&gt;
/* Tabelle mit ID &#039;example&#039; */&lt;br /&gt;
#example {&lt;br /&gt;
  border: 2px solid #0077cc;&lt;br /&gt;
  border-collapse: collapse;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
#example td,&lt;br /&gt;
#example th {&lt;br /&gt;
  border: 1px solid #ccc;&lt;br /&gt;
  padding: 8px;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
#example tbody tr:nth-child(even) {&lt;br /&gt;
  background-color: #f5f5f5;&lt;br /&gt;
}&lt;br /&gt;
#example td {&lt;br /&gt;
  font-family: &amp;quot;Georgia&amp;quot;, serif;&lt;br /&gt;
  font-size: 0.7em;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* Alle Tabellen mit Klasse &#039;display&#039; (DataTables-Standardklasse) */&lt;br /&gt;
table.display {&lt;br /&gt;
  font-size: 1.5em;&lt;br /&gt;
  width: 100%;&lt;br /&gt;
  border-collapse: collapse;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* Tabellenköpfe */&lt;br /&gt;
table.display th {&lt;br /&gt;
  background-color: #e0e0e0;&lt;br /&gt;
  color: #333;&lt;br /&gt;
  padding: 10px;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* Tabellenzellen */&lt;br /&gt;
table.display td {&lt;br /&gt;
  padding: 18px;&lt;br /&gt;
  border-bottom: 11px solid #ddd;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* Hover-Effekt für Zeilen */&lt;br /&gt;
table.display tbody tr:hover {&lt;br /&gt;
  background-color: #fcffcc;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* ============================&lt;br /&gt;
   DataTables Custom Styling&lt;br /&gt;
   Ziel: Optisch ansprechendes Design für Tabelle mit ID #stylingtext&lt;br /&gt;
   ============================ */&lt;br /&gt;
&lt;br /&gt;
/* --- Grundlegende Tabellenstruktur --- */&lt;br /&gt;
#stylingtext {&lt;br /&gt;
    width: 100%; /* Tabelle nimmt gesamte Breite des Containers ein */&lt;br /&gt;
    border-collapse: collapse; /* Entfernt doppelte Rahmen zwischen Zellen */&lt;br /&gt;
    font-family: &amp;quot;Segoe UI&amp;quot;, Tahoma, Geneva, Verdana, sans-serif; /* Moderner, gut lesbarer Font */&lt;br /&gt;
    font-size: 14px;&lt;br /&gt;
    background-color: #ffffff; /* Heller Hintergrund für bessere Lesbarkeit */&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* --- Tabellenkopf (thead) --- */&lt;br /&gt;
#stylingtext thead {&lt;br /&gt;
    background-color: #005288; /* Dunkelblauer Hintergrund für den Header */&lt;br /&gt;
    color: white; /* Weißer Text für guten Kontrast */&lt;br /&gt;
    text-align: left;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
#stylingtext thead th {&lt;br /&gt;
    padding: 12px 8px; /* Innenabstand oben/unten und rechts/links */&lt;br /&gt;
    border-bottom: 2px solid #ccc; /* Dezente Trennlinie unter dem Header */&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* --- Tabellenkörper (tbody) --- */&lt;br /&gt;
#stylingtext tbody tr:nth-child(even) {&lt;br /&gt;
    background-color: #f2f2f2; /* Abwechselnde Zeilenfarbe (Zebra-Streifen) */&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
#stylingtext tbody tr:hover {&lt;br /&gt;
    background-color: #e0f0ff; /* Hover-Effekt bei Mouseover */&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
#stylingtext td {&lt;br /&gt;
    padding: 10px 8px;&lt;br /&gt;
    border-bottom: 1px solid #ddd; /* Trennung der Zeilen */&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* --- Suchfeld und Buttons (DataTables UI) --- */&lt;br /&gt;
.dataTables_wrapper .dataTables_filter input {&lt;br /&gt;
    border: 1px solid #ccc;&lt;br /&gt;
    padding: 6px;&lt;br /&gt;
    border-radius: 4px;&lt;br /&gt;
    margin-left: 0.5em;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.dataTables_wrapper .dataTables_length select {&lt;br /&gt;
    border: 1px solid #ccc;&lt;br /&gt;
    padding: 6px;&lt;br /&gt;
    border-radius: 4px;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* --- Paginierung unten rechts --- */&lt;br /&gt;
.dataTables_wrapper .dataTables_paginate {&lt;br /&gt;
    margin-top: 10px;&lt;br /&gt;
    text-align: right;&lt;br /&gt;
    font-size: 13px;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.dataTables_wrapper .dataTables_paginate .paginate_button {&lt;br /&gt;
    padding: 6px 12px;&lt;br /&gt;
    margin: 0 2px;&lt;br /&gt;
    border: 1px solid #ddd;&lt;br /&gt;
    background-color: #f9f9f9;&lt;br /&gt;
    color: #333;&lt;br /&gt;
    cursor: pointer;&lt;br /&gt;
    border-radius: 3px;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.dataTables_wrapper .dataTables_paginate .paginate_button:hover {&lt;br /&gt;
    background-color: #005288;&lt;br /&gt;
    color: white;&lt;br /&gt;
    border-color: #005288;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.dataTables_wrapper .dataTables_paginate .paginate_button.current {&lt;br /&gt;
    background-color: #005288;&lt;br /&gt;
    color: white !important;&lt;br /&gt;
    border-color: #005288;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* --- Info unten links (z.B. &amp;quot;Zeige 1 bis 10 von 20 Einträgen&amp;quot;) --- */&lt;br /&gt;
.dataTables_wrapper .dataTables_info {&lt;br /&gt;
    margin-top: 10px;&lt;br /&gt;
    font-size: 13px;&lt;br /&gt;
    color: #666;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* --- Responsives Verhalten (wenn DataTables responsive Extension aktiv ist) --- */&lt;br /&gt;
@media screen and (max-width: 768px) {&lt;br /&gt;
    #stylingtext thead {&lt;br /&gt;
        display: none; /* Header ausblenden auf kleinen Bildschirmen */&lt;br /&gt;
    }&lt;br /&gt;
&lt;br /&gt;
    #stylingtext td {&lt;br /&gt;
        display: block;&lt;br /&gt;
        width: 100%;&lt;br /&gt;
        box-sizing: border-box;&lt;br /&gt;
        border: none;&lt;br /&gt;
        border-bottom: 1px solid #eee;&lt;br /&gt;
        position: relative;&lt;br /&gt;
        padding-left: 50%; /* Platz für Label */&lt;br /&gt;
    }&lt;br /&gt;
&lt;br /&gt;
}&lt;/div&gt;</summary>
		<author><name>Michel TwainFrame</name></author>
	</entry>
	<entry>
		<id>https://twainframe.org/index.php?title=MediaWiki:Common.css&amp;diff=247</id>
		<title>MediaWiki:Common.css</title>
		<link rel="alternate" type="text/html" href="https://twainframe.org/index.php?title=MediaWiki:Common.css&amp;diff=247"/>
		<updated>2025-06-25T00:35:58Z</updated>

		<summary type="html">&lt;p&gt;Michel TwainFrame: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;/* MediaWiki:Common.css */&lt;br /&gt;
&lt;br /&gt;
/* Tabelle mit ID &#039;example&#039; */&lt;br /&gt;
#example {&lt;br /&gt;
  border: 2px solid #0077cc;&lt;br /&gt;
  border-collapse: collapse;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
#example td,&lt;br /&gt;
#example th {&lt;br /&gt;
  border: 1px solid #ccc;&lt;br /&gt;
  padding: 8px;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
#example tbody tr:nth-child(even) {&lt;br /&gt;
  background-color: #f5f5f5;&lt;br /&gt;
}&lt;br /&gt;
#example td {&lt;br /&gt;
  font-family: &amp;quot;Georgia&amp;quot;, serif;&lt;br /&gt;
  font-size: 0.7em;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* Alle Tabellen mit Klasse &#039;display&#039; (DataTables-Standardklasse) */&lt;br /&gt;
table.display {&lt;br /&gt;
  font-size: 1.5em;&lt;br /&gt;
  width: 100%;&lt;br /&gt;
  border-collapse: collapse;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* Tabellenköpfe */&lt;br /&gt;
table.display th {&lt;br /&gt;
  background-color: #e0e0e0;&lt;br /&gt;
  color: #333;&lt;br /&gt;
  padding: 10px;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* Tabellenzellen */&lt;br /&gt;
table.display td {&lt;br /&gt;
  padding: 18px;&lt;br /&gt;
  border-bottom: 11px solid #ddd;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* Hover-Effekt für Zeilen */&lt;br /&gt;
table.display tbody tr:hover {&lt;br /&gt;
  background-color: #fcffcc;&lt;br /&gt;
}&lt;/div&gt;</summary>
		<author><name>Michel TwainFrame</name></author>
	</entry>
	<entry>
		<id>https://twainframe.org/index.php?title=TestTable&amp;diff=246</id>
		<title>TestTable</title>
		<link rel="alternate" type="text/html" href="https://twainframe.org/index.php?title=TestTable&amp;diff=246"/>
		<updated>2025-06-25T00:30:02Z</updated>

		<summary type="html">&lt;p&gt;Michel TwainFrame: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;html&amp;gt;&lt;br /&gt;
&amp;lt;table id=&amp;quot;example&amp;quot; class=&amp;quot;wikitable display&amp;quot; style=&amp;quot;width:100%&amp;quot;&amp;gt;&lt;br /&gt;
  &amp;lt;thead&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
      &amp;lt;th&amp;gt;Illustrator&amp;lt;/th&amp;gt;&lt;br /&gt;
      &amp;lt;th&amp;gt;Title&amp;lt;/th&amp;gt;&lt;br /&gt;
      &amp;lt;th&amp;gt;Tags&amp;lt;/th&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
  &amp;lt;/thead&amp;gt;&lt;br /&gt;
  &amp;lt;tbody&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;H. Schrödter&amp;lt;/td&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;Pap&amp;lt;/td&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;-huck -drawing -papfinn -2p&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;E. W. Kemble&amp;lt;/td&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;A Fair Fit&amp;lt;/td&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;-huck -2p -jim -drawing&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;E. Hirth&amp;lt;/td&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;Tragedy&amp;lt;/td&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;-king -1p -drawing&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
  &amp;lt;/tbody&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;script&amp;gt;&lt;br /&gt;
  $(document).ready(function() {&lt;br /&gt;
    $(&#039;#example&#039;).DataTable();&lt;br /&gt;
  });&lt;br /&gt;
&amp;lt;/script&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/html&amp;gt;&lt;/div&gt;</summary>
		<author><name>Michel TwainFrame</name></author>
	</entry>
	<entry>
		<id>https://twainframe.org/index.php?title=MediaWiki:Common.js&amp;diff=245</id>
		<title>MediaWiki:Common.js</title>
		<link rel="alternate" type="text/html" href="https://twainframe.org/index.php?title=MediaWiki:Common.js&amp;diff=245"/>
		<updated>2025-06-25T00:27:27Z</updated>

		<summary type="html">&lt;p&gt;Michel TwainFrame: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;// DataTables CSS laden&lt;br /&gt;
mw.loader.load(&#039;https://cdn.datatables.net/1.13.6/css/jquery.dataTables.min.css&#039;, &#039;text/css&#039;);&lt;br /&gt;
&lt;br /&gt;
// DataTables JS laden und initialisieren&lt;br /&gt;
mw.loader.getScript(&#039;https://cdn.datatables.net/1.13.6/js/jquery.dataTables.min.js&#039;)&lt;br /&gt;
  .then(function () {&lt;br /&gt;
    $(function () {&lt;br /&gt;
      var table = $(&#039;#example&#039;);&lt;br /&gt;
&lt;br /&gt;
      if (table.length) {&lt;br /&gt;
        // Füge zusätzliche Kopfzeile mit Input-Feldern hinzu&lt;br /&gt;
        $(&#039;#example thead&#039;).append(&#039;&amp;lt;tr&amp;gt;&amp;lt;/tr&amp;gt;&#039;);&lt;br /&gt;
        $(&#039;#example thead tr:eq(0) th&#039;).each(function () {&lt;br /&gt;
          var title = $(this).text();&lt;br /&gt;
          $(&#039;#example thead tr:eq(1)&#039;).append(&#039;&amp;lt;th&amp;gt;&amp;lt;input type=&amp;quot;text&amp;quot; placeholder=&amp;quot;Suche &#039; + title + &#039;&amp;quot; /&amp;gt;&amp;lt;/th&amp;gt;&#039;);&lt;br /&gt;
        });&lt;br /&gt;
&lt;br /&gt;
        // DataTable initialisieren&lt;br /&gt;
        var dataTable = table.DataTable();&lt;br /&gt;
&lt;br /&gt;
        // Spaltensuche aktivieren&lt;br /&gt;
        dataTable.columns().every(function () {&lt;br /&gt;
          var that = this;&lt;br /&gt;
          $(&#039;input&#039;, this.header()).on(&#039;keyup change clear&#039;, function () {&lt;br /&gt;
            if (that.search() !== this.value) {&lt;br /&gt;
              that.search(this.value).draw();&lt;br /&gt;
            }&lt;br /&gt;
          });&lt;br /&gt;
        });&lt;br /&gt;
      }&lt;br /&gt;
    });&lt;br /&gt;
  });&lt;/div&gt;</summary>
		<author><name>Michel TwainFrame</name></author>
	</entry>
	<entry>
		<id>https://twainframe.org/index.php?title=MediaWiki:Common.css&amp;diff=244</id>
		<title>MediaWiki:Common.css</title>
		<link rel="alternate" type="text/html" href="https://twainframe.org/index.php?title=MediaWiki:Common.css&amp;diff=244"/>
		<updated>2025-06-25T00:26:38Z</updated>

		<summary type="html">&lt;p&gt;Michel TwainFrame: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;/* MediaWiki:Common.css */&lt;br /&gt;
#example {&lt;br /&gt;
  border: 2px solid #0077cc;&lt;br /&gt;
  border-collapse: collapse;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
#example td,&lt;br /&gt;
#example th {&lt;br /&gt;
  border: 1px solid #ccc;&lt;br /&gt;
  padding: 8px;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
#example tbody tr:nth-child(even) {&lt;br /&gt;
  background-color: #f5f5f5;&lt;br /&gt;
}&lt;br /&gt;
#example td {&lt;br /&gt;
  font-family: &amp;quot;Georgia&amp;quot;, serif;&lt;br /&gt;
  font-size: 0.7em;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* Alle Tabellen mit Klasse &#039;display&#039; (DataTables-Standardklasse) */&lt;br /&gt;
table.display {&lt;br /&gt;
  font-size: 1.5em;&lt;br /&gt;
  width: 100%;&lt;br /&gt;
  border-collapse: collapse;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* Tabellenköpfe */&lt;br /&gt;
table.display th {&lt;br /&gt;
  background-color: #e0e0e0;&lt;br /&gt;
  color: #333;&lt;br /&gt;
  padding: 10px;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* Tabellenzellen */&lt;br /&gt;
table.display td {&lt;br /&gt;
  padding: 18px;&lt;br /&gt;
  border-bottom: 11px solid #ddd;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* Hover-Effekt für Zeilen */&lt;br /&gt;
table.display tbody tr:hover {&lt;br /&gt;
  background-color: #fcffcc;&lt;br /&gt;
}&lt;/div&gt;</summary>
		<author><name>Michel TwainFrame</name></author>
	</entry>
	<entry>
		<id>https://twainframe.org/index.php?title=TestTable&amp;diff=243</id>
		<title>TestTable</title>
		<link rel="alternate" type="text/html" href="https://twainframe.org/index.php?title=TestTable&amp;diff=243"/>
		<updated>2025-06-25T00:24:28Z</updated>

		<summary type="html">&lt;p&gt;Michel TwainFrame: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;html&amp;gt;&lt;br /&gt;
&amp;lt;table id=&amp;quot;example&amp;quot; class=&amp;quot;wikitable&amp;quot; style=&amp;quot;width:100%&amp;quot;&amp;gt;&lt;br /&gt;
  &amp;lt;thead&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
      &amp;lt;th&amp;gt;Illustrator&amp;lt;/th&amp;gt;&lt;br /&gt;
      &amp;lt;th&amp;gt;Title&amp;lt;/th&amp;gt;&lt;br /&gt;
      &amp;lt;th&amp;gt;Tags&amp;lt;/th&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
  &amp;lt;/thead&amp;gt;&lt;br /&gt;
  &amp;lt;tbody&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;H. Schrödter&amp;lt;/td&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;Pap&amp;lt;/td&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;-huck -drawing -papfinn -2p&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;E. W. Kemble&amp;lt;/td&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;A Fair Fit&amp;lt;/td&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;-huck -2p -jim -drawing&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;E. Hirth&amp;lt;/td&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;Tragedy&amp;lt;/td&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;-king -1p -drawing&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
  &amp;lt;/tbody&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;script&amp;gt;&lt;br /&gt;
  $(document).ready(function() {&lt;br /&gt;
    $(&#039;#example&#039;).DataTable();&lt;br /&gt;
  });&lt;br /&gt;
&amp;lt;/script&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/html&amp;gt;&lt;/div&gt;</summary>
		<author><name>Michel TwainFrame</name></author>
	</entry>
	<entry>
		<id>https://twainframe.org/index.php?title=TestTable&amp;diff=242</id>
		<title>TestTable</title>
		<link rel="alternate" type="text/html" href="https://twainframe.org/index.php?title=TestTable&amp;diff=242"/>
		<updated>2025-06-25T00:24:14Z</updated>

		<summary type="html">&lt;p&gt;Michel TwainFrame: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;html&amp;gt;&lt;br /&gt;
&amp;lt;table id=&amp;quot;example&amp;quot; class=&amp;quot;wikitable display&amp;quot; style=&amp;quot;width:100%&amp;quot;&amp;gt;&lt;br /&gt;
  &amp;lt;thead&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
      &amp;lt;th&amp;gt;Illustrator&amp;lt;/th&amp;gt;&lt;br /&gt;
      &amp;lt;th&amp;gt;Title&amp;lt;/th&amp;gt;&lt;br /&gt;
      &amp;lt;th&amp;gt;Tags&amp;lt;/th&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
  &amp;lt;/thead&amp;gt;&lt;br /&gt;
  &amp;lt;tbody&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;H. Schrödter&amp;lt;/td&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;Pap&amp;lt;/td&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;-huck -drawing -papfinn -2p&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;E. W. Kemble&amp;lt;/td&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;A Fair Fit&amp;lt;/td&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;-huck -2p -jim -drawing&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;E. Hirth&amp;lt;/td&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;Tragedy&amp;lt;/td&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;-king -1p -drawing&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
  &amp;lt;/tbody&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;script&amp;gt;&lt;br /&gt;
  $(document).ready(function() {&lt;br /&gt;
    $(&#039;#example&#039;).DataTable();&lt;br /&gt;
  });&lt;br /&gt;
&amp;lt;/script&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/html&amp;gt;&lt;/div&gt;</summary>
		<author><name>Michel TwainFrame</name></author>
	</entry>
	<entry>
		<id>https://twainframe.org/index.php?title=MediaWiki:Common.css&amp;diff=241</id>
		<title>MediaWiki:Common.css</title>
		<link rel="alternate" type="text/html" href="https://twainframe.org/index.php?title=MediaWiki:Common.css&amp;diff=241"/>
		<updated>2025-06-25T00:24:03Z</updated>

		<summary type="html">&lt;p&gt;Michel TwainFrame: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;/* MediaWiki:Common.css */&lt;br /&gt;
#example {&lt;br /&gt;
  border: 4px solid #0077cc;&lt;br /&gt;
  border-collapse: collapse;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
#example td,&lt;br /&gt;
#example th {&lt;br /&gt;
  border: 1px solid #ccc;&lt;br /&gt;
  padding: 8px;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
#example tbody tr:nth-child(even) {&lt;br /&gt;
  background-color: #f5f5f5;&lt;br /&gt;
}&lt;br /&gt;
#example td {&lt;br /&gt;
  font-family: &amp;quot;Georgia&amp;quot;, serif;&lt;br /&gt;
  font-size: 0.9em;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* Alle Tabellen mit Klasse &#039;display&#039; (DataTables-Standardklasse) */&lt;br /&gt;
table.display {&lt;br /&gt;
  font-size: 1.5em;&lt;br /&gt;
  width: 100%;&lt;br /&gt;
  border-collapse: collapse;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* Tabellenköpfe */&lt;br /&gt;
table.display th {&lt;br /&gt;
  background-color: #e0e0e0;&lt;br /&gt;
  color: #333;&lt;br /&gt;
  padding: 10px;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* Tabellenzellen */&lt;br /&gt;
table.display td {&lt;br /&gt;
  padding: 18px;&lt;br /&gt;
  border-bottom: 11px solid #ddd;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* Hover-Effekt für Zeilen */&lt;br /&gt;
table.display tbody tr:hover {&lt;br /&gt;
  background-color: #fcffcc;&lt;br /&gt;
}&lt;/div&gt;</summary>
		<author><name>Michel TwainFrame</name></author>
	</entry>
	<entry>
		<id>https://twainframe.org/index.php?title=TestTable&amp;diff=240</id>
		<title>TestTable</title>
		<link rel="alternate" type="text/html" href="https://twainframe.org/index.php?title=TestTable&amp;diff=240"/>
		<updated>2025-06-25T00:22:46Z</updated>

		<summary type="html">&lt;p&gt;Michel TwainFrame: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;html&amp;gt;&lt;br /&gt;
&amp;lt;table id=&amp;quot;example&amp;quot; class=&amp;quot;wikitable&amp;quot; style=&amp;quot;width:100%&amp;quot;&amp;gt;&lt;br /&gt;
  &amp;lt;thead&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
      &amp;lt;th&amp;gt;Illustrator&amp;lt;/th&amp;gt;&lt;br /&gt;
      &amp;lt;th&amp;gt;Title&amp;lt;/th&amp;gt;&lt;br /&gt;
      &amp;lt;th&amp;gt;Tags&amp;lt;/th&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
  &amp;lt;/thead&amp;gt;&lt;br /&gt;
  &amp;lt;tbody&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;H. Schrödter&amp;lt;/td&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;Pap&amp;lt;/td&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;-huck -drawing -papfinn -2p&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;E. W. Kemble&amp;lt;/td&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;A Fair Fit&amp;lt;/td&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;-huck -2p -jim -drawing&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;E. Hirth&amp;lt;/td&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;Tragedy&amp;lt;/td&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;-king -1p -drawing&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
  &amp;lt;/tbody&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;script&amp;gt;&lt;br /&gt;
  $(document).ready(function() {&lt;br /&gt;
    $(&#039;#example&#039;).DataTable();&lt;br /&gt;
  });&lt;br /&gt;
&amp;lt;/script&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/html&amp;gt;&lt;/div&gt;</summary>
		<author><name>Michel TwainFrame</name></author>
	</entry>
	<entry>
		<id>https://twainframe.org/index.php?title=MediaWiki:Common.css&amp;diff=239</id>
		<title>MediaWiki:Common.css</title>
		<link rel="alternate" type="text/html" href="https://twainframe.org/index.php?title=MediaWiki:Common.css&amp;diff=239"/>
		<updated>2025-06-25T00:16:44Z</updated>

		<summary type="html">&lt;p&gt;Michel TwainFrame: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;/* MediaWiki:Common.css */&lt;br /&gt;
#example {&lt;br /&gt;
  border: 4px solid #0077cc;&lt;br /&gt;
  border-collapse: collapse;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
#example td,&lt;br /&gt;
#example th {&lt;br /&gt;
  border: 1px solid #ccc;&lt;br /&gt;
  padding: 8px;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
#example tbody tr:nth-child(even) {&lt;br /&gt;
  background-color: #f5f5f5;&lt;br /&gt;
}&lt;br /&gt;
#example td {&lt;br /&gt;
  font-family: &amp;quot;Georgia&amp;quot;, serif;&lt;br /&gt;
  font-size: 0.9em;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* Alle Tabellen mit Klasse &#039;display&#039; (DataTables-Standardklasse) */&lt;br /&gt;
table.display {&lt;br /&gt;
  font-size: 0.95em;&lt;br /&gt;
  width: 100%;&lt;br /&gt;
  border-collapse: collapse;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* Tabellenköpfe */&lt;br /&gt;
table.display th {&lt;br /&gt;
  background-color: #e0e0e0;&lt;br /&gt;
  color: #333;&lt;br /&gt;
  padding: 10px;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* Tabellenzellen */&lt;br /&gt;
table.display td {&lt;br /&gt;
  padding: 18px;&lt;br /&gt;
  border-bottom: 11px solid #ddd;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* Hover-Effekt für Zeilen */&lt;br /&gt;
table.display tbody tr:hover {&lt;br /&gt;
  background-color: #fcffcc;&lt;br /&gt;
}&lt;/div&gt;</summary>
		<author><name>Michel TwainFrame</name></author>
	</entry>
	<entry>
		<id>https://twainframe.org/index.php?title=MediaWiki:Common.css&amp;diff=238</id>
		<title>MediaWiki:Common.css</title>
		<link rel="alternate" type="text/html" href="https://twainframe.org/index.php?title=MediaWiki:Common.css&amp;diff=238"/>
		<updated>2025-06-25T00:16:25Z</updated>

		<summary type="html">&lt;p&gt;Michel TwainFrame: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;/* MediaWiki:Common.css */&lt;br /&gt;
#example {&lt;br /&gt;
  border: 4px solid #0077cc;&lt;br /&gt;
  border-collapse: collapse;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
#example td,&lt;br /&gt;
#example th {&lt;br /&gt;
  border: 1px solid #ccc;&lt;br /&gt;
  padding: 8px;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
#example tbody tr:nth-child(even) {&lt;br /&gt;
  background-color: #f5f5f5;&lt;br /&gt;
}&lt;br /&gt;
#example td {&lt;br /&gt;
  font-family: &amp;quot;Georgia&amp;quot;, serif;&lt;br /&gt;
  font-size: 0.9em;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* Alle Tabellen mit Klasse &#039;display&#039; (DataTables-Standardklasse) */&lt;br /&gt;
table.display {&lt;br /&gt;
  font-size: 0.95em;&lt;br /&gt;
  width: 100%;&lt;br /&gt;
  border-collapse: collapse;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* Tabellenköpfe */&lt;br /&gt;
table.display th {&lt;br /&gt;
  background-color: #e0e0e0;&lt;br /&gt;
  color: #333;&lt;br /&gt;
  padding: 10px;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* Tabellenzellen */&lt;br /&gt;
table.display td {&lt;br /&gt;
  padding: 18px;&lt;br /&gt;
  border-bottom: 11px solid #ddd;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* Hover-Effekt für Zeilen */&lt;br /&gt;
table.display tbody tr:hover {&lt;br /&gt;
  background-color: #ffffff;&lt;br /&gt;
}&lt;/div&gt;</summary>
		<author><name>Michel TwainFrame</name></author>
	</entry>
	<entry>
		<id>https://twainframe.org/index.php?title=MediaWiki:Common.css&amp;diff=237</id>
		<title>MediaWiki:Common.css</title>
		<link rel="alternate" type="text/html" href="https://twainframe.org/index.php?title=MediaWiki:Common.css&amp;diff=237"/>
		<updated>2025-06-25T00:15:50Z</updated>

		<summary type="html">&lt;p&gt;Michel TwainFrame: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;/* MediaWiki:Common.css */&lt;br /&gt;
#example {&lt;br /&gt;
  border: 2px solid #0077cc;&lt;br /&gt;
  border-collapse: collapse;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
#example td,&lt;br /&gt;
#example th {&lt;br /&gt;
  border: 1px solid #ccc;&lt;br /&gt;
  padding: 8px;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
#example tbody tr:nth-child(even) {&lt;br /&gt;
  background-color: #f5f5f5;&lt;br /&gt;
}&lt;br /&gt;
#example td {&lt;br /&gt;
  font-family: &amp;quot;Georgia&amp;quot;, serif;&lt;br /&gt;
  font-size: 0.9em;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* Alle Tabellen mit Klasse &#039;display&#039; (DataTables-Standardklasse) */&lt;br /&gt;
table.display {&lt;br /&gt;
  font-size: 0.95em;&lt;br /&gt;
  width: 100%;&lt;br /&gt;
  border-collapse: collapse;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* Tabellenköpfe */&lt;br /&gt;
table.display th {&lt;br /&gt;
  background-color: #e0e0e0;&lt;br /&gt;
  color: #333;&lt;br /&gt;
  padding: 10px;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* Tabellenzellen */&lt;br /&gt;
table.display td {&lt;br /&gt;
  padding: 8px;&lt;br /&gt;
  border-bottom: 1px solid #ddd;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* Hover-Effekt für Zeilen */&lt;br /&gt;
table.display tbody tr:hover {&lt;br /&gt;
  background-color: #ffffcc;&lt;br /&gt;
}&lt;/div&gt;</summary>
		<author><name>Michel TwainFrame</name></author>
	</entry>
	<entry>
		<id>https://twainframe.org/index.php?title=MediaWiki:Common.css&amp;diff=236</id>
		<title>MediaWiki:Common.css</title>
		<link rel="alternate" type="text/html" href="https://twainframe.org/index.php?title=MediaWiki:Common.css&amp;diff=236"/>
		<updated>2025-06-25T00:15:15Z</updated>

		<summary type="html">&lt;p&gt;Michel TwainFrame: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;/* MediaWiki:Common.css */&lt;br /&gt;
#example {&lt;br /&gt;
  border: 2px solid #0077cc;&lt;br /&gt;
  border-collapse: collapse;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
#example td,&lt;br /&gt;
#example th {&lt;br /&gt;
  border: 1px solid #ccc;&lt;br /&gt;
  padding: 8px;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
#example tbody tr:nth-child(even) {&lt;br /&gt;
  background-color: #f5f5f5;&lt;br /&gt;
}&lt;br /&gt;
#example td {&lt;br /&gt;
  font-family: &amp;quot;Georgia&amp;quot;, serif;&lt;br /&gt;
  font-size: 0.9em;&lt;br /&gt;
}&lt;/div&gt;</summary>
		<author><name>Michel TwainFrame</name></author>
	</entry>
	<entry>
		<id>https://twainframe.org/index.php?title=MediaWiki:Common.css&amp;diff=235</id>
		<title>MediaWiki:Common.css</title>
		<link rel="alternate" type="text/html" href="https://twainframe.org/index.php?title=MediaWiki:Common.css&amp;diff=235"/>
		<updated>2025-06-25T00:14:42Z</updated>

		<summary type="html">&lt;p&gt;Michel TwainFrame: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;/* MediaWiki:Common.css */&lt;br /&gt;
#example {&lt;br /&gt;
  border: 2px solid #0077cc;&lt;br /&gt;
  border-collapse: collapse;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
#example td,&lt;br /&gt;
#example th {&lt;br /&gt;
  border: 1px solid #ccc;&lt;br /&gt;
  padding: 8px;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
#example tbody tr:nth-child(even) {&lt;br /&gt;
  background-color: #f5f5f5;&lt;br /&gt;
}&lt;/div&gt;</summary>
		<author><name>Michel TwainFrame</name></author>
	</entry>
	<entry>
		<id>https://twainframe.org/index.php?title=MediaWiki:Common.js&amp;diff=234</id>
		<title>MediaWiki:Common.js</title>
		<link rel="alternate" type="text/html" href="https://twainframe.org/index.php?title=MediaWiki:Common.js&amp;diff=234"/>
		<updated>2025-06-25T00:08:11Z</updated>

		<summary type="html">&lt;p&gt;Michel TwainFrame: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;// DataTables CSS laden&lt;br /&gt;
mw.loader.load(&#039;https://cdn.datatables.net/1.13.6/css/jquery.dataTables.min.css&#039;, &#039;text/css&#039;);&lt;br /&gt;
&lt;br /&gt;
// DataTables JS laden und initialisieren&lt;br /&gt;
//mw.loader.getScript(&#039;https://cdn.datatables.net/1.13.6/js/jquery.dataTables.min.js&#039;)&lt;br /&gt;
  .then(function () {&lt;br /&gt;
    $(function () {&lt;br /&gt;
      var table = $(&#039;#example&#039;);&lt;br /&gt;
&lt;br /&gt;
      if (table.length) {&lt;br /&gt;
        // Füge zusätzliche Kopfzeile mit Input-Feldern hinzu&lt;br /&gt;
        $(&#039;#example thead&#039;).append(&#039;&amp;lt;tr&amp;gt;&amp;lt;/tr&amp;gt;&#039;);&lt;br /&gt;
        $(&#039;#example thead tr:eq(0) th&#039;).each(function () {&lt;br /&gt;
          var title = $(this).text();&lt;br /&gt;
          $(&#039;#example thead tr:eq(1)&#039;).append(&#039;&amp;lt;th&amp;gt;&amp;lt;input type=&amp;quot;text&amp;quot; placeholder=&amp;quot;Suche &#039; + title + &#039;&amp;quot; /&amp;gt;&amp;lt;/th&amp;gt;&#039;);&lt;br /&gt;
        });&lt;br /&gt;
&lt;br /&gt;
        // DataTable initialisieren&lt;br /&gt;
        var dataTable = table.DataTable();&lt;br /&gt;
&lt;br /&gt;
        // Spaltensuche aktivieren&lt;br /&gt;
        dataTable.columns().every(function () {&lt;br /&gt;
          var that = this;&lt;br /&gt;
          $(&#039;input&#039;, this.header()).on(&#039;keyup change clear&#039;, function () {&lt;br /&gt;
            if (that.search() !== this.value) {&lt;br /&gt;
              that.search(this.value).draw();&lt;br /&gt;
            }&lt;br /&gt;
          });&lt;br /&gt;
        });&lt;br /&gt;
      }&lt;br /&gt;
    });&lt;br /&gt;
  });&lt;/div&gt;</summary>
		<author><name>Michel TwainFrame</name></author>
	</entry>
	<entry>
		<id>https://twainframe.org/index.php?title=MediaWiki:Common.js&amp;diff=233</id>
		<title>MediaWiki:Common.js</title>
		<link rel="alternate" type="text/html" href="https://twainframe.org/index.php?title=MediaWiki:Common.js&amp;diff=233"/>
		<updated>2025-06-25T00:06:47Z</updated>

		<summary type="html">&lt;p&gt;Michel TwainFrame: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;// DataTables CSS laden&lt;br /&gt;
mw.loader.load(&#039;https://cdn.datatables.net/1.13.6/css/jquery.dataTables.min.css&#039;, &#039;text/css&#039;);&lt;br /&gt;
&lt;br /&gt;
// DataTables JS laden und initialisieren&lt;br /&gt;
mw.loader.getScript(&#039;https://cdn.datatables.net/1.13.6/js/jquery.dataTables.min.js&#039;)&lt;br /&gt;
  .then(function () {&lt;br /&gt;
    $(function () {&lt;br /&gt;
      var table = $(&#039;#example&#039;);&lt;br /&gt;
&lt;br /&gt;
      if (table.length) {&lt;br /&gt;
        // Füge zusätzliche Kopfzeile mit Input-Feldern hinzu&lt;br /&gt;
        $(&#039;#example thead&#039;).append(&#039;&amp;lt;tr&amp;gt;&amp;lt;/tr&amp;gt;&#039;);&lt;br /&gt;
        $(&#039;#example thead tr:eq(0) th&#039;).each(function () {&lt;br /&gt;
          var title = $(this).text();&lt;br /&gt;
          $(&#039;#example thead tr:eq(1)&#039;).append(&#039;&amp;lt;th&amp;gt;&amp;lt;input type=&amp;quot;text&amp;quot; placeholder=&amp;quot;Suche &#039; + title + &#039;&amp;quot; /&amp;gt;&amp;lt;/th&amp;gt;&#039;);&lt;br /&gt;
        });&lt;br /&gt;
&lt;br /&gt;
        // DataTable initialisieren&lt;br /&gt;
        var dataTable = table.DataTable();&lt;br /&gt;
&lt;br /&gt;
        // Spaltensuche aktivieren&lt;br /&gt;
        dataTable.columns().every(function () {&lt;br /&gt;
          var that = this;&lt;br /&gt;
          $(&#039;input&#039;, this.header()).on(&#039;keyup change clear&#039;, function () {&lt;br /&gt;
            if (that.search() !== this.value) {&lt;br /&gt;
              that.search(this.value).draw();&lt;br /&gt;
            }&lt;br /&gt;
          });&lt;br /&gt;
        });&lt;br /&gt;
      }&lt;br /&gt;
    });&lt;br /&gt;
  });&lt;/div&gt;</summary>
		<author><name>Michel TwainFrame</name></author>
	</entry>
	<entry>
		<id>https://twainframe.org/index.php?title=MediaWiki:Common.js&amp;diff=232</id>
		<title>MediaWiki:Common.js</title>
		<link rel="alternate" type="text/html" href="https://twainframe.org/index.php?title=MediaWiki:Common.js&amp;diff=232"/>
		<updated>2025-06-25T00:05:27Z</updated>

		<summary type="html">&lt;p&gt;Michel TwainFrame: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;// DataTables CSS laden&lt;br /&gt;
mw.loader.load(&#039;https://cdn.datatables.net/1.13.6/css/jquery.dataTables.min.css&#039;, &#039;text/css&#039;);&lt;br /&gt;
&lt;br /&gt;
// DataTables JS laden und initialisieren&lt;br /&gt;
//mw.loader.getScript(&#039;https://cdn.datatables.net/1.13.6/js/jquery.dataTables.min.js&#039;)&lt;br /&gt;
  .then(function () {&lt;br /&gt;
    $(function () {&lt;br /&gt;
      var table = $(&#039;#example&#039;);&lt;br /&gt;
&lt;br /&gt;
      if (table.length) {&lt;br /&gt;
        // Füge zusätzliche Kopfzeile mit Input-Feldern hinzu&lt;br /&gt;
        $(&#039;#example thead&#039;).append(&#039;&amp;lt;tr&amp;gt;&amp;lt;/tr&amp;gt;&#039;);&lt;br /&gt;
        $(&#039;#example thead tr:eq(0) th&#039;).each(function () {&lt;br /&gt;
          var title = $(this).text();&lt;br /&gt;
          $(&#039;#example thead tr:eq(1)&#039;).append(&#039;&amp;lt;th&amp;gt;&amp;lt;input type=&amp;quot;text&amp;quot; placeholder=&amp;quot;Suche &#039; + title + &#039;&amp;quot; /&amp;gt;&amp;lt;/th&amp;gt;&#039;);&lt;br /&gt;
        });&lt;br /&gt;
&lt;br /&gt;
        // DataTable initialisieren&lt;br /&gt;
        var dataTable = table.DataTable();&lt;br /&gt;
&lt;br /&gt;
        // Spaltensuche aktivieren&lt;br /&gt;
        dataTable.columns().every(function () {&lt;br /&gt;
          var that = this;&lt;br /&gt;
          $(&#039;input&#039;, this.header()).on(&#039;keyup change clear&#039;, function () {&lt;br /&gt;
            if (that.search() !== this.value) {&lt;br /&gt;
              that.search(this.value).draw();&lt;br /&gt;
            }&lt;br /&gt;
          });&lt;br /&gt;
        });&lt;br /&gt;
      }&lt;br /&gt;
    });&lt;br /&gt;
  });&lt;/div&gt;</summary>
		<author><name>Michel TwainFrame</name></author>
	</entry>
	<entry>
		<id>https://twainframe.org/index.php?title=TestTable&amp;diff=231</id>
		<title>TestTable</title>
		<link rel="alternate" type="text/html" href="https://twainframe.org/index.php?title=TestTable&amp;diff=231"/>
		<updated>2025-06-25T00:05:01Z</updated>

		<summary type="html">&lt;p&gt;Michel TwainFrame: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;html&amp;gt;&lt;br /&gt;
&amp;lt;table id=&amp;quot;example&amp;quot; class=&amp;quot;wikitable display&amp;quot; style=&amp;quot;width:100%&amp;quot;&amp;gt;&lt;br /&gt;
  &amp;lt;thead&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
      &amp;lt;th&amp;gt;Illustrator&amp;lt;/th&amp;gt;&lt;br /&gt;
      &amp;lt;th&amp;gt;Title&amp;lt;/th&amp;gt;&lt;br /&gt;
      &amp;lt;th&amp;gt;Tags&amp;lt;/th&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
  &amp;lt;/thead&amp;gt;&lt;br /&gt;
  &amp;lt;tbody&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;H. Schrödter&amp;lt;/td&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;Pap&amp;lt;/td&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;-huck -drawing -papfinn -2p&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;E. W. Kemble&amp;lt;/td&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;A Fair Fit&amp;lt;/td&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;-huck -2p -jim -drawing&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;E. Hirth&amp;lt;/td&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;Tragedy&amp;lt;/td&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;-king -1p -drawing&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
  &amp;lt;/tbody&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;script&amp;gt;&lt;br /&gt;
  $(document).ready(function() {&lt;br /&gt;
    $(&#039;#example&#039;).DataTable();&lt;br /&gt;
  });&lt;br /&gt;
&amp;lt;/script&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/html&amp;gt;&lt;/div&gt;</summary>
		<author><name>Michel TwainFrame</name></author>
	</entry>
	<entry>
		<id>https://twainframe.org/index.php?title=TestTable&amp;diff=230</id>
		<title>TestTable</title>
		<link rel="alternate" type="text/html" href="https://twainframe.org/index.php?title=TestTable&amp;diff=230"/>
		<updated>2025-06-25T00:04:37Z</updated>

		<summary type="html">&lt;p&gt;Michel TwainFrame: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;html&amp;gt;&lt;br /&gt;
&amp;lt;table id=&amp;quot;example&amp;quot; class=&amp;quot;wikitable display&amp;quot; style=&amp;quot;width:100%&amp;quot;&amp;gt;&lt;br /&gt;
  &amp;lt;thead&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
      &amp;lt;th&amp;gt;Illustrator&amp;lt;/th&amp;gt;&lt;br /&gt;
      &amp;lt;th&amp;gt;Title&amp;lt;/th&amp;gt;&lt;br /&gt;
      &amp;lt;th&amp;gt;Tags&amp;lt;/th&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
  &amp;lt;/thead&amp;gt;&lt;br /&gt;
  &amp;lt;tbody&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;H. Schrödter&amp;lt;/td&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;Pap&amp;lt;/td&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;-huck -drawing -papfinn -2p&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;E. W. Kemble&amp;lt;/td&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;A Fair Fit&amp;lt;/td&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;-huck -2p -jim -drawing&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;E. Hirth&amp;lt;/td&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;Tragedy&amp;lt;/td&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;-king -1p -drawing&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
  &amp;lt;/tbody&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
#&amp;lt;script&amp;gt;&lt;br /&gt;
  $(document).ready(function() {&lt;br /&gt;
    $(&#039;#example&#039;).DataTable();&lt;br /&gt;
  });&lt;br /&gt;
#&amp;lt;/script&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/html&amp;gt;&lt;/div&gt;</summary>
		<author><name>Michel TwainFrame</name></author>
	</entry>
	<entry>
		<id>https://twainframe.org/index.php?title=TestTable&amp;diff=229</id>
		<title>TestTable</title>
		<link rel="alternate" type="text/html" href="https://twainframe.org/index.php?title=TestTable&amp;diff=229"/>
		<updated>2025-06-25T00:04:15Z</updated>

		<summary type="html">&lt;p&gt;Michel TwainFrame: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;html&amp;gt;&lt;br /&gt;
&amp;lt;table id=&amp;quot;example&amp;quot; class=&amp;quot;wikitable display&amp;quot; style=&amp;quot;width:100%&amp;quot;&amp;gt;&lt;br /&gt;
  &amp;lt;thead&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
      &amp;lt;th&amp;gt;Illustrator&amp;lt;/th&amp;gt;&lt;br /&gt;
      &amp;lt;th&amp;gt;Title&amp;lt;/th&amp;gt;&lt;br /&gt;
      &amp;lt;th&amp;gt;Tags&amp;lt;/th&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
  &amp;lt;/thead&amp;gt;&lt;br /&gt;
  &amp;lt;tbody&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;H. Schrödter&amp;lt;/td&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;Pap&amp;lt;/td&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;-huck -drawing -papfinn -2p&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;E. W. Kemble&amp;lt;/td&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;A Fair Fit&amp;lt;/td&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;-huck -2p -jim -drawing&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;E. Hirth&amp;lt;/td&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;Tragedy&amp;lt;/td&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;-king -1p -drawing&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
  &amp;lt;/tbody&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;script&amp;gt;&lt;br /&gt;
  $(document).ready(function() {&lt;br /&gt;
    $(&#039;#example&#039;).DataTable();&lt;br /&gt;
  });&lt;br /&gt;
&amp;lt;/script&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/html&amp;gt;&lt;/div&gt;</summary>
		<author><name>Michel TwainFrame</name></author>
	</entry>
	<entry>
		<id>https://twainframe.org/index.php?title=TestTable&amp;diff=228</id>
		<title>TestTable</title>
		<link rel="alternate" type="text/html" href="https://twainframe.org/index.php?title=TestTable&amp;diff=228"/>
		<updated>2025-06-25T00:04:02Z</updated>

		<summary type="html">&lt;p&gt;Michel TwainFrame: Änderung 227 von Michel TwainFrame (Diskussion) rückgängig gemacht.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;html&amp;gt;&lt;br /&gt;
&amp;lt;table id=&amp;quot;example&amp;quot; class=&amp;quot;wikitable display&amp;quot; style=&amp;quot;width:100%&amp;quot;&amp;gt;&lt;br /&gt;
  &amp;lt;thead&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
      &amp;lt;th&amp;gt;Illustrator&amp;lt;/th&amp;gt;&lt;br /&gt;
      &amp;lt;th&amp;gt;Title&amp;lt;/th&amp;gt;&lt;br /&gt;
      &amp;lt;th&amp;gt;Tags&amp;lt;/th&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
  &amp;lt;/thead&amp;gt;&lt;br /&gt;
  &amp;lt;tbody&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;H. Schrödter&amp;lt;/td&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;Pap&amp;lt;/td&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;-huck -drawing -papfinn -2p&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;E. W. Kemble&amp;lt;/td&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;A Fair Fit&amp;lt;/td&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;-huck -2p -jim -drawing&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;E. Hirth&amp;lt;/td&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;Tragedy&amp;lt;/td&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;-king -1p -drawing&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
  &amp;lt;/tbody&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;script&amp;gt;&lt;br /&gt;
  $(document).ready(function() {&lt;br /&gt;
    $(&#039;#example&#039;).DataTable();&lt;br /&gt;
  });&lt;br /&gt;
&amp;lt;/script&amp;gt;&lt;br /&gt;
&lt;br /&gt;
----------------------&lt;br /&gt;
&lt;br /&gt;
&amp;lt;table id=&amp;quot;example&amp;quot; class=&amp;quot;wikitable display&amp;quot; style=&amp;quot;width:100%&amp;quot;&amp;gt;&lt;br /&gt;
  &amp;lt;thead&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
      &amp;lt;th&amp;gt;Illustrator&amp;lt;/th&amp;gt;&lt;br /&gt;
      &amp;lt;th&amp;gt;Title&amp;lt;/th&amp;gt;&lt;br /&gt;
      &amp;lt;th&amp;gt;Tags&amp;lt;/th&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
  &amp;lt;/thead&amp;gt;&lt;br /&gt;
  &amp;lt;tbody&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;H. Schrödter&amp;lt;/td&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;Pap&amp;lt;/td&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;-huck -drawing -papfinn -2p&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;E. W. Kemble&amp;lt;/td&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;A Fair Fit&amp;lt;/td&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;-huck -2p -jim -drawing&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;E. Hirth&amp;lt;/td&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;Tragedy&amp;lt;/td&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;-king -1p -drawing&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
  &amp;lt;/tbody&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&amp;lt;script&amp;gt;&lt;br /&gt;
  $(document).ready(function() {&lt;br /&gt;
    $(&#039;#example&#039;).DataTable();&lt;br /&gt;
  });&lt;br /&gt;
&amp;lt;/script&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/html&amp;gt;&lt;/div&gt;</summary>
		<author><name>Michel TwainFrame</name></author>
	</entry>
	<entry>
		<id>https://twainframe.org/index.php?title=TestTable&amp;diff=227</id>
		<title>TestTable</title>
		<link rel="alternate" type="text/html" href="https://twainframe.org/index.php?title=TestTable&amp;diff=227"/>
		<updated>2025-06-25T00:03:39Z</updated>

		<summary type="html">&lt;p&gt;Michel TwainFrame: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;html&amp;gt;&lt;br /&gt;
&amp;lt;table id=&amp;quot;example&amp;quot; class=&amp;quot;wikitable display&amp;quot; style=&amp;quot;width:100%&amp;quot;&amp;gt;&lt;br /&gt;
  &amp;lt;thead&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
      &amp;lt;th&amp;gt;Illustrator&amp;lt;/th&amp;gt;&lt;br /&gt;
      &amp;lt;th&amp;gt;Title&amp;lt;/th&amp;gt;&lt;br /&gt;
      &amp;lt;th&amp;gt;Tags&amp;lt;/th&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
  &amp;lt;/thead&amp;gt;&lt;br /&gt;
  &amp;lt;tbody&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;H. Schrödter&amp;lt;/td&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;Pap&amp;lt;/td&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;-huck -drawing -papfinn -2p&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;E. W. Kemble&amp;lt;/td&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;A Fair Fit&amp;lt;/td&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;-huck -2p -jim -drawing&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;E. Hirth&amp;lt;/td&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;Tragedy&amp;lt;/td&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;-king -1p -drawing&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
  &amp;lt;/tbody&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;script&amp;gt;&lt;br /&gt;
  $(document).ready(function() {&lt;br /&gt;
    $(&#039;#example&#039;).DataTable();&lt;br /&gt;
  });&lt;br /&gt;
&amp;lt;/script&amp;gt;&lt;/div&gt;</summary>
		<author><name>Michel TwainFrame</name></author>
	</entry>
	<entry>
		<id>https://twainframe.org/index.php?title=TestTable&amp;diff=226</id>
		<title>TestTable</title>
		<link rel="alternate" type="text/html" href="https://twainframe.org/index.php?title=TestTable&amp;diff=226"/>
		<updated>2025-06-25T00:03:25Z</updated>

		<summary type="html">&lt;p&gt;Michel TwainFrame: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;html&amp;gt;&lt;br /&gt;
&amp;lt;table id=&amp;quot;example&amp;quot; class=&amp;quot;wikitable display&amp;quot; style=&amp;quot;width:100%&amp;quot;&amp;gt;&lt;br /&gt;
  &amp;lt;thead&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
      &amp;lt;th&amp;gt;Illustrator&amp;lt;/th&amp;gt;&lt;br /&gt;
      &amp;lt;th&amp;gt;Title&amp;lt;/th&amp;gt;&lt;br /&gt;
      &amp;lt;th&amp;gt;Tags&amp;lt;/th&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
  &amp;lt;/thead&amp;gt;&lt;br /&gt;
  &amp;lt;tbody&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;H. Schrödter&amp;lt;/td&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;Pap&amp;lt;/td&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;-huck -drawing -papfinn -2p&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;E. W. Kemble&amp;lt;/td&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;A Fair Fit&amp;lt;/td&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;-huck -2p -jim -drawing&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;E. Hirth&amp;lt;/td&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;Tragedy&amp;lt;/td&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;-king -1p -drawing&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
  &amp;lt;/tbody&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;script&amp;gt;&lt;br /&gt;
  $(document).ready(function() {&lt;br /&gt;
    $(&#039;#example&#039;).DataTable();&lt;br /&gt;
  });&lt;br /&gt;
&amp;lt;/script&amp;gt;&lt;br /&gt;
&lt;br /&gt;
----------------------&lt;br /&gt;
&lt;br /&gt;
&amp;lt;table id=&amp;quot;example&amp;quot; class=&amp;quot;wikitable display&amp;quot; style=&amp;quot;width:100%&amp;quot;&amp;gt;&lt;br /&gt;
  &amp;lt;thead&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
      &amp;lt;th&amp;gt;Illustrator&amp;lt;/th&amp;gt;&lt;br /&gt;
      &amp;lt;th&amp;gt;Title&amp;lt;/th&amp;gt;&lt;br /&gt;
      &amp;lt;th&amp;gt;Tags&amp;lt;/th&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
  &amp;lt;/thead&amp;gt;&lt;br /&gt;
  &amp;lt;tbody&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;H. Schrödter&amp;lt;/td&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;Pap&amp;lt;/td&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;-huck -drawing -papfinn -2p&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;E. W. Kemble&amp;lt;/td&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;A Fair Fit&amp;lt;/td&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;-huck -2p -jim -drawing&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;E. Hirth&amp;lt;/td&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;Tragedy&amp;lt;/td&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;-king -1p -drawing&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
  &amp;lt;/tbody&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&amp;lt;script&amp;gt;&lt;br /&gt;
  $(document).ready(function() {&lt;br /&gt;
    $(&#039;#example&#039;).DataTable();&lt;br /&gt;
  });&lt;br /&gt;
&amp;lt;/script&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/html&amp;gt;&lt;/div&gt;</summary>
		<author><name>Michel TwainFrame</name></author>
	</entry>
	<entry>
		<id>https://twainframe.org/index.php?title=TestTable&amp;diff=225</id>
		<title>TestTable</title>
		<link rel="alternate" type="text/html" href="https://twainframe.org/index.php?title=TestTable&amp;diff=225"/>
		<updated>2025-06-25T00:03:08Z</updated>

		<summary type="html">&lt;p&gt;Michel TwainFrame: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;html&amp;gt;&lt;br /&gt;
&amp;lt;table id=&amp;quot;example&amp;quot; class=&amp;quot;wikitable display&amp;quot; style=&amp;quot;width:100%&amp;quot;&amp;gt;&lt;br /&gt;
  &amp;lt;thead&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
      &amp;lt;th&amp;gt;Illustrator&amp;lt;/th&amp;gt;&lt;br /&gt;
      &amp;lt;th&amp;gt;Title&amp;lt;/th&amp;gt;&lt;br /&gt;
      &amp;lt;th&amp;gt;Tags&amp;lt;/th&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
  &amp;lt;/thead&amp;gt;&lt;br /&gt;
  &amp;lt;tbody&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;H. Schrödter&amp;lt;/td&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;Pap&amp;lt;/td&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;-huck -drawing -papfinn -2p&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;E. W. Kemble&amp;lt;/td&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;A Fair Fit&amp;lt;/td&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;-huck -2p -jim -drawing&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;E. Hirth&amp;lt;/td&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;Tragedy&amp;lt;/td&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;-king -1p -drawing&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
  &amp;lt;/tbody&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;script&amp;gt;&lt;br /&gt;
  $(document).ready(function() {&lt;br /&gt;
    $(&#039;#example&#039;).DataTable();&lt;br /&gt;
  });&lt;br /&gt;
&amp;lt;/script&amp;gt;&lt;br /&gt;
&lt;br /&gt;
----------------------&lt;br /&gt;
&lt;br /&gt;
&amp;lt;table id=&amp;quot;example&amp;quot; class=&amp;quot;wikitable display&amp;quot; style=&amp;quot;width:100%&amp;quot;&amp;gt;&lt;br /&gt;
  &amp;lt;thead&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
      &amp;lt;th&amp;gt;Illustrator&amp;lt;/th&amp;gt;&lt;br /&gt;
      &amp;lt;th&amp;gt;Title&amp;lt;/th&amp;gt;&lt;br /&gt;
      &amp;lt;th&amp;gt;Tags&amp;lt;/th&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
  &amp;lt;/thead&amp;gt;&lt;br /&gt;
  &amp;lt;tbody&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;H. Schrödter&amp;lt;/td&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;Pap&amp;lt;/td&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;-huck -drawing -papfinn -2p&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;E. W. Kemble&amp;lt;/td&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;A Fair Fit&amp;lt;/td&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;-huck -2p -jim -drawing&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;E. Hirth&amp;lt;/td&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;Tragedy&amp;lt;/td&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;-king -1p -drawing&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
  &amp;lt;/tbody&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/html&amp;gt;&lt;/div&gt;</summary>
		<author><name>Michel TwainFrame</name></author>
	</entry>
	<entry>
		<id>https://twainframe.org/index.php?title=MediaWiki:Common.js&amp;diff=224</id>
		<title>MediaWiki:Common.js</title>
		<link rel="alternate" type="text/html" href="https://twainframe.org/index.php?title=MediaWiki:Common.js&amp;diff=224"/>
		<updated>2025-06-25T00:01:33Z</updated>

		<summary type="html">&lt;p&gt;Michel TwainFrame: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;// DataTables CSS laden&lt;br /&gt;
mw.loader.load(&#039;https://cdn.datatables.net/1.13.6/css/jquery.dataTables.min.css&#039;, &#039;text/css&#039;);&lt;br /&gt;
&lt;br /&gt;
// DataTables JS laden und initialisieren&lt;br /&gt;
mw.loader.getScript(&#039;https://cdn.datatables.net/1.13.6/js/jquery.dataTables.min.js&#039;)&lt;br /&gt;
  .then(function () {&lt;br /&gt;
    $(function () {&lt;br /&gt;
      var table = $(&#039;#example&#039;);&lt;br /&gt;
&lt;br /&gt;
      if (table.length) {&lt;br /&gt;
        // Füge zusätzliche Kopfzeile mit Input-Feldern hinzu&lt;br /&gt;
        $(&#039;#example thead&#039;).append(&#039;&amp;lt;tr&amp;gt;&amp;lt;/tr&amp;gt;&#039;);&lt;br /&gt;
        $(&#039;#example thead tr:eq(0) th&#039;).each(function () {&lt;br /&gt;
          var title = $(this).text();&lt;br /&gt;
          $(&#039;#example thead tr:eq(1)&#039;).append(&#039;&amp;lt;th&amp;gt;&amp;lt;input type=&amp;quot;text&amp;quot; placeholder=&amp;quot;Suche &#039; + title + &#039;&amp;quot; /&amp;gt;&amp;lt;/th&amp;gt;&#039;);&lt;br /&gt;
        });&lt;br /&gt;
&lt;br /&gt;
        // DataTable initialisieren&lt;br /&gt;
        var dataTable = table.DataTable();&lt;br /&gt;
&lt;br /&gt;
        // Spaltensuche aktivieren&lt;br /&gt;
        dataTable.columns().every(function () {&lt;br /&gt;
          var that = this;&lt;br /&gt;
          $(&#039;input&#039;, this.header()).on(&#039;keyup change clear&#039;, function () {&lt;br /&gt;
            if (that.search() !== this.value) {&lt;br /&gt;
              that.search(this.value).draw();&lt;br /&gt;
            }&lt;br /&gt;
          });&lt;br /&gt;
        });&lt;br /&gt;
      }&lt;br /&gt;
    });&lt;br /&gt;
  });&lt;/div&gt;</summary>
		<author><name>Michel TwainFrame</name></author>
	</entry>
	<entry>
		<id>https://twainframe.org/index.php?title=TestTable&amp;diff=223</id>
		<title>TestTable</title>
		<link rel="alternate" type="text/html" href="https://twainframe.org/index.php?title=TestTable&amp;diff=223"/>
		<updated>2025-06-25T00:00:11Z</updated>

		<summary type="html">&lt;p&gt;Michel TwainFrame: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;html&amp;gt;&lt;br /&gt;
&amp;lt;table id=&amp;quot;example&amp;quot; class=&amp;quot;wikitable display&amp;quot; style=&amp;quot;width:100%&amp;quot;&amp;gt;&lt;br /&gt;
  &amp;lt;thead&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
      &amp;lt;th&amp;gt;Illustrator&amp;lt;/th&amp;gt;&lt;br /&gt;
      &amp;lt;th&amp;gt;Title&amp;lt;/th&amp;gt;&lt;br /&gt;
      &amp;lt;th&amp;gt;Tags&amp;lt;/th&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
  &amp;lt;/thead&amp;gt;&lt;br /&gt;
  &amp;lt;tbody&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;H. Schrödter&amp;lt;/td&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;Pap&amp;lt;/td&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;-huck -drawing -papfinn -2p&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;E. W. Kemble&amp;lt;/td&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;A Fair Fit&amp;lt;/td&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;-huck -2p -jim -drawing&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;E. Hirth&amp;lt;/td&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;Tragedy&amp;lt;/td&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;-king -1p -drawing&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
  &amp;lt;/tbody&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;script&amp;gt;&lt;br /&gt;
  $(document).ready(function() {&lt;br /&gt;
    $(&#039;#example&#039;).DataTable();&lt;br /&gt;
  });&lt;br /&gt;
&amp;lt;/script&amp;gt;&lt;br /&gt;
&lt;br /&gt;
----------------------&lt;br /&gt;
&lt;br /&gt;
&amp;lt;table id=&amp;quot;example&amp;quot; class=&amp;quot;wikitable display&amp;quot; style=&amp;quot;width:100%&amp;quot;&amp;gt;&lt;br /&gt;
  &amp;lt;thead&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
      &amp;lt;th&amp;gt;Illustrator&amp;lt;/th&amp;gt;&lt;br /&gt;
      &amp;lt;th&amp;gt;Title&amp;lt;/th&amp;gt;&lt;br /&gt;
      &amp;lt;th&amp;gt;Tags&amp;lt;/th&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
      &amp;lt;th&amp;gt;&amp;lt;input type=&amp;quot;text&amp;quot; placeholder=&amp;quot;Suche Illustrator&amp;quot; /&amp;gt;&amp;lt;/th&amp;gt;&lt;br /&gt;
      &amp;lt;th&amp;gt;&amp;lt;input type=&amp;quot;text&amp;quot; placeholder=&amp;quot;Suche Titel&amp;quot; /&amp;gt;&amp;lt;/th&amp;gt;&lt;br /&gt;
      &amp;lt;th&amp;gt;&amp;lt;input type=&amp;quot;text&amp;quot; placeholder=&amp;quot;Suche Tags&amp;quot; /&amp;gt;&amp;lt;/th&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
  &amp;lt;/thead&amp;gt;&lt;br /&gt;
  &amp;lt;tbody&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;H. Schrödter&amp;lt;/td&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;Pap&amp;lt;/td&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;-huck -drawing -papfinn -2p&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;E. W. Kemble&amp;lt;/td&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;A Fair Fit&amp;lt;/td&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;-huck -2p -jim -drawing&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;E. Hirth&amp;lt;/td&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;Tragedy&amp;lt;/td&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;-king -1p -drawing&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
  &amp;lt;/tbody&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/html&amp;gt;&lt;/div&gt;</summary>
		<author><name>Michel TwainFrame</name></author>
	</entry>
	<entry>
		<id>https://twainframe.org/index.php?title=TestTable&amp;diff=222</id>
		<title>TestTable</title>
		<link rel="alternate" type="text/html" href="https://twainframe.org/index.php?title=TestTable&amp;diff=222"/>
		<updated>2025-06-24T23:58:48Z</updated>

		<summary type="html">&lt;p&gt;Michel TwainFrame: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;html&amp;gt;&lt;br /&gt;
&amp;lt;table id=&amp;quot;example&amp;quot; class=&amp;quot;wikitable display&amp;quot; style=&amp;quot;width:100%&amp;quot;&amp;gt;&lt;br /&gt;
  &amp;lt;thead&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
      &amp;lt;th&amp;gt;Illustrator&amp;lt;/th&amp;gt;&lt;br /&gt;
      &amp;lt;th&amp;gt;Title&amp;lt;/th&amp;gt;&lt;br /&gt;
      &amp;lt;th&amp;gt;Tags&amp;lt;/th&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
  &amp;lt;/thead&amp;gt;&lt;br /&gt;
  &amp;lt;tbody&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;H. Schrödter&amp;lt;/td&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;Pap&amp;lt;/td&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;-huck -drawing -papfinn -2p&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;E. W. Kemble&amp;lt;/td&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;A Fair Fit&amp;lt;/td&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;-huck -2p -jim -drawing&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;E. Hirth&amp;lt;/td&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;Tragedy&amp;lt;/td&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;-king -1p -drawing&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
  &amp;lt;/tbody&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;script&amp;gt;&lt;br /&gt;
  $(document).ready(function() {&lt;br /&gt;
    $(&#039;#example&#039;).DataTable();&lt;br /&gt;
  });&lt;br /&gt;
&amp;lt;/script&amp;gt;&lt;br /&gt;
&lt;br /&gt;
----------------------&lt;br /&gt;
&lt;br /&gt;
&amp;lt;table id=&amp;quot;#example&amp;quot; class=&amp;quot;wikitable display&amp;quot; style=&amp;quot;width:100%&amp;quot;&amp;gt;&lt;br /&gt;
  &amp;lt;thead&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
      &amp;lt;th&amp;gt;Illustrator&amp;lt;/th&amp;gt;&lt;br /&gt;
      &amp;lt;th&amp;gt;Title&amp;lt;/th&amp;gt;&lt;br /&gt;
      &amp;lt;th&amp;gt;Tags&amp;lt;/th&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
      &amp;lt;th&amp;gt;&amp;lt;input type=&amp;quot;text&amp;quot; placeholder=&amp;quot;Suche Illustrator&amp;quot; /&amp;gt;&amp;lt;/th&amp;gt;&lt;br /&gt;
      &amp;lt;th&amp;gt;&amp;lt;input type=&amp;quot;text&amp;quot; placeholder=&amp;quot;Suche Titel&amp;quot; /&amp;gt;&amp;lt;/th&amp;gt;&lt;br /&gt;
      &amp;lt;th&amp;gt;&amp;lt;input type=&amp;quot;text&amp;quot; placeholder=&amp;quot;Suche Tags&amp;quot; /&amp;gt;&amp;lt;/th&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
  &amp;lt;/thead&amp;gt;&lt;br /&gt;
  &amp;lt;tbody&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;H. Schrödter&amp;lt;/td&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;Pap&amp;lt;/td&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;-huck -drawing -papfinn -2p&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;E. W. Kemble&amp;lt;/td&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;A Fair Fit&amp;lt;/td&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;-huck -2p -jim -drawing&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;E. Hirth&amp;lt;/td&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;Tragedy&amp;lt;/td&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;-king -1p -drawing&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
  &amp;lt;/tbody&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/html&amp;gt;&lt;/div&gt;</summary>
		<author><name>Michel TwainFrame</name></author>
	</entry>
	<entry>
		<id>https://twainframe.org/index.php?title=MediaWiki:Common.js&amp;diff=221</id>
		<title>MediaWiki:Common.js</title>
		<link rel="alternate" type="text/html" href="https://twainframe.org/index.php?title=MediaWiki:Common.js&amp;diff=221"/>
		<updated>2025-06-24T23:57:54Z</updated>

		<summary type="html">&lt;p&gt;Michel TwainFrame: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;// DataTables CSS laden&lt;br /&gt;
mw.loader.load(&#039;https://cdn.datatables.net/1.13.6/css/jquery.dataTables.min.css&#039;, &#039;text/css&#039;);&lt;br /&gt;
&lt;br /&gt;
// JS laden und initialisieren nach vollständigem Seitenaufbau&lt;br /&gt;
mw.loader.getScript(&#039;https://cdn.datatables.net/1.13.6/js/jquery.dataTables.min.js&#039;)&lt;br /&gt;
  .then(function () {&lt;br /&gt;
    $(function () {&lt;br /&gt;
      var table = document.getElementById(&#039;illust-table&#039;);&lt;br /&gt;
      if (table) {&lt;br /&gt;
        console.log(&#039;Initialisiere DataTables für #illust-table …&#039;);&lt;br /&gt;
        $(&#039;#illust-table&#039;).DataTable();&lt;br /&gt;
      } else {&lt;br /&gt;
        console.warn(&#039;Tabelle mit ID &amp;quot;illust-table&amp;quot; nicht gefunden.&#039;);&lt;br /&gt;
      }&lt;br /&gt;
    });&lt;br /&gt;
  });&lt;br /&gt;
  &lt;br /&gt;
$(document).ready(function () {&lt;br /&gt;
  var table = $(&#039;#example&#039;).DataTable();&lt;br /&gt;
&lt;br /&gt;
  // Spaltensuche aktivieren&lt;br /&gt;
  $(&#039;#example thead tr:eq(1) th&#039;).each(function (i) {&lt;br /&gt;
    $(&#039;input&#039;, this).on(&#039;keyup change&#039;, function () {&lt;br /&gt;
      if (table.column(i).search() !== this.value) {&lt;br /&gt;
        table.column(i).search(this.value).draw();&lt;br /&gt;
      }&lt;br /&gt;
    });&lt;br /&gt;
  });&lt;br /&gt;
});&lt;/div&gt;</summary>
		<author><name>Michel TwainFrame</name></author>
	</entry>
	<entry>
		<id>https://twainframe.org/index.php?title=TestTable&amp;diff=220</id>
		<title>TestTable</title>
		<link rel="alternate" type="text/html" href="https://twainframe.org/index.php?title=TestTable&amp;diff=220"/>
		<updated>2025-06-24T23:57:07Z</updated>

		<summary type="html">&lt;p&gt;Michel TwainFrame: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;html&amp;gt;&lt;br /&gt;
&amp;lt;table id=&amp;quot;example&amp;quot; class=&amp;quot;wikitable display&amp;quot; style=&amp;quot;width:100%&amp;quot;&amp;gt;&lt;br /&gt;
  &amp;lt;thead&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
      &amp;lt;th&amp;gt;Illustrator&amp;lt;/th&amp;gt;&lt;br /&gt;
      &amp;lt;th&amp;gt;Title&amp;lt;/th&amp;gt;&lt;br /&gt;
      &amp;lt;th&amp;gt;Tags&amp;lt;/th&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
  &amp;lt;/thead&amp;gt;&lt;br /&gt;
  &amp;lt;tbody&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;H. Schrödter&amp;lt;/td&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;Pap&amp;lt;/td&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;-huck -drawing -papfinn -2p&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;E. W. Kemble&amp;lt;/td&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;A Fair Fit&amp;lt;/td&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;-huck -2p -jim -drawing&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;E. Hirth&amp;lt;/td&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;Tragedy&amp;lt;/td&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;-king -1p -drawing&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
  &amp;lt;/tbody&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;script&amp;gt;&lt;br /&gt;
  $(document).ready(function() {&lt;br /&gt;
    $(&#039;#example&#039;).DataTable();&lt;br /&gt;
  });&lt;br /&gt;
&amp;lt;/script&amp;gt;&lt;br /&gt;
&lt;br /&gt;
----------------------&lt;br /&gt;
&lt;br /&gt;
&amp;lt;table id=&amp;quot;example&amp;quot; class=&amp;quot;wikitable display&amp;quot; style=&amp;quot;width:100%&amp;quot;&amp;gt;&lt;br /&gt;
  &amp;lt;thead&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
      &amp;lt;th&amp;gt;Illustrator&amp;lt;/th&amp;gt;&lt;br /&gt;
      &amp;lt;th&amp;gt;Title&amp;lt;/th&amp;gt;&lt;br /&gt;
      &amp;lt;th&amp;gt;Tags&amp;lt;/th&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
      &amp;lt;th&amp;gt;&amp;lt;input type=&amp;quot;text&amp;quot; placeholder=&amp;quot;Suche Illustrator&amp;quot; /&amp;gt;&amp;lt;/th&amp;gt;&lt;br /&gt;
      &amp;lt;th&amp;gt;&amp;lt;input type=&amp;quot;text&amp;quot; placeholder=&amp;quot;Suche Titel&amp;quot; /&amp;gt;&amp;lt;/th&amp;gt;&lt;br /&gt;
      &amp;lt;th&amp;gt;&amp;lt;input type=&amp;quot;text&amp;quot; placeholder=&amp;quot;Suche Tags&amp;quot; /&amp;gt;&amp;lt;/th&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
  &amp;lt;/thead&amp;gt;&lt;br /&gt;
  &amp;lt;tbody&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;H. Schrödter&amp;lt;/td&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;Pap&amp;lt;/td&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;-huck -drawing -papfinn -2p&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;E. W. Kemble&amp;lt;/td&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;A Fair Fit&amp;lt;/td&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;-huck -2p -jim -drawing&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;E. Hirth&amp;lt;/td&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;Tragedy&amp;lt;/td&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;-king -1p -drawing&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
  &amp;lt;/tbody&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/html&amp;gt;&lt;/div&gt;</summary>
		<author><name>Michel TwainFrame</name></author>
	</entry>
	<entry>
		<id>https://twainframe.org/index.php?title=TestTable&amp;diff=219</id>
		<title>TestTable</title>
		<link rel="alternate" type="text/html" href="https://twainframe.org/index.php?title=TestTable&amp;diff=219"/>
		<updated>2025-06-24T21:10:59Z</updated>

		<summary type="html">&lt;p&gt;Michel TwainFrame: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;html&amp;gt;&lt;br /&gt;
&amp;lt;table id=&amp;quot;example&amp;quot; class=&amp;quot;display&amp;quot; style=&amp;quot;width:100%&amp;quot;&amp;gt;&lt;br /&gt;
  &amp;lt;thead&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
      &amp;lt;th&amp;gt;Illustrator&amp;lt;/th&amp;gt;&lt;br /&gt;
      &amp;lt;th&amp;gt;Title&amp;lt;/th&amp;gt;&lt;br /&gt;
      &amp;lt;th&amp;gt;Tags&amp;lt;/th&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
  &amp;lt;/thead&amp;gt;&lt;br /&gt;
  &amp;lt;tbody&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;H. Schrödter&amp;lt;/td&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;Pap&amp;lt;/td&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;-huck -drawing -papfinn -2p&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;E. W. Kemble&amp;lt;/td&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;A Fair Fit&amp;lt;/td&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;-huck -2p -jim -drawing&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;E. Hirth&amp;lt;/td&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;Tragedy&amp;lt;/td&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;-king -1p -drawing&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
  &amp;lt;/tbody&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;script&amp;gt;&lt;br /&gt;
  $(document).ready(function() {&lt;br /&gt;
    $(&#039;#example&#039;).DataTable();&lt;br /&gt;
  });&lt;br /&gt;
&amp;lt;/script&amp;gt;&lt;br /&gt;
&amp;lt;/html&amp;gt;&lt;/div&gt;</summary>
		<author><name>Michel TwainFrame</name></author>
	</entry>
	<entry>
		<id>https://twainframe.org/index.php?title=TestTable&amp;diff=218</id>
		<title>TestTable</title>
		<link rel="alternate" type="text/html" href="https://twainframe.org/index.php?title=TestTable&amp;diff=218"/>
		<updated>2025-06-24T21:09:41Z</updated>

		<summary type="html">&lt;p&gt;Michel TwainFrame: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;table id=&amp;quot;illust-table&amp;quot; class=&amp;quot;wikitable datatable&amp;quot;&amp;gt;&lt;br /&gt;
  &amp;lt;thead&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
      &amp;lt;th&amp;gt;Illustrator&amp;lt;/th&amp;gt;&lt;br /&gt;
      &amp;lt;th&amp;gt;Title&amp;lt;/th&amp;gt;&lt;br /&gt;
      &amp;lt;th&amp;gt;Tags&amp;lt;/th&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
  &amp;lt;/thead&amp;gt;&lt;br /&gt;
  &amp;lt;tbody&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;H. Schrödter&amp;lt;/td&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;Pap&amp;lt;/td&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;-huck -drawing -papfinn -2p&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;E. W. Kemble&amp;lt;/td&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;A Fair Fit&amp;lt;/td&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;-huck -2p -jim -drawing&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;E. Hirth&amp;lt;/td&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;Tragedy&amp;lt;/td&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;-king -1p -drawing&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
  &amp;lt;/tbody&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;/div&gt;</summary>
		<author><name>Michel TwainFrame</name></author>
	</entry>
	<entry>
		<id>https://twainframe.org/index.php?title=TestTable&amp;diff=217</id>
		<title>TestTable</title>
		<link rel="alternate" type="text/html" href="https://twainframe.org/index.php?title=TestTable&amp;diff=217"/>
		<updated>2025-06-24T21:07:28Z</updated>

		<summary type="html">&lt;p&gt;Michel TwainFrame: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;div style=&amp;quot;color: red;&amp;quot;&amp;gt;Das ist roter Text mit Raw HTML.&amp;lt;/div&amp;gt;&lt;/div&gt;</summary>
		<author><name>Michel TwainFrame</name></author>
	</entry>
	<entry>
		<id>https://twainframe.org/index.php?title=TestTable&amp;diff=216</id>
		<title>TestTable</title>
		<link rel="alternate" type="text/html" href="https://twainframe.org/index.php?title=TestTable&amp;diff=216"/>
		<updated>2025-06-24T21:03:51Z</updated>

		<summary type="html">&lt;p&gt;Michel TwainFrame: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| id=&amp;quot;illust-table&amp;quot; class=&amp;quot;wikitable datatable&amp;quot;&lt;br /&gt;
! Illustrator !! Title !! Tags&lt;br /&gt;
|-&lt;br /&gt;
| H. Schrödter || Pap || -huck -drawing -papfinn -2p&lt;br /&gt;
|-&lt;br /&gt;
| E. W. Kemble || A Fair Fit || -huck -2p -jim -drawing&lt;br /&gt;
|-&lt;br /&gt;
| E. Hirth || Tragedy || -king -1p -drawing&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Michel TwainFrame</name></author>
	</entry>
	<entry>
		<id>https://twainframe.org/index.php?title=TestTable&amp;diff=215</id>
		<title>TestTable</title>
		<link rel="alternate" type="text/html" href="https://twainframe.org/index.php?title=TestTable&amp;diff=215"/>
		<updated>2025-06-24T20:59:47Z</updated>

		<summary type="html">&lt;p&gt;Michel TwainFrame: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| id=&amp;quot;illust-table&amp;quot; class=&amp;quot;wikitable datatable&amp;quot;&lt;br /&gt;
! Illustrator !! Title !! Tags&lt;br /&gt;
|-&lt;br /&gt;
| H. Schrödter || Pap         || -huck -drawing -papfinn -2p&lt;br /&gt;
|-&lt;br /&gt;
| E. W. Kemble || A Fair Fit  || -huck -2p -jim -drawing&lt;br /&gt;
|-&lt;br /&gt;
| E. Hirth     || Tragedy     || -king -1p -drawing&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Michel TwainFrame</name></author>
	</entry>
	<entry>
		<id>https://twainframe.org/index.php?title=MediaWiki:Common.js&amp;diff=214</id>
		<title>MediaWiki:Common.js</title>
		<link rel="alternate" type="text/html" href="https://twainframe.org/index.php?title=MediaWiki:Common.js&amp;diff=214"/>
		<updated>2025-06-24T20:59:23Z</updated>

		<summary type="html">&lt;p&gt;Michel TwainFrame: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;// DataTables CSS laden&lt;br /&gt;
mw.loader.load(&#039;https://cdn.datatables.net/1.13.6/css/jquery.dataTables.min.css&#039;, &#039;text/css&#039;);&lt;br /&gt;
&lt;br /&gt;
// JS laden und initialisieren nach vollständigem Seitenaufbau&lt;br /&gt;
mw.loader.getScript(&#039;https://cdn.datatables.net/1.13.6/js/jquery.dataTables.min.js&#039;)&lt;br /&gt;
  .then(function () {&lt;br /&gt;
    $(function () {&lt;br /&gt;
      var table = document.getElementById(&#039;illust-table&#039;);&lt;br /&gt;
      if (table) {&lt;br /&gt;
        console.log(&#039;Initialisiere DataTables für #illust-table …&#039;);&lt;br /&gt;
        $(&#039;#illust-table&#039;).DataTable();&lt;br /&gt;
      } else {&lt;br /&gt;
        console.warn(&#039;Tabelle mit ID &amp;quot;illust-table&amp;quot; nicht gefunden.&#039;);&lt;br /&gt;
      }&lt;br /&gt;
    });&lt;br /&gt;
  });&lt;/div&gt;</summary>
		<author><name>Michel TwainFrame</name></author>
	</entry>
	<entry>
		<id>https://twainframe.org/index.php?title=TestTable&amp;diff=213</id>
		<title>TestTable</title>
		<link rel="alternate" type="text/html" href="https://twainframe.org/index.php?title=TestTable&amp;diff=213"/>
		<updated>2025-06-24T20:58:20Z</updated>

		<summary type="html">&lt;p&gt;Michel TwainFrame: Die Seite wurde neu angelegt: „{| id=&amp;quot;illust-table&amp;quot; class=&amp;quot;datatable&amp;quot; ! Illustrator !! Title !! Tags |- | H. Schrödter || Pap         || -huck -drawing -papfinn -2p |- | E. W. Kemble || A Fair Fit  || -huck -2p -jim -drawing |- | E. Hirth     || Tragedy     || -king -1p -drawing |}“&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| id=&amp;quot;illust-table&amp;quot; class=&amp;quot;datatable&amp;quot;&lt;br /&gt;
! Illustrator !! Title !! Tags&lt;br /&gt;
|-&lt;br /&gt;
| H. Schrödter || Pap         || -huck -drawing -papfinn -2p&lt;br /&gt;
|-&lt;br /&gt;
| E. W. Kemble || A Fair Fit  || -huck -2p -jim -drawing&lt;br /&gt;
|-&lt;br /&gt;
| E. Hirth     || Tragedy     || -king -1p -drawing&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Michel TwainFrame</name></author>
	</entry>
	<entry>
		<id>https://twainframe.org/index.php?title=MediaWiki:Common.js&amp;diff=209</id>
		<title>MediaWiki:Common.js</title>
		<link rel="alternate" type="text/html" href="https://twainframe.org/index.php?title=MediaWiki:Common.js&amp;diff=209"/>
		<updated>2025-06-24T20:49:53Z</updated>

		<summary type="html">&lt;p&gt;Michel TwainFrame: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;mw.loader.getScript(&#039;https://cdn.datatables.net/1.13.6/js/jquery.dataTables.min.js&#039;)&lt;br /&gt;
  .then(function () {&lt;br /&gt;
    console.log(&#039;DataTables erfolgreich geladen!&#039;);&lt;br /&gt;
    $(document).ready(function () {&lt;br /&gt;
      $(&#039;#illust-table&#039;).DataTable();  // nur diese eine Tabelle initialisieren&lt;br /&gt;
    });&lt;br /&gt;
  })&lt;br /&gt;
  .catch(function (err) {&lt;br /&gt;
    console.error(&#039;Fehler beim Laden von DataTables:&#039;, err);&lt;br /&gt;
  });&lt;br /&gt;
&lt;br /&gt;
// optional: CSS nachladen&lt;br /&gt;
mw.loader.load(&#039;https://cdn.datatables.net/1.13.6/css/jquery.dataTables.min.css&#039;, &#039;text/css&#039;);&lt;/div&gt;</summary>
		<author><name>Michel TwainFrame</name></author>
	</entry>
	<entry>
		<id>https://twainframe.org/index.php?title=MediaWiki:Common.js&amp;diff=207</id>
		<title>MediaWiki:Common.js</title>
		<link rel="alternate" type="text/html" href="https://twainframe.org/index.php?title=MediaWiki:Common.js&amp;diff=207"/>
		<updated>2025-06-24T20:46:29Z</updated>

		<summary type="html">&lt;p&gt;Michel TwainFrame: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;console.log(&#039;DataTables-Skript wird geladen...&#039;);&lt;br /&gt;
&lt;br /&gt;
// DataTables JS nachladen und dann initialisieren&lt;br /&gt;
mw.loader.getScript(&#039;https://cdn.datatables.net/1.13.6/js/jquery.dataTables.min.js&#039;)&lt;br /&gt;
  .then(function () {&lt;br /&gt;
    console.log(&#039;DataTables erfolgreich geladen! Initialisiere Tabelle...&#039;);&lt;br /&gt;
&lt;br /&gt;
    // Initialisierung (jetzt fehlt sie noch!)&lt;br /&gt;
    $(document).ready(function () {&lt;br /&gt;
      $(&#039;.datatable&#039;).DataTable();&lt;br /&gt;
    });&lt;br /&gt;
  })&lt;br /&gt;
  .catch(function (err) {&lt;br /&gt;
    console.error(&#039;Fehler beim Laden von DataTables:&#039;, err);&lt;br /&gt;
  });&lt;/div&gt;</summary>
		<author><name>Michel TwainFrame</name></author>
	</entry>
	<entry>
		<id>https://twainframe.org/index.php?title=MediaWiki:Common.js&amp;diff=204</id>
		<title>MediaWiki:Common.js</title>
		<link rel="alternate" type="text/html" href="https://twainframe.org/index.php?title=MediaWiki:Common.js&amp;diff=204"/>
		<updated>2025-06-24T20:40:12Z</updated>

		<summary type="html">&lt;p&gt;Michel TwainFrame: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;/* Das folgende JavaScript wird für alle Benutzer geladen. */&lt;br /&gt;
/* Any JavaScript here will be loaded for all users on every page load. */&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
console.log(&#039;DataTables-Skript wird geladen...&#039;);&lt;br /&gt;
&lt;br /&gt;
// DataTables JS nachladen und dann initialisieren&lt;br /&gt;
mw.loader.getScript(&#039;https://cdn.datatables.net/1.13.6/js/jquery.dataTables.min.js&#039;)&lt;br /&gt;
.then(function() {&lt;br /&gt;
    console.log(&#039;DataTables erfolgreich geladen! Initialisiere Tabelle...&#039;);&lt;br /&gt;
   })&lt;br /&gt;
.catch(function(err) {&lt;br /&gt;
    console.error(&#039;Fehler beim Laden von DataTables:&#039;, err);&lt;br /&gt;
});&lt;/div&gt;</summary>
		<author><name>Michel TwainFrame</name></author>
	</entry>
	<entry>
		<id>https://twainframe.org/index.php?title=MediaWiki:Common.js&amp;diff=197</id>
		<title>MediaWiki:Common.js</title>
		<link rel="alternate" type="text/html" href="https://twainframe.org/index.php?title=MediaWiki:Common.js&amp;diff=197"/>
		<updated>2025-06-24T20:26:21Z</updated>

		<summary type="html">&lt;p&gt;Michel TwainFrame: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;/* Das folgende JavaScript wird für alle Benutzer geladen. */&lt;br /&gt;
/* Any JavaScript here will be loaded for all users on every page load. */&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
console.log(&#039;DataTables-Skript wird geladen...&#039;);&lt;br /&gt;
&lt;br /&gt;
// DataTables JS nachladen und dann initialisieren&lt;br /&gt;
mw.loader.getScript(&#039;https://cdn.datatables.net/1.13.6/js/jquery.dataTables.min.js&#039;)&lt;br /&gt;
.then(function() {&lt;br /&gt;
    console.log(&#039;DataTables erfolgreich geladen! Initialisiere Tabelle...&#039;);&lt;br /&gt;
    $(document).ready(function() {&lt;br /&gt;
        $(&#039;#catalog&#039;).DataTable({&lt;br /&gt;
            paging: true,&lt;br /&gt;
            pageLength: 100,&lt;br /&gt;
            searching: true,&lt;br /&gt;
            ordering: true,&lt;br /&gt;
            lengthMenu: [ [10, 25, 50, 100, 200, 600], [10, 25, 50, 100, 200, 600] ],&lt;br /&gt;
            order: [[1, &#039;asc&#039;]],&lt;br /&gt;
            language: {&lt;br /&gt;
                search: &amp;quot;Suche:&amp;quot;,&lt;br /&gt;
                lengthMenu: &amp;quot;Show _MENU_ Entries&amp;quot;,&lt;br /&gt;
                zeroRecords: &amp;quot;No Matches&amp;quot;,&lt;br /&gt;
                info: &amp;quot;Page _PAGE_ of _PAGES_&amp;quot;,&lt;br /&gt;
                infoEmpty: &amp;quot;Empty&amp;quot;,&lt;br /&gt;
                infoFiltered: &amp;quot;(out of _MAX_ total entries)&amp;quot;&lt;br /&gt;
            },&lt;br /&gt;
            initComplete: function () {&lt;br /&gt;
                // Fügt für jede Spalte ein Suchfeld hinzu&lt;br /&gt;
                this.api().columns().every(function () {&lt;br /&gt;
                    var column = this;&lt;br /&gt;
                    var header = $(column.header());&lt;br /&gt;
                    var columnTitle = header.text(); // Spaltentitel extrahieren&lt;br /&gt;
                    var input = $(&#039;&amp;lt;input type=&amp;quot;text&amp;quot; placeholder=&amp;quot;&#039; + columnTitle + &#039; ...&amp;quot; style=&amp;quot;width: 100%; padding: 5px;&amp;quot;/&amp;gt;&#039;)&lt;br /&gt;
                        .appendTo($(header).empty())  // Leert die Headerzelle und fügt das Eingabefeld ein&lt;br /&gt;
                        .on(&#039;keyup change&#039;, function () {&lt;br /&gt;
                            column.search(this.value).draw();  // Filtert die Spalte nach Eingabewerten&lt;br /&gt;
                        })&lt;br /&gt;
                        .on(&#039;click&#039;, function(e) {&lt;br /&gt;
                            e.stopPropagation(); // Verhindert, dass der Klick die Sortierung beeinflusst&lt;br /&gt;
                        });&lt;br /&gt;
                });&lt;br /&gt;
            }&lt;br /&gt;
        });&lt;br /&gt;
    });&lt;br /&gt;
})&lt;br /&gt;
.catch(function(err) {&lt;br /&gt;
    console.error(&#039;Fehler beim Laden von DataTables:&#039;, err);&lt;br /&gt;
});&lt;/div&gt;</summary>
		<author><name>Michel TwainFrame</name></author>
	</entry>
	<entry>
		<id>https://twainframe.org/index.php?title=MediaWiki:Common.js&amp;diff=138</id>
		<title>MediaWiki:Common.js</title>
		<link rel="alternate" type="text/html" href="https://twainframe.org/index.php?title=MediaWiki:Common.js&amp;diff=138"/>
		<updated>2025-06-17T21:41:12Z</updated>

		<summary type="html">&lt;p&gt;Michel TwainFrame: Der Seiteninhalt wurde durch einen anderen Text ersetzt: „/* Das folgende JavaScript wird für alle Benutzer geladen. */“&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;/* Das folgende JavaScript wird für alle Benutzer geladen. */&lt;/div&gt;</summary>
		<author><name>Michel TwainFrame</name></author>
	</entry>
	<entry>
		<id>https://twainframe.org/index.php?title=Galerie&amp;diff=137</id>
		<title>Galerie</title>
		<link rel="alternate" type="text/html" href="https://twainframe.org/index.php?title=Galerie&amp;diff=137"/>
		<updated>2025-06-17T21:39:17Z</updated>

		<summary type="html">&lt;p&gt;Michel TwainFrame: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;gallery mode=&amp;quot;slideshow&amp;quot;&amp;gt;&lt;br /&gt;
Datei:Hf_1938_har_ch002_ill1.jpg|Tom Puts Jim&#039;s Hat on a Branch 1&lt;br /&gt;
Datei:Hf_1885_kmb_ch004_ill1_cropped.jpg|!!!!&lt;br /&gt;
&lt;br /&gt;
Datei:Hf_1938_har_ch002_ill1.jpg|Tom Puts Jim&#039;s Hat on a Branch 2&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;/div&gt;</summary>
		<author><name>Michel TwainFrame</name></author>
	</entry>
	<entry>
		<id>https://twainframe.org/index.php?title=Galerie&amp;diff=136</id>
		<title>Galerie</title>
		<link rel="alternate" type="text/html" href="https://twainframe.org/index.php?title=Galerie&amp;diff=136"/>
		<updated>2025-06-17T21:38:42Z</updated>

		<summary type="html">&lt;p&gt;Michel TwainFrame: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;gallery mode=&amp;quot;slideshow&amp;quot;&amp;gt;&lt;br /&gt;
Datei:Hf_1938_har_ch002_ill1.jpg|Tom Puts Jim&#039;s Hat on a Branch 1&lt;br /&gt;
Datei:Hf_1885_kmb_ch004_ill1_cropped.jpg|!!!!&lt;br /&gt;
&lt;br /&gt;
Datei:Hf_1938_har_ch002_ill1.jpg|Tom Puts Jim&#039;s Hat on a Branch 3&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;/div&gt;</summary>
		<author><name>Michel TwainFrame</name></author>
	</entry>
	<entry>
		<id>https://twainframe.org/index.php?title=Galerie&amp;diff=135</id>
		<title>Galerie</title>
		<link rel="alternate" type="text/html" href="https://twainframe.org/index.php?title=Galerie&amp;diff=135"/>
		<updated>2025-06-17T21:37:21Z</updated>

		<summary type="html">&lt;p&gt;Michel TwainFrame: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;gallery mode=&amp;quot;slideshow&amp;quot;&amp;gt;&lt;br /&gt;
Datei:Hf_1938_har_ch002_ill1.jpg|Tom Puts Jim&#039;s Hat on a Branch 1&lt;br /&gt;
Datei:Hf_1938_har_ch002_ill1.jpg|Tom Puts Jim&#039;s Hat on a Branch 2&lt;br /&gt;
Datei:Hf_1938_har_ch002_ill1.jpg|Tom Puts Jim&#039;s Hat on a Branch 3&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;/div&gt;</summary>
		<author><name>Michel TwainFrame</name></author>
	</entry>
</feed>