i am trying to create a blog with jekyll and zurb foundation 5. therefore id like to use some of the html structure of the foundation framework inside the posts, the post content indeed is written in markdown.
<div class="row">
<div class="small-3 columns">
### Header of List
- Item 1
- Item 2
- Item 3
</div>
<div class="small-9 columns">...</div>
</div>
The markdown list works right but not the divs. the closing tags of the divs get translated raw als plane text to "".
how can i use markdown properly inside a div structure?
thanks for your help!