Files
rspade_system/vendor/spatie/ignition/node_modules/micromark-util-symbol
root f6fac6c4bc Fix bin/publish: copy docs.dist from project root
Fix bin/publish: use correct .env path for rspade_system
Fix bin/publish script: prevent grep exit code 1 from terminating script

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-10-21 02:08:33 +00:00
..

micromark-util-symbol

Build Coverage Downloads Size Sponsors Backers Chat

micromark utility with symbols.

Its useful to reference these by name instead of value while developing. micromark-build compiles them away for production code.

Contents

Install

npm:

npm install micromark-util-symbol

Use

import {codes} from 'micromark-util-symbol/codes'
import {constants} from 'micromark-util-symbol/constants'
import {types} from 'micromark-util-symbol/types'
import {values} from 'micromark-util-symbol/values'

console.log(codes.atSign) // 64
console.log(constants.characterReferenceNamedSizeMax) // 31
console.log(types.definitionDestinationRaw) // 'definitionDestinationRaw'
console.log(values.atSign) // '@'

API

This package has four entries in its export map: micromark-util-symbol/codes, micromark-util-symbol/constants, micromark-util-symbol/types, micromark-util-symbol/values.

Each module exports an identifier with the same name (for example, micromark-util-symbol/codes has codes), which is an object mapping strings to other values.

Take a peek at the code to learn more!

Security

See security.md in micromark/.github for how to submit a security report.

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, organisation, or community you agree to abide by its terms.

License

MIT © Titus Wormer