Nach dem [ersten Entwurf des Textmodes](/2022/12/textmode/) gibt es nun die Version zwei. Zu den bestehenden `text/plain` Inhalten gibt es nun auch `json` und `markdown`. Dazu an einer Seite [zb. /projekt/aranea/](/projekt/aranea/) oder an einem Beitrag [zb. /2022/12/insipid-2.8-wastelands/](/2022/12/insipid-2.8-wastelands/) an das Ende der URL index.txt\|md\|json anhängen. Also von `https://www.bananas-playground.net/2022/12/insipid-2.8-wastelands/` zu `https://www.bananas-playground.net/2022/12/insipid-2.8-wastelands/index.txt` , `https://www.bananas-playground.net/2022/12/insipid-2.8-wastelands/index.md` oder `https://www.bananas-playground.net/2022/12/insipid-2.8-wastelands/index.json` - [Ausprobieren txt](/2022/12/insipid-2.8-wastelands/index.txt) - [Ausprobieren json](/2022/12/insipid-2.8-wastelands/index.json) - [Ausprobieren md](/2022/12/insipid-2.8-wastelands/index.md) Die .txt Dateien werden mit [Pandoc](https://pandoc.org) erstellt, aber erst im Nachgang auf Basis der index.md Dateien: for mdFile in `find . -name "index.md"`; do echo $(dirname ${mdFile})/index.txt pandoc -s ${mdFile} -o $(dirname ${mdFile})/index.txt & done; PS: Die md Dateien funktionieren wunderbar mit [glow](https://github.com/charmbracelet/glow) `glow https://www.bananas-playground.net/2022/12/textmode/index.md` Feb 27 2023 © https://www.bananas-playground.net 2000 - 2025