Wrap text
Report abuse
gem versions
1
2
|
RedCloth (4.2.3)
liquid (2.2.2)
|
content
1
2
3
4
5
6
|
*Instant* kropek is really good.
Here are some reasons why:
* It tastes great
* It's funny
|
textilize(content)
1
2
3
4
5
6
|
<p><strong>Instant</strong> kropek is really good.</p>
<p>Here are some reasons why:</p>
<ul>
<li>It tastes great</li>
<li>It’s funny</li>
</ul>
|
textilize(Liquid::Template.parse("{{content}}").render('content' => content, :filter => LiquidFilters))
1
2
3
4
5
6
7
|
<strong>Instant</strong> kropek is really good.<br />
<br />
Here are some reasons why:<br />
<br />
* It tastes great<br />
* It’s funny
|