There are 2 comments.
 
 
MediaWiki tools / cid:jira-generated-image-avatar-a15ff662-cf81-4801-99d1-7dd234db2c35 MEDIAWIKI-125 Open

Table Header not imported

 
View issue   ยท   Add comment
 

2 comments

 
cid:jira-generated-image-avatar-4c5eaa7d-9488-4da6-ae44-86c6a62ecfb3 Clearingstelle EEG|KWKG on 05/May/25 16:27
 

Hello!

In fact we migrate from Bluespice, which is based on Mediawiki.

The code which works while importing is:

{| class="wikitable" !Header1 !Header2 !Header3 |- |A |B |C |}

The code which does not works is:

{| class="wikitable" |+ ! !Header2 !Header3 |- |A |B |C |}

 

 
cid:jira-generated-image-avatar-4c5eaa7d-9488-4da6-ae44-86c6a62ecfb3 Clearingstelle EEG|KWKG on 05/May/25 16:28
 
Hello!

In fact we migrate from Bluespice, which is based on Mediawiki.

The code which works while importing is:
{code:java}
{| class="wikitable"
!
Header1 Header 1
!Header2
!
Header3 Header23
|-
|A
|B
|C
|}
{code}

The code which does not works is:
{code:java}
{| class="wikitable"
|+
!
!Header2
!Header3
|-
|A
|B
|C
|}
{code}