| Left | Center | Right |
| :--- | :----: | ---: |
Does give in the editing environment as expected: Left aligned to left, Center to center and Right to right.
However, in the published blog post the three words are concatenated and aligned left:
LeftCenterRight
This is for this specific layout; it seems to happen for other layouts as well.
In v6.3.1 (2025-06-07) we have now: “Kookaburra Page: Styling of code and table elements.”. Does this only apply to pages, not to blog posts?
For pages and post: how do you do this? Any documentation?
It applies globally, but you might need to conform your table markup to a supported pattern. Our table styling conforms to Markdown standard output. So this:
| City | Population (approx.) | Notable Feature |
|-------------|----------------------|-------------------------------------|
| Seoul | 9.5 million | Capital city, tech and culture hub |
| Busan | 3.4 million | Largest port, famous for beaches |
| Incheon | 3.0 million | Major airport and smart city |
| Daegu | 2.4 million | Textiles and fashion industry |
| Daejeon | 1.5 million | Science and R&D center |
Converts to this:
<table>
<thead>
<tr>
<th>City</th>
<th>Population (approx.)</th>
<th>Notable Feature</th>
</tr>
</thead>
<tbody>
<tr>
<td>Seoul</td>
<td>9.5 million</td>
<td>Capital city, tech and culture hub</td>
</tr>
<tr>
<td>Busan</td>
<td>3.4 million</td>
<td>Largest port, famous for beaches</td>
</tr>
<tr>
<td>Incheon</td>
<td>3.0 million</td>
<td>Major airport and smart city</td>
</tr>
<tr>
<td>Daegu</td>
<td>2.4 million</td>
<td>Textiles and fashion industry</td>
</tr>
<tr>
<td>Daejeon</td>
<td>1.5 million</td>
<td>Science and R&D center</td>
</tr>
</tbody>
</table>
It seems I misinterpreted ‘styling options’, as the possibilty to define by the admin the styling of a table (width, coloring, …).
Specifically the starting question, I wanted to define a table over the full width. In Pangolin it is case width: 100%;
Whereas in Kookaburra it becomes: width: fit-content;
I am using it to (manually) create a Next / Previous line (example).
Fiddling a bit… I tried to set a dev section around the table, but the content becomes just the text i.s.o. interpreted macro’s.
I would be easier if that was a standard feature…
I don’t think you can put Markdown inside html. So surrounding the table with a div will render the Markdown as text.
Instead, try writing the table in html.
That let’s me apply a different style, while still using Markdown, by putting an HR element before my table markup:
<hr data-sticky />
| Region | Generation | First Game Appearance | Main Titles | Number of Cities | Number of Routes | Legendary Pokémon | Starter Types | Professor | Evil Team | Champion | Remakes | Real-World Influence | Notes |
|-----------|------------|------------------------|--------------------------|------------------|------------------|--------------------|----------------------|----------------|-------------------|------------------|------------------|------------------------|----------------------------------|
| Kanto | I | Red/Green/Blue | Red/Blue/Yellow | 10 | 25 | Mewtwo, Legendary Birds | Grass/Fire/Water | Oak | Team Rocket | Blue | FireRed/LeafGreen | Kantō (Japan) | First region introduced |