SC5 / sc5-styleguide

Styleguide generator is a handy little tool that helps you generate good looking styleguides from stylesheets using KSS notation
http://styleguide.sc5.io/
MIT License
1.26k stars 168 forks source link

Markdown code block html entities #1121

Open kristabs opened 7 years ago

kristabs commented 7 years ago

Hello, thanks for this great tool! I just have a problem using markdown code blocks in overview page. < gets replaced by &lt; E.g.

<!DOCTYPE html>
<html lang="lv">
...
</html>

when generated, is shown as

&lt;!DOCTYPE html&gt;
&lt;html lang="lv"&gt;
...
&lt;/html&gt;

Any ideas how could i fix this?

dawidk92 commented 7 years ago

+1

```scss
.class_name {
  &__abc { //this escapes to -> &amp;__abc
    ...
  }
}```
Angola commented 6 years ago

@kristabs example

<pre><code><div class="box">
    <div class="box__ttl">title</div>
    <div class="box__txt">text</div>
</div></code></pre>