Welcome | Get started | Dive into Lino | Contribute | Topics | Reference | More

Stories

A story is an iterable of things that can be rendered. Each item or "chunk" of a story is one of the following:

lino.core.renderer.Render has a method show_story which "renders" a story. Different renderer subclasses render stories (and tables and other things) differently.

The base class does the actual work of looping over the story and deciding how to render it. It returns an HTML elementtree DIV element.

TextRenderer does almost the same, but prints everything to stdout. This is used in doctests where we don't want to worry about implementation details.