Skip to content

Commit

Permalink
Update dev-dependencies
Browse files Browse the repository at this point in the history
wooorm committed Jul 5, 2024

Verified

This commit was signed with the committer’s verified signature.
wooorm Titus
1 parent 6fd7df3 commit 7698074
Showing 3 changed files with 40 additions and 39 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -7,13 +7,13 @@ jobs:
name: ${{matrix.node}}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{matrix.node}}
- run: npm install
- run: npm test
- uses: codecov/codecov-action@v3
- uses: codecov/codecov-action@v4
strategy:
matrix:
node:
9 changes: 5 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -46,15 +46,15 @@
},
"devDependencies": {
"@types/node": "^20.0.0",
"c8": "^8.0.0",
"c8": "^10.0.0",
"micromark": "^4.0.0",
"micromark-build": "^2.0.0",
"prettier": "^3.0.0",
"remark-cli": "^11.0.0",
"remark-preset-wooorm": "^9.0.0",
"remark-cli": "^12.0.0",
"remark-preset-wooorm": "^10.0.0",
"type-coverage": "^2.0.0",
"typescript": "^5.0.0",
"xo": "^0.56.0"
"xo": "^0.58.0"
},
"scripts": {
"prepack": "npm run build && npm run format",
@@ -98,6 +98,7 @@
],
"prettier": true,
"rules": {
"logical-assignment-operators": "off",
"unicorn/no-this-assignment": "off",
"unicorn/prefer-at": "off"
}
64 changes: 32 additions & 32 deletions readme.md
Original file line number Diff line number Diff line change
@@ -12,25 +12,25 @@

## Contents

* [What is this?](#what-is-this)
* [When to use this](#when-to-use-this)
* [Install](#install)
* [Use](#use)
* [API](#api)
* [`math(options?)`](#mathoptions)
* [`mathHtml(options?)`](#mathhtmloptions)
* [`HtmlOptions`](#htmloptions)
* [`Options`](#options)
* [Authoring](#authoring)
* [HTML](#html)
* [CSS](#css)
* [Syntax](#syntax)
* [Types](#types)
* [Compatibility](#compatibility)
* [Security](#security)
* [Related](#related)
* [Contribute](#contribute)
* [License](#license)
* [What is this?](#what-is-this)
* [When to use this](#when-to-use-this)
* [Install](#install)
* [Use](#use)
* [API](#api)
* [`math(options?)`](#mathoptions)
* [`mathHtml(options?)`](#mathhtmloptions)
* [`HtmlOptions`](#htmloptions)
* [`Options`](#options)
* [Authoring](#authoring)
* [HTML](#html)
* [CSS](#css)
* [Syntax](#syntax)
* [Types](#types)
* [Compatibility](#compatibility)
* [Security](#security)
* [Related](#related)
* [Contribute](#contribute)
* [License](#license)

## What is this?

@@ -132,8 +132,8 @@ Create an extension for `micromark` to enable math syntax.

###### Parameters

* `options` ([`Options`][api-options], default: `{}`)
— configuration
* `options` ([`Options`][api-options], default: `{}`)
— configuration

###### Returns

@@ -148,8 +148,8 @@ Create an extension for `micromark` to support math when serializing to HTML.
###### Parameters

* `options` ([`HtmlOptions`][api-html-options], default: `{}`)
— configuration
* `options` ([`HtmlOptions`][api-html-options], default: `{}`)
— configuration

###### Returns

@@ -176,11 +176,11 @@ Configuration (TypeScript type).
###### Fields
* `singleDollarTextMath` (`boolean`, default: `true`)
— whether to support math (text, inline) with a single dollar.
Single dollars work in Pandoc and many other places, but often interfere
with “normal” dollars in text.
If you turn this off, you use two or more dollars for text math.
* `singleDollarTextMath` (`boolean`, default: `true`)
— whether to support math (text, inline) with a single dollar.
Single dollars work in Pandoc and many other places, but often interfere
with “normal” dollars in text.
If you turn this off, you use two or more dollars for text math.
## Authoring
@@ -333,10 +333,10 @@ attack.

## Related

* [`remark-math`][remark-math]
— remark (and rehype) plugins to support math
* [`mdast-util-math`][mdast-util-math]
— mdast utility to support math
* [`remark-math`][remark-math]
— remark (and rehype) plugins to support math
* [`mdast-util-math`][mdast-util-math]
— mdast utility to support math

## Contribute

0 comments on commit 7698074

Please sign in to comment.