Hi!
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?
X3 Photo Gallery Support Forums
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.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?
<div class='medium-6 columns' markdown=1>Perhaps "practical" is not the word, but I don't think using markdown=1 is an elegant solution for two reasons:Haider of Sweden wrote:Can you please explain why you find it not practical?
<div class='medium-6 columns' markdown=1>
## markdown header
<div data-alert class="alert-box success" markdown=1>
**strong markdown text**
</div>
</div>## My title markdown
** Let's stick to markdown when possible ok! **
* Hey let's create a markdown list
* Unicorn
* Pegasus
<div class="medium-6 columns">
<h2>Here is some HTML</h2>
I prefer to stick with html tags within a html block.
<div data-alert class="alert-box success">
<strong>You bet!</strong>
</div>
</div>