Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/mark-when/parser

Markwhen parser
https://github.com/mark-when/parser

Last synced: 3 days ago
JSON representation

Markwhen parser

Awesome Lists containing this project

README

        

# Markwhen parser

Parse markwhen documents. Outputs a list of events given plain text.

See [markwhen.com](https://markwhen.com), [the documentation](https://docs.markwhen.com), and the [changelog](./CHANGELOG.md).

```js
import { parse } from "@markwhen/parser";

const markwhen = parse(`
title: this is my title
timezone: America/New_York

#neat:
color: blue
timezone: -3

2022: event

group My Group #neat
2024: another event

`);

console.log(markwhen);
```