0.2.1 • Published 5 days ago

remark-fediverse-user v0.2.1

Weekly downloads
-
License
CORE
Repository
github
Last release
5 days ago

Remark Fediverse User

This Remark plugin, "remark-fediverse-user," is designed to transform Fediverse user notations into markdown links. It's a handy tool for processing markdown content that includes Fediverse handles, automatically converting them into clickable links.

Installation

You can install the plugin using npm or yarn:

npm install remark-fediverse-user

Or:

yarn add remark-fediverse-user

Usage

To use this plugin in your Remark processor, import it and add it to your processing pipeline:

import remark from 'remark';
import fediverseUser from 'remark-fediverse-user';

(async () => {
  try {
    const output = await remark()
      .use(fediverseUser)
      .process('Your markdown text here');
    console.log(output.contents);
  } catch (error) {
    console.error(error);
  }
})();

The plugin scans for Fediverse user notations (e.g., @username@domain or @<mailto:username@domain>) in your markdown content and transforms them into markdown links.

It is transforming the e-mail links and text identifiers with prefix @ then any e-mail and text link with the prefix will be transformed to a fediverse link.

Options

The plugin accepts an optional configuration object with the following properties:

  • checkText: (boolean): If set to true, the plugin will check the text content and transform the Fediverse handle if the text content matches the Fediverse handle format. Default is true.
  • protocol (string): The protocol to use for the Fediverse links. Default is https.

Features

  • Easy Integration: Works seamlessly with Remark processing pipelines.
  • Fediverse Handle Transformation: Automatically converts Fediverse handles into markdown links.

Contributing

We welcome contributions to this project. Please feel free to submit pull requests or raise issues on the project repository.

License

This project is licensed under the CORE License - see the LICENSE file for details.

0.2.1

5 days ago

0.2.0

7 days ago

0.1.13

11 days ago

0.1.14

10 days ago

0.1.12

13 days ago

0.1.10

2 months ago

0.1.11

2 months ago

0.1.9

2 months ago

0.1.8

2 months ago

0.1.7

3 months ago

0.1.6

3 months ago

0.1.5

3 months ago

0.1.3

3 months ago

0.1.2

3 months ago

0.1.1

3 months ago

0.1.0

3 months ago