mfontanini / presenterm

A markdown terminal slideshow tool
https://mfontanini.github.io/presenterm/
BSD 2-Clause "Simplified" License
1.19k stars 29 forks source link

Allow having multiple authors #227

Closed mfontanini closed 6 months ago

mfontanini commented 6 months ago

This allows using a new attribute in the front matter: authors. This is like author but allows specifying a list of authors. Each will be displayed on a separate line.

The following presentation:

---
title: From soil to plate
sub_title: A potato story
authors:
    - "bob: potato planter"
    - "mike: crop frier"
    - "jack: french fry eater"
---

Looks like this:

image

Fixes #225