This commit is contained in:
Ahmed Sabbour 2018-12-20 16:22:56 -08:00
Родитель fda2b95967
Коммит b1e4541626
1 изменённых файлов: 3 добавлений и 2 удалений

Просмотреть файл

@ -5,13 +5,14 @@ module Jekyll
@text = super
# pipe param through liquid to make additional replacements possible
#text = Liquid::Template.parse(text).render context
@parsedText = Liquid::Template.parse(text).render context
#{@context.registers[:site].find_converter_instance(::Jekyll::Converters::Markdown).convert(@text)}
<<~COLLAPSIBLEBLOCK
<div>
<button class='toggle-collapsible'>Toggle solution</button>
<div class="collapsible-content">
#{@context.registers[:site].find_converter_instance(::Jekyll::Converters::Markdown).convert(@text)}
#{@parsedText}
</div>
</div>
COLLAPSIBLEBLOCK