remark-interactive-words
is a plugin for remark
. It's built to facilitate Aided Reading (AR) on digital devices.
Designed to transform markdown by replacing words with interactive, clickable links with a #slug
for programmatic use, remark-interactive-words
is developed by Russ Fugal for SARAs Books LLC to support Aided Reading (AR) automation. This plugin integrates seamlessly with the remark ecosystem.
- to learn markdown, see this cheatsheet and tutorial
- for more about the
remark
ecosystem, seeunifiedjs.com
- to help, see contribute or sponsor below
- What is this?
- When should I use this?
- API
- Examples
- Syntax
- Syntax tree
- Types
- Contribute
- Sponsor
- License
unified
is a project that transforms content with abstract syntax trees (ASTs). remark
adds support for markdown to unified. mdast
is a specification for representing markdown in a syntax tree. It implements unist
. It can represent several flavors of markdown, such as CommonMark and GitHub Flavored Markdown.
remark-interactive-words
leverages mdast
, inspecting and modifying the AST to create its interactive functionality. This plugin works with markdown as structured data.
remark-interactive-words
is a plugin for remark
. It's built to facilitate Aided Reading (AR) on digital devices. You can easily integrate it with your existing remark plugins to achieve word-wise interactivity and functionality in your markdown documents.
To install the remark-interactive-words
plugin, run the following command in your terminal:
npm install remark-interactive-words
The default export is remarkInteractiveWords
.
Generate markdown with linked words.
Looks for all Text Nodes and transforms all but descendants of excludingNodes
.
const excludingNodes = [
'code',
'inlineCode',
'link',
'linkReference',
'html'
]
remarkInteractiveWords
matches words with wordRegex
and transforms them to transformTo
Nodes with a #slug
for programatic use.
const wordRegex = /([a-z]+['’][a-z]+)|[a-z]{2,}/gi;
function getWordSlug(word: string): string {
return word.toLowerCase().replace("’", "'");
}
Via the options object, you can customize the behavior of remark-interactive-words
. Specific words can be excluded from transformation by passing an array of words to exceptions
. You can also customize the transformation by passing a helper
function. The helper function is called with a HelperInput object and should return an array of HelperResult
objects.
interface InteractiveWordsOptions {
transformTo: 'link' | 'linkReference'
exceptions?: string[] // array of words to exclude from transformation
helper?: (input: HelperInput) => HelperResult[]
}
interface HelperInput {
input: string;
exceptions?: string[];
}
interface HelperResult {
text: string;
transform: boolean;
wordSlug?: string;
}
After installation, you can require and use remark-interactive-words
as follows:
import { remark } from 'remark';
import remarkInteractiveWords from 'remark-interactive-words';
import { InteractiveWordsOptions } from 'remark-interactive-words';
const options: InteractiveWordsOptions = {
transformTo: 'link'
};
const input = 'This is a test.';
const expectedOutput = '[This](#this) [is](#is) a [test](#test).';
const processor = remark().use(remarkInteractiveWords);
const output = processor.processSync(input);
expect(String(output)).toEqual(expectedOutput);
We welcome contributions to remark-interactive-words
. Please see the contributing guidelines for more information.
remark-interactive-words
is an open-source project that is supported by the community. If you find it useful, please consider supporting us via GitHub Sponsors.