0.8.0 • Published 5 years ago
@vlog/plugin-markdown v0.8.0
Vlog
Build your own blog site from scratch, without pain.
Features
- Zero configuration: Vlog doesn't require any config files such as
.vlogrc
orvlog.config.js
until you need it. - No vendor lock-in: You can use Vlog with your favorite frameworks: React, Angular, Vue, and Vanilla JS.
Getting Started
$ mkdir ./src
$ echo "{}" > ./src/index.json
$ echo "# Hello, World!" > ./src/2020-02-02-hello-world.md
$ npx @vlog/vlog
API
import { Compiler } from "@vlog/core";
import { createMarkdownPlugin } from "@vlog/plugin-markdown";
const main = async () => {
const compiler = await Compiler.create({
plugins: [createMarkdownPlugin()],
});
await compiler.compile();
};
Plugins
License
MIT License