Haider of Sweden wrote:I noticed I cannot combine a column like <div class='medium-6 columns'> with markup code.
Am I wrong, or should I turn to plain html once I want to have a column structure?
That would be correct, and really this is a limitation of markdown. Markdown is supposed to be used as a simple tool for rich text editing, and doesn't combine with HTML. As soon as you add an "opening" html tag, the content within the tag will not render as markdown.
There is a simple fix for this using markdown=1 attribute, but it is not really practical:
<div class='medium-6 columns' markdown=1>
But yes, once you start a HTML structure, really you need to continue with HTML within the html structure you are adding.
We will likely add an optional HTML wysiwig editor in the near future. However, as long as you are using custom HTML structures (like custom columns), this would still have to be added as pure html source.