Coder Social home page Coder Social logo

jounqin / micromark-extension-mdx-expression Goto Github PK

View Code? Open in Web Editor NEW

This project forked from micromark/micromark-extension-mdx-expression

1.0 1.0 0.0 143 KB

micromark extension to support MDX or MDX JS expressions

Home Page: https://unifiedjs.com

License: MIT License

JavaScript 100.00%

micromark-extension-mdx-expression's Introduction

micromark-extension-mdx-expression

Build Coverage Downloads Size Sponsors Backers Chat

micromark extension to support MDX expressions ({2 * Math.PI}).

Contents

What is this?

This project contains three packages (it’s a monorepo).

  • micromark-extension-mdx-expression — extension that adds support for expressions enabled by MDX to micromark
  • micromark-factory-mdx-expression — subroutine to parse the expressions
  • micromark-util-events-to-acorn — subroutine to turn parse micromark events with acorn

This readme will focus on micromark-extension-mdx-expression.

When to use this

These tools are all low-level. In many cases, you want to use remark-mdx with remark instead. When you are using mdx-js/mdx, that is already included.

Even when you want to use micromark, you likely want to use micromark-extension-mdxjs to support all MDX features. That extension includes this extension.

When working with mdast-util-from-markdown, you must combine this package with mdast-util-mdx-expression.

Install

This package is ESM only. In Node.js (version 12.20+, 14.14+, 16.0+, or 18.0+), install with npm:

npm install micromark-extension-mdx-expression

In Deno with esm.sh:

import {mdxExpression} from 'https://esm.sh/micromark-extension-mdx-expression@1'

In browsers with esm.sh:

<script type="module">
  import {mdxExpression} from 'https://esm.sh/micromark-extension-mdx-expression@1?bundle'
</script>

Use

import * as acorn from 'acorn'
import {micromark} from 'micromark'
import {mdxExpression} from 'micromark-extension-mdx-expression'

// Agnostic (balanced braces):
const output = micromark('a {1 + 1} b', {extensions: [mdxExpression()]})

console.log(output)

// Gnostic (JavaScript):
micromark('a {!} b', {extensions: [mdxExpression({acorn})]})

Yields:

<p>a  b</p>
[1:5: Could not parse expression with acorn: Unexpected token] {
  reason: 'Could not parse expression with acorn: Unexpected token',
  line: 1,
  column: 5,
  source: 'micromark-extension-mdx-expression',
  ruleId: 'acorn',
  position: {
    start: { line: 1, column: 5, offset: 4 },
    end: { line: null, column: null }
  }
}

…which is useless: go to a syntax tree with mdast-util-from-markdown and mdast-util-mdx-expression instead.

API

This package exports the identifier mdxExpression. There is no default export.

The export map supports the endorsed development condition. Run node --conditions development module.js to get instrumented dev code. Without this condition, production code is loaded.

mdxExpression(options?)

Add support for MDX expressions.

Function called optionally with options to get a syntax extension for micromark (passed in extensions).

options

Configuration (optional).

options.acorn

Acorn parser to use (Acorn, optional).

options.acornOptions

Options to pass to acorn (Object, default: {ecmaVersion: 2020, locations: true, sourceType: 'module'}). All fields can be set. Positional info (loc, range) is set on ES nodes regardless of acorn options.

options.addResult

Whether to add an estree field to mdxFlowExpression and mdxTextExpression tokens with the results from acorn (boolean, default: false). Note that expressions can be empty or be just comments, in which case estree will be undefined.

Authoring

When authoring markdown with JavaScript, keep in mind that MDX is a whitespace sensitive and line-based language, while JavaScript is insensitive to whitespace. This affects how markdown and JavaScript interleave with eachother in MDX. For more info on how it works, see § Interleaving on the MDX site.

Syntax

This extension supports MDX both agnostic and gnostic to JavaScript. Depending on whether acorn is passed, either valid JavaScript must be used in expressions, or arbitrary text could (such as Rust or so) can be used.

There are two types of expressions: in text (inline, span) or in flow (block). They start with {.

Depending on whether acorn is passed, expressions are either parsed in several tries until whole JavaScript is found (as in, nested curly braces depend on JS expression nesting), or they are counted and must be balanced.

Expressions end with }.

For flow (block) expressions, optionally markdown spaces ( or \t) can occur after the closing brace, and finally a markdown line ending (\r, \n) or the end of the file must follow.

While markdown typically knows no errors, for MDX it is decided to instead throw on invalid syntax.

Here is an expression in a heading:

## Hello, {1 + 1}!

In agnostic mode, balanced braces can occur: {a + {b} + c}.

In gnostic mode, the value of the expression must be JavaScript, so
this would fail: {!}.
But, in gnostic mode, braces can be in comments, strings, or in other
places: {1 /* { */ + 2}.

The previous examples were text (inline, span) expressions, they can
also be flow (block):

{
  1 + 1
}

This is incorrect, because there are further characters:

{
  1 + 1
}!

Blank lines cannot occur in text, because markdown has already split them in
separate constructs, so this is incorrect: {1 +

1}


In flow, you can have blank lines:

{
  1 +

  2
}

Errors

Unexpected end of file in expression, expected a corresponding closing brace for {

This error occurs if a { was seen without a } (source: micromark-extension-mdx-expression, rule id: unexpected-eof). For example:

a { b

Could not parse expression with acorn: Unexpected content after expression

This error occurs when there is more content after a JS expression (source: micromark-extension-mdx-expression, rule id: acorn). For example:

a {"b" "c"} d

Could not parse expression with acorn: $error

This error occurs if acorn crashes (source: micromark-extension-mdx-expression, rule id: acorn). For example:

a {var b = "c"} d

Tokens

Two tokens are used, mdxFlowExpression and mdxTextExpression, to reflect flow and text expressions.

They include:

  • lineEnding for the markdown line endings \r, \n, and \r\n
  • mdxFlowExpressionMarker and mdxTextExpressionMarker for the braces
  • whitespace for markdown spaces and tabs in blank lines
  • mdxFlowExpressionChunk and mdxTextExpressionChunk for chunks of expression content

Types

This package is fully typed with TypeScript. It exports the additional type Options.

Compatibility

This package is at least compatible with all maintained versions of Node.js. As of now, that is Node.js 12.20+, 14.14+, 16.0+, and 18.0+. It also works in Deno and modern browsers.

Security

This package deals with compiling JavaScript. If you do not trust the JavaScript, this package does nothing to change that.

Related

Contribute

See contributing.md in micromark/.github for ways to get started. See support.md for ways to get help.

This project has a code of conduct. By interacting with this repository, organization, or community you agree to abide by its terms.

License

MIT © Titus Wormer

micromark-extension-mdx-expression's People

Contributors

wooorm avatar

Stargazers

 avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.