diffstream
A simple application for comparing document versions over time.
Select the dataset to work with:
Dataset: {{currentset}}
{% for i in range(0,files|length) %}
{{ files[i].date }} {{ files[i].filename }} (GunningFogIndex: {{ files[i]["readability"]["readability grades"]["GunningFogIndex"] }})
{% if i < files|length - 1 %}
similarity {{ diffs[i].ratio }}
{% if diffs[i].ratio < 1 %}
show differences
show context
{% endif %}
{% for passage in diffs[i].passages %}
{% if passage[0:2] == "+ " %}
{{passage}}
{% endif %}
{% if passage[0:2] == "- " %}
{{passage}}
{% endif %}
{% endfor %}
{% endif %}
{% endfor %}