Skip to content
This repository has been archived by the owner on May 23, 2023. It is now read-only.

Its-Just-Nans/readme-compiler

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

25 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

read-compiler

An online Markdown compiler (online version and API)

Why this project ?

To have a Markdown compiler with Latex

API (with serverless function of Vercel)

To call the API :

const SERVER_URL = "https://readme-compiler.vercel.app";

const myMarkdown = "Hello World";

const run = async () => {
    const res = await fetch(`${SERVER_URL}/api/`, {
        method: "POST",
        body : myMarkdown
    });
}
run();