Symplify: [Statie] Allow markdown inside html in .md files

Created on 5 Apr 2019  路  3Comments  路  Source: symplify/symplify

<div class="alert alert-sm alert-success mt-3">
   **wow**
</div>

Now

<div class="alert alert-sm alert-success mt-3">
   **wow**
</div>

Desired

<div class="alert alert-sm alert-success mt-3">
   <strong>wow</strong>
</div>

Most helpful comment

@TomasVotruba with PHP Markdown Extra you should be able to do this by adding markdown="1" in the div tag.

All 3 comments

@TomasVotruba with PHP Markdown Extra you should be able to do this by adding markdown="1" in the div tag.

That solves everything :) thank you :+1:

Was this page helpful?
0 / 5 - 0 ratings