{% if chapter.chunk.page_start is not none %}
pp. {{ chapter.chunk.page_start }}{% if chapter.chunk.page_end and chapter.chunk.page_end != chapter.chunk.page_start %}–{{ chapter.chunk.page_end }}{% endif %}
{% endif %}
{{ chapter.sections|length }} sections
{% if chapter.chunk.chapter_summary %}
{{ chapter.chunk.chapter_summary }}
{% endif %}
{% if chapter.chunk.main_topics %}
{% for topic in chapter.chunk.main_topics %}
{{ topic }}
{% endfor %}
{% endif %}
{% for section in chapter.sections %}
{{ section.chunk.title }}
{% if section.chunk.page_start is not none %}
p. {{ section.chunk.page_start }}
{% endif %}
{{ section.passages|length }}
{% if section.chunk.section_summary %}
{{ section.chunk.section_summary }}
{% endif %}
{% for passage in section.passages %}
{{ passage.content[:300] }}{% if passage.content|length > 300 %}...{% endif %}
{% if passage.summary %}
summary
{% endif %}
{% for concept in passage.concepts[:3] %}
{{ concept }}
{% endfor %}
{% for kw in passage.keywords[:3] %}
{{ kw }}
{% endfor %}
{% if passage.difficulty_level %}
{{ passage.difficulty_level }}
{% endif %}