Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/maximilianschmitt/markdown-express-middleware

Express middleware to easily serve a markdown file with the GitHub-style CSS built in
https://github.com/maximilianschmitt/markdown-express-middleware

Last synced: 19 days ago
JSON representation

Express middleware to easily serve a markdown file with the GitHub-style CSS built in

Awesome Lists containing this project

README

        

# markdown-express-middleware

Express middleware to easily serve a markdown file with the GitHub-style CSS built in.

## Usage

```js
const express = require("express");
const mdem = require("./src");

const app = express();

app.use("/", mdem("README.md", { title: "markdown-express-middleware" }));

app.listen(3333);
```

![](./example.png)