2
0
Fork
You've already forked read.md
0
An app that transforms your boring markdown files into clean & simple presentations
  • JavaScript 98.3%
  • HTML 1.6%
  • CSS 0.1%
2025年11月09日 21:58:57 +02:00
.idea Add recursive parsing of list items 2025年04月22日 01:26:54 +03:00
public Add draft version 2025年04月21日 23:02:11 +03:00
src Add optional markdown source file download directly from web 2025年05月03日 20:06:26 +03:00
.gitignore Add optional markdown source file download directly from web 2025年05月03日 20:06:26 +03:00
eslint.config.js Add draft version 2025年04月21日 23:02:11 +03:00
example.md Add example.md & update README 2025年04月22日 18:13:45 +03:00
index.html Fix rendering of lists 2025年04月22日 00:57:48 +03:00
LICENSE Initial commit 2025年04月10日 21:53:05 +00:00
package-lock.json Update dependencies 2025年11月09日 21:58:57 +02:00
package.json Add draft version 2025年04月21日 23:02:11 +03:00
README.md Add optional markdown source file download directly from web 2025年05月03日 20:06:26 +03:00
vite.config.js Add draft version 2025年04月21日 23:02:11 +03:00

read.md

An app that transforms your boring markdown files into clean & simple presentations

The app currently supports rendering of:

  • presentation titles
  • chapters
  • subchapters
  • lists of any depth
  • images
  • code blocks

Check the example.md file to learn how to organize your source file

You can use it right away

To test the application locally you just have to:

cd read.md
npm install
npm run dev

Obtaining a proper production-ready build is as easy as:

npm run build

An optional feature to download the content of a markdown file directly from the web is available only if a cors-dumper server is available too

To enable this feature, create a .env file in the root directory and populate it as:

VITE_CORS_DUMPER_URL=http://your-cors-dumper?url=

I published cors-dumper implementation here