Comment on Is there a platform like github that isn't for code?
otter@lemmy.ca 2 days ago
If it helps, a number of courses at my university used open source git based textbooks. For example, you can replicate this Statistics textbook using any static site generator designed for documentation: moderndive.com (github.com/moderndive/ModernDive_book/)
We use vitepress for our docs: fedecan.ca/en/guide/get-started
Or you can get even simpler by using plain markdown files organized into folders
a_gee_dizzle@lemmy.ca 2 days ago
Thanks for the info.
Yeah I guess there should be rudimentary markdown to LaTeX translation programs, right?
otter@lemmy.ca 2 days ago
I haven’t tried any, but I would think so yes. You can probably run a script over the files to accomplish the same thing :)
a_gee_dizzle@lemmy.ca 1 day ago
Yeah a script doesn’t sound like a bad idea
Meron35@lemmy.world 2 days ago
pandoc. Converts markdown to html, latex, pdf, and Word.
It serves as the backend behind basically every program that support some kind of rendering of markdown, e.g. quarto, ipython notebooks.
Pandoc - Pandoc User’s Guide - pandoc.org/MANUAL.html