From a57c98ec7fce6571a85d479bbd7c9b3999b6dc11 Mon Sep 17 00:00:00 2001 From: TJ VanToll Date: Sat, 25 Jul 2015 09:34:56 -0400 Subject: [PATCH] Adding some comments --- README.md | 2 +- _layouts/compress.html | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index cdbf8a5a9..a3a032008 100644 --- a/README.md +++ b/README.md @@ -16,4 +16,4 @@ $ jekyll serve ## License -The code that builds this site is [licensed under the MIT license](LICENSE), and the articles in `_posts` are licensed under the [Create Commons Attribute 3.0 License](https://creativecommons.org/licenses/by/3.0/us/). Put plainly, you're free to use this repo's code in any way you'd like, including in commerical projects. You may use the articles that appear in `_posts`, but if you do so you must provide appropriate attribution (a link back to the article on `` is cool), and indicate if any changes were made. +The code that builds this site is [licensed under the MIT license](LICENSE), and the articles in `_posts` are licensed under the [Create Commons Attribute 3.0 License](https://creativecommons.org/licenses/by/3.0/us/). Put plainly, you're free to use this repo's code in any way you'd like, including in commerical projects. You may use the content of the articles in `_posts`, but if you do so you must provide appropriate attribution (a link back to the article on is cool), and indicate if any changes were made. diff --git a/_layouts/compress.html b/_layouts/compress.html index 925645d4f..c1008a6b2 100644 --- a/_layouts/compress.html +++ b/_layouts/compress.html @@ -5,5 +5,5 @@ # © 2014–2015 Anatol Broder # MIT License --- - + {% if site.compress_html.ignore.envs contains jekyll.environment %}{{ content }}{% else %}{% capture _content %}{{ content }}{% endcapture %}{% assign _profile = site.compress_html.profile %}{% if site.compress_html.endings == "all" %}{% assign _endings = "html head body li dt dd p rt rp optgroup option colgroup caption thead tbody tfoot tr td th" | split: " " %}{% else %}{% assign _endings = site.compress_html.endings %}{% endif %}{% for _element in _endings %}{% capture _end %}{% endcapture %}{% assign _content = _content | remove: _end %}{% endfor %}{% if _profile and _endings %}{% assign _profile_endings = _content | size | plus: 1 %}{% endif %}{% assign _pre_befores = _content | split: "" %}{% case _pres.size %}{% when 2 %}{% capture _content %}{{ _content }}{{ _pres.last | split: " " | join: " " }}{% endcapture %}{% when 1 %}{% capture _content %}{{ _content }}{{ _pres.last | split: " " | join: " " }}{% endcapture %}{% endcase %}{% endfor %}{% if _profile %}{% assign _profile_collapse = _content | size | plus: 1 %}{% endif %}{% if site.compress_html.comments == "all" %}{% assign _comments = "" | split: " " %}{% else %}{% assign _comments = site.compress_html.comments %}{% endif %}{% if _comments.size == 2 %}{% assign _comment_befores = _content | split: _comments.first %}{% for _comment_before in _comment_befores %}{% assign _comment_content = _comment_before | split: _comments.last | first %}{% if _comment_content %}{% capture _comment %}{{ _comments.first }}{{ _comment_content }}{{ _comments.last }}{% endcapture %}{% assign _content = _content | remove: _comment %}{% endif %}{% endfor %}{% if _profile %}{% assign _profile_comments = _content | size | plus: 1 %}{% endif %}{% endif %}{% if site.compress_html.clippings == "all" %}{% assign _clippings = "html head title base link meta style body article section nav aside h1 h2 h3 h4 h5 h6 hgroup header footer address p hr blockquote ol ul li dl dt dd figure figcaption main div table caption colgroup col tbody thead tfoot tr td th" | split: " " %}{% else %}{% assign _clippings = site.compress_html.clippings %}{% endif %}{% for _element in _clippings %}{% assign _edges = " ;; ;" | replace: "e", _element | split: ";" %}{% assign _content = _content | replace: _edges[0], _edges[1] | replace: _edges[2], _edges[3] | replace: _edges[4], _edges[5] %}{% endfor %}{% if _profile and _clippings %}{% assign _profile_clippings = _content | size | plus: 1 %}{% endif %}{{ _content }}{% if _profile %}
Step Bytes
raw {{ content | size }}{% if _profile_endings %}
endings {{ _profile_endings }}{% endif %}{% if _profile_collapse %}
collapse {{ _profile_collapse }}{% endif %}{% if _profile_comments %}
comments {{ _profile_comments }}{% endif %}{% if _profile_clippings %}
clippings {{ _profile_clippings }}{% endif %}
{% endif %}{% endif %} \ No newline at end of file