diff --git a/_includes/refactor-content.html b/_includes/refactor-content.html index 9232129..a32407c 100644 --- a/_includes/refactor-content.html +++ b/_includes/refactor-content.html @@ -104,30 +104,39 @@ -{% if _content contains '
' %}
+ {% assign _code_spippets = _content | split: '' %}
+ {% assign _new_content = '' %}
+
+ {% for _snippet in _code_spippets %}
+
+ {% if forloop.last %}
+ {% assign _new_content = _new_content | append: _snippet %}
- {% for _snippet in _code_splits %}
- {% if forloop.first %}
- {% assign _new_content = _snippet %}
{% else %}
- {% assign _lang = _snippet | split: ' ' | first %}
- {% capture _tag_head %}'
+ | append: '">'
+ | append: ''
%}
- {% capture _tag_tail %}{{ _snippet | replace: '-rouge">', _replacement }}{% endcapture %}
- {% assign _new_content = _new_content | append: _tag_head | append: _tag_tail %}
+
{% endif %}
+
{% endfor %}
- {% if _new_content %}
- {% assign _content = _new_content %}
- {% endif %}
+ {% assign _content = _new_content %}
{% endif %}
diff --git a/_sass/addon/syntax.scss b/_sass/addon/syntax.scss
index 2a84b1b..f4b1db5 100644
--- a/_sass/addon/syntax.scss
+++ b/_sass/addon/syntax.scss
@@ -172,14 +172,22 @@ div {
align-items: center;
line-height: 1.85rem;
- // language badge
+ // text data
&::before {
- content: attr(data-lang);
+ content: attr(text-data);
color: var(--lang-badge-color);
+ padding-left: 1em;
+
+ // language
font-size: 0.75rem;
font-weight: 600;
text-transform: uppercase;
- padding-left: 1em;
+
+ // file name
+ @at-root [file] #{&} {
+ font-size: 0.85rem;
+ text-transform: none;
+ }
}
// clipboard