0.10.0 • Published 3 years ago

@terezatech/zettel v0.10.0

Weekly downloads
-
License
MIT
Repository
-
Last release
3 years ago

Zettel

This package provides a engine to handle your Zettelkasten notes.

Installation

yarn add @terezatech/zettel

Quick start

Create your Zettelkasten notes in a folder, for example posts, then instantiate your Zettelkasen engine:

import { Zettelkasten } from '@terezatech/zettel';
import * as path from 'path';

const postsDir = path.join(__dirname, 'posts');

const zettelkasten = new Zettelkasten({ postsDir });

(async () => {
  const posts = await zettelkasten.getPosts();

  const blogPost = await zettelkasten.getPosts({ groups: ['blog'] });

  const tags = await zettelkasten.getTags();
})();
0.10.0

3 years ago

0.9.0

3 years ago

0.8.0

3 years ago

0.7.2

3 years ago

0.7.1

3 years ago

0.7.0

3 years ago

0.6.0

3 years ago

0.5.0

3 years ago

0.4.0

3 years ago

0.3.0

3 years ago

0.2.0

3 years ago