{% if page.path == "index.html" %}
{{ page.title }}
{% elsif page.title.size > 25 %}
{{ page.title }} - Quill
{% else %}
{{ page.title }} - Quill Rich Text Editor
{% endif %} {% include meta.html %}
{% assign sections = content | split: '' %} {% for section in sections %} {% assign mod = forloop.index | modulo: 2 %} {% if mod == 0 %} {{ section | strip }} {% endif %} {% endfor %}
Documentation
Guides
Playground
Blog
Star
18,000
Documentation
Guides
Playground
Blog
Download
{% assign heads = content | split: '' %} {% for head in heads %} {% if forloop.last != true %} {% assign headMod = forloop.index | modulo: 2 %} {% if headMod == 1 %} {{ head | strip }} {% endif %} {% else %} {% assign scripts = head | split: '' %} {% for script in scripts %} {% assign scriptMod = forloop.index | modulo: 2 %} {% if scriptMod == 1 %} {{ script | strip }} {% endif %} {% endfor %} {% endif %} {% endfor %} {% assign sections = content | split: '' %} {% for section in sections %} {% assign mod = forloop.index | modulo: 2 %} {% if mod == 0 %} {{ section | strip }} {% endif %} {% endfor %}