remark-obsidian

1.8.0 • Public • Published

remark-obsidian

Version License

Remark plugin to support Obsidian markdown syntax.

Requirements

  • Nodejs >= 14

Features

  • [x] Support > [!CALLOUT]
  • [x] Support ==highlight text==
  • [x] Support [[Internal link]]
  • [x] Support [[Internal link|With custom text]]
  • [x] Support [[Internal link#heading]]
  • [x] Support [[Internal link#heading|With custom text]]
  • [x] Support ![[Embed note]]
  • [ ] Support ![[Embed note#heading]]

Installation

yarn add -D remark-obsidian

Usage

With remark :

import { remark } from 'remark';
import remarkObsidian from 'remark-obsidian';

const html = String(await remark().use(remarkObsidian).process('[[Hello world]]'));
console.log(html); // <a href="/hello-world">Hello world</a>

With unified :

import { unified } from 'unified'
import remarkObsidian from 'remark-obsidian';
import remarkParse from 'remark-parse';
import remarkRehype from 'remark-rehype';
import rehypeStringify from 'rehype-stringify';

const { value } = unified()
    .use(remarkParse)
    .use(remarkObsidian)
    .use(remarkRehype, { allowDangerousHtml: true })
    .use(rehypeStringify, { allowDangerousHtml: true })
    .processSync('[[Hello world]]');

console.log(value); // <a href="/hello-world">Hello world</a>

Running the tests

npm test

License

This project is licensed under the GNU GPL v3.0 - see the LICENSE file for details

Free Software, Hell Yeah!

Readme

Keywords

Package Sidebar

Install

npm i remark-obsidian

Weekly Downloads

34

Version

1.8.0

License

GPL-3.0

Unpacked Size

642 kB

Total Files

5

Last publish

Collaborators

  • johackim