about summary refs log tree commit diff
path: root/src/render.rs
AgeCommit message (Collapse)AuthorFilesLines
2018-04-11 chore: Clean up unused importsVincent Ambo1-1/+0
2018-04-11 feat(render): Use a more human-readable format for datesVincent Ambo1-5/+15
2018-04-11 fix(render): Escape thread titles in indexVincent Ambo1-1/+19
2018-04-11 feat(render): Implement Markdown thread rendering & GravatarVincent Ambo1-8/+67
Implements a new thread rendering pipeline which all posts and the main thread body are first converted to a `RenderablePost` structure. During the conversion to this structure, the post body is rendered as Markdown and the author's email address is converted into the format required by Gravatar.
2018-04-11 feat(render): Add rendering actorVincent Ambo1-0/+70
Adds a separate actor that handles page rendering, templating engine state and other related topics.